mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2026-03-19 06:39:05 +00:00
To make sure only user-facing entities are included in the docs, since access is public by default. NB: the top-level access directive seems to work to hide index entrypoint files, but in other cases (e.g. s2k submodules), exported functions may need to manually be marked as private. Also, the 'initialCommentsOnly' rule sometimes reports false positives in case of multiple comment blocks separated by new lines. The solution is to remove the new lines.
20 lines
575 B
JavaScript
20 lines
575 B
JavaScript
/**
|
|
* @fileoverview Provides access to all cryptographic primitives used in OpenPGP.js
|
|
* @see module:crypto/crypto
|
|
* @see module:crypto/signature
|
|
* @see module:crypto/public_key
|
|
* @see module:crypto/cipher
|
|
* @see module:crypto/random
|
|
* @see module:crypto/hash
|
|
* @module crypto
|
|
* @access private
|
|
*/
|
|
|
|
export * from './crypto';
|
|
export { getCipherParams } from './cipher';
|
|
export * from './hash';
|
|
export * as cipherMode from './cipherMode';
|
|
export * as publicKey from './public_key';
|
|
export * as signature from './signature';
|
|
export { getRandomBytes } from './random';
|