crypto library

Functions

decrypt(B64 key, String box) Future<List<int>>
deriveKey(B64 mySK, B64 otherSidePK) Future<B64>
derivePK(B64 secretKey) B64
digest(List<int> blob) B64
encrypt(B64 key, List<int> blob) Future<String>
genSK() B64
randKey() B64
sign(B64 sk, Uint8List data) B64
verify(Uint8List data, B64 signature, B64 pk) → void