diff --git a/veilid-flutter/lib/veilid_crypto.dart b/veilid-flutter/lib/veilid_crypto.dart index a1417cf3..6edb6358 100644 --- a/veilid-flutter/lib/veilid_crypto.dart +++ b/veilid-flutter/lib/veilid_crypto.dart @@ -23,7 +23,6 @@ String cryptoKindToString(CryptoKind kind) => const CryptoKind bestCryptoKind = cryptoKindVLD0; Uint8List cryptoKindToBytes(CryptoKind kind) { - assert(kind == cryptoKindVLD0, 'xxx'); final b = Uint8List(4); ByteData.sublistView(b).setUint32(0, kind); return b; @@ -35,7 +34,6 @@ CryptoKind cryptoKindFromString(String s) { } final kind = ByteData.sublistView(Uint8List.fromList(s.codeUnits)).getUint32(0); - assert(kind == cryptoKindVLD0, 'xxx'); return kind; }