PropsSubtleCrypto extension

on

Methods

decrypt(dynamic algorithm, CryptoKey key, dynamic data) Future
deriveBits(dynamic algorithm, CryptoKey baseKey, int length) Future<ByteBuffer>
deriveKey(dynamic algorithm, CryptoKey baseKey, dynamic derivedKeyType, bool extractable, Iterable<KeyUsage> keyUsages) Future
digest(dynamic algorithm, dynamic data) Future
encrypt(dynamic algorithm, CryptoKey key, dynamic data) Future
exportKey(KeyFormat format, CryptoKey key) Future
generateKey(dynamic algorithm, bool extractable, Iterable<KeyUsage> keyUsages) Future
importKey(KeyFormat format, dynamic keyData, dynamic algorithm, bool extractable, Iterable<KeyUsage> keyUsages) Future<CryptoKey>
sign(dynamic algorithm, CryptoKey key, dynamic data) Future
unwrapKey(KeyFormat format, dynamic wrappedKey, CryptoKey unwrappingKey, dynamic unwrapAlgorithm, dynamic unwrappedKeyAlgorithm, bool extractable, Iterable<KeyUsage> keyUsages) Future<CryptoKey>
verify(dynamic algorithm, CryptoKey key, dynamic signature, dynamic data) Future
wrapKey(KeyFormat format, CryptoKey key, CryptoKey wrappingKey, dynamic wrapAlgorithm) Future