serializePrivateKey function
Serializes the private key to JSON format
Implementation
String serializePrivateKey(ASEPrivateKey sk) => jsonEncode({
's': sk.s.vec.map((p) => p.coeffs).toList(),
});
Serializes the private key to JSON format
String serializePrivateKey(ASEPrivateKey sk) => jsonEncode({
's': sk.s.vec.map((p) => p.coeffs).toList(),
});