Local Storage encryption

Is there any way to use cryptography for local storage included in Web Core? I need to encrypt contents that I store locally if they persist over the session lifetime. It would be great if a subset of the cryptography pack or something compatibe would be available.


Thanks
Michael

At this moment, the TMS Cryptography Pack cannot be used from a TMS WEB Core client application.

At this moment there is no cryptography included in the TMS WEB Core directly.
The most reliable way in our opinion would be to interface to the Web Cryptography API from TMS WEB Core:
https://www.w3.org/TR/WebCryptoAPI/ 
You'd need to create Pascal wrapper functions around the API calls that are of most interest to you or call the JavaScript directly from an ASM block in your code.

Thanks, lat looks absolutely promising! Thanks!