decryptWithKey abstract method

  1. @Deprecated('use decryptSerializedStringWithKey() instead')
Future<Uint8List> decryptWithKey(
  1. String serialized,
  2. EncryptionKey key
)

Pass a string in Cryppo serialized encrypted format and a EncryptionKey (key type dependant on the scheme being used) to return binary decrypted data.

Implementation

@Deprecated('use decryptSerializedStringWithKey() instead')
Future<Uint8List> decryptWithKey(String serialized, EncryptionKey key);