UNPKG

@noble/curves

Version:

Audited & minimal JS implementation of elliptic curve cryptography

12 lines 452 B
/** * NIST secp256r1 aka p256. * @module */ /*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */ import { type H2CMethod } from './abstract/hash-to-curve.ts'; import { p256 as p256n } from './nist.ts'; export declare const p256: typeof p256n; export declare const secp256r1: typeof p256n; export declare const hashToCurve: H2CMethod<bigint>; export declare const encodeToCurve: H2CMethod<bigint>; //# sourceMappingURL=p256.d.ts.map