Cleanups and licensing fix

This commit is contained in:
Christien Rioux 2025-09-03 10:27:23 -04:00
parent 6a79e13024
commit 34c82ec128
41 changed files with 14725 additions and 12558 deletions

View file

@ -25,7 +25,7 @@ Future<void> testHashAndVerifyPassword() async {
for (final kind in Veilid.instance.validCryptoKinds()) {
final cs = await Veilid.instance.getCryptoSystem(kind);
final nonce = await cs.randomNonce();
final salt = nonce.decode();
final salt = nonce.toBytes();
// Password match
final phash = await cs.hashPassword(utf8.encode('abc123'), salt);