diff --git a/veilid-flutter/lib/veilid_crypto.dart b/veilid-flutter/lib/veilid_crypto.dart index 21050517..6b258c11 100644 --- a/veilid-flutter/lib/veilid_crypto.dart +++ b/veilid-flutter/lib/veilid_crypto.dart @@ -199,7 +199,7 @@ abstract class VeilidCryptoSystem { Future decryptNoAuthWithNonce( Uint8List body, SharedSecret secret) async { - if (body.length <= Nonce.decodedLength()) { + if (body.length < Nonce.decodedLength()) { throw const FormatException('not enough data to decrypt'); } final nonce = @@ -220,7 +220,7 @@ abstract class VeilidCryptoSystem { Future decryptNoAuthWithPassword( Uint8List body, String password) async { - if (body.length <= Nonce.decodedLength()) { + if (body.length < Nonce.decodedLength()) { throw const FormatException('not enough data to decrypt'); } final ekbytes = Uint8List.fromList(utf8.encode(password));