Crypto class

Constructors

Crypto()

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

deriveKey(String path, String seed) List<int>
digest(List<int> data, [int digestSize = 32]) List<int>
getPublicKey(dynamic privateKey) Future<List<int>>
sign(List<int> message, List<int>? privateKey, List<int> publicKey) Future<List<int>>
verify(List<int> signature, List<int> message, List<int> publicKey) Future<bool>