secp256k1KeyIdentityFromPem function

Future<Secp256k1KeyIdentity> secp256k1KeyIdentityFromPem(
  1. String pem
)

Implementation

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