UNPKG

harperdb

Version:

HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.

15 lines (14 loc) 608 B
/** * PKI.js Ed25519/Ed448 Support Patch * * This module patches PKI.js to add complete Ed25519/Ed448 support for certificate * and OCSP response verification. While PKI.js has some Ed25519/Ed448 support, * it currently lacks: * - getHashAlgorithm() support for Ed25519/Ed448 OIDs * - getAlgorithmByOID() recognition of Ed25519/Ed448 * - Certificate verification using Ed25519/Ed448 signatures * - OCSP response signature verification with Ed25519/Ed448 * * This patch must be loaded before any module that uses PKI.js (including easy-ocsp). */ export declare function applyEd25519Patch(): void;