fix endianness

This commit is contained in:
Christien Rioux 2023-08-05 13:50:16 -04:00
parent 8e1ed1e3f1
commit 684f93e6a0

View File

@ -13,9 +13,9 @@ import 'veilid.dart';
typedef CryptoKind = int; typedef CryptoKind = int;
const CryptoKind cryptoKindVLD0 = const CryptoKind cryptoKindVLD0 =
$V << 0 | $L << 8 | $D << 16 | $0 << 24; // "VLD0" $V << 24 | $L << 16 | $D << 8 | $0 << 0; // "VLD0"
const CryptoKind cryptoKindNONE = const CryptoKind cryptoKindNONE =
$N << 0 | $O << 8 | $N << 16 | $E << 24; // "NONE" $N << 24 | $O << 16 | $N << 8 | $E << 0; // "NONE"
String cryptoKindToString(CryptoKind kind) => String cryptoKindToString(CryptoKind kind) =>
cryptoKindToBytes(kind).map(String.fromCharCode).join(); cryptoKindToBytes(kind).map(String.fromCharCode).join();