secp256k1KeyIdentityFromPem function
Implementation
Future<Secp256k1KeyIdentity> secp256k1KeyIdentityFromPem(String pem) async {
final pem2 = _beginECPrivateKey + pem;
final key = _ecPrivateKeyFromPem(pem2).d;
final prvU8a = key!.toU8a();
return Secp256k1KeyIdentity.fromSecretKey(prvU8a);
}