UNPKG

@yoursunny/webcrypto-ed25519

Version:

Ed25519 Ponyfill & Polyfill for WebCrypto

12 lines 287 B
export const Ed25519Algorithm = { name: "Ed25519", }; export const C = { kty: "OKP", crv: "Ed25519", oid: "2b6570", }; export function isEd25519Algorithm(a) { return a === Ed25519Algorithm.name || a.name === Ed25519Algorithm.name; } //# sourceMappingURL=common.js.map