UNPKG

@noble/curves

Version:

Audited & minimal JS implementation of elliptic curve cryptography

13 lines 553 B
/** * NIST secp384r1 aka p384. * @module */ /*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */ import {} from "./abstract/hash-to-curve.js"; import { p384_hasher, p384 as p384n } from "./nist.js"; export const p384 = p384n; export const secp384r1 = p384n; export const hashToCurve = /* @__PURE__ */ (() => p384_hasher.hashToCurve)(); export const encodeToCurve = /* @__PURE__ */ (() => p384_hasher.encodeToCurve)(); /** @deprecated Use `import { p384_hasher } from "@noble/curves/nist"` module. */ //# sourceMappingURL=p384.js.map