hsynchronous
Version:
Hybrid synchronous encryption protocol using NIST approved post-quantum algorithms.
14 lines (11 loc) • 614 B
TypeScript
import { kem, sign } from 'pqclean';
import { generateKeysFunc, exportKeysFunc, importKeysFunc, encryptFunc, decryptFunc } from './types.js';
declare const supportedKemAlgorithms: kem.Algorithm[];
declare const supportedSigAlgorithms: sign.Algorithm[];
declare const VERSION = "1.0.1";
declare const generateKeys: generateKeysFunc;
declare const exportKeys: exportKeysFunc;
declare const importKeys: importKeysFunc;
declare const encrypt: encryptFunc;
declare const decrypt: decryptFunc;
export { VERSION, decrypt, encrypt, exportKeys, generateKeys, importKeys, supportedKemAlgorithms, supportedSigAlgorithms };