node-opcua/node-opcua-crypto

View on GitHub
packages/node-opcua-crypto/source/make_private_key_from_pem.ts

Summary

Maintainability
A
0 mins
Test Coverage


import { PrivateKey } from "./common.js";
export function makePrivateKeyFromPem(privateKeyInPem: string): PrivateKey {
    return { hidden: privateKeyInPem };
}