UNPKG

crypto-signer

Version:

crypto-signer is a utility library used to sign transactions in MediSOT v2

8 lines (7 loc) 289 B
/** * cleanUpPEM removes unwanted characters from PEM encoded msgs. * For example, '\r' is commonly found in text version of PEM encoded keys. */ declare function cleanUpPEM(pemMsg: string): string; declare function getHexKey(pemKey: string): string; export { cleanUpPEM, getHexKey, };