@scintilla-network/signatures
Version:
Enhanced signature and key exchange functions for blockchain and crypto applications, including post-quantum algorithms
16 lines (14 loc) • 360 B
JavaScript
/**
* Enhanced signature and key exchange functions for blockchain use
* Organized into classic and post-quantum resistant categories
*/
import * as classic from './classic/index.js';
import * as pq from './pq/index.js';
import * as kex from './kex/index.js';
import * as utils from './utils/index.js';
export {
classic,
pq,
kex,
utils
};