You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SecureContext can be serialized/deserialized for future use. For example, a user might want to do a backup of SecureContext in case of application crash or user wants to restore SecureContext on another device.
SecureContext must be serialized with symmetric encryption (AES-GCM). Encryption key is optional and may be provided to the serialization function or if not passed then the function will generate one and return it with encrypted data.
Encrypted data will be deserialized by using provided encryption key and restore the SecureContext in-memory.
The text was updated successfully, but these errors were encountered:
SecureContext
can be serialized/deserialized for future use. For example, a user might want to do a backup ofSecureContext
in case of application crash or user wants to restoreSecureContext
on another device.SecureContext
must be serialized with symmetric encryption (AES-GCM). Encryption key is optional and may be provided to the serialization function or if not passed then the function will generate one and return it with encrypted data.SecureContext
in-memory.The text was updated successfully, but these errors were encountered: