SecureEnclaveBase class abstract

Implementers

Constructors

SecureEnclaveBase()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

decrypt({required Uint8List message, required String tag, String? password}) Future<ResultModel<String?>>
encrypt({required String message, required String tag, String? password}) Future<ResultModel<Uint8List?>>
encryptWithPublicKey({required String message, required String publicKey}) Future<ResultModel<Uint8List?>>
generateKeyPair({required AccessControlModel accessControl}) Future<ResultModel<bool>>
getPublicKey({required String tag, String? password}) Future<ResultModel<String?>>
isKeyCreated({required String tag, String? password}) Future<ResultModel<bool?>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeKey(String tag) Future<ResultModel<bool>>
sign({required Uint8List message, required String tag, String? password}) Future<ResultModel<String?>>
toString() String
A string representation of this object.
inherited
verify({required String plainText, required String signature, required String tag, String? password}) Future<ResultModel<bool?>>

Operators

operator ==(Object other) bool
The equality operator.
inherited