feToBytes static method
convert field to 32 bytes.
Implementation
static List<int> feToBytes(Secp256k1Fe f) {
final List<int> bytes = List<int>.filled(32, 0);
Secp256k1.secp256k1FeGetB32(bytes, f);
return bytes;
}
convert field to 32 bytes.
static List<int> feToBytes(Secp256k1Fe f) {
final List<int> bytes = List<int>.filled(32, 0);
Secp256k1.secp256k1FeGetB32(bytes, f);
return bytes;
}