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