Remove @private JSDoc directives interfering with TS

This commit is contained in:
larabr 2023-05-17 13:42:25 +02:00
parent ae4ed1fbf3
commit b094274d98
34 changed files with 0 additions and 34 deletions

View File

@ -19,7 +19,6 @@
* @fileoverview Implementation of RFC 3394 AES Key Wrap & Key Unwrap funcions
* @see module:crypto/public_key/elliptic/ecdh
* @module crypto/aes_kw
* @private
*/
import * as cipher from './cipher';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview Symmetric cryptography functions
* @module crypto/cipher
* @private
*/
import aes from './aes';

View File

@ -21,7 +21,6 @@
* @fileoverview Provides functions for asymmetric encryption and decryption as
* well as key generation and parameter handling for all public-key cryptosystems.
* @module crypto/crypto
* @private
*/
import publicKey from './public_key';

View File

@ -3,7 +3,6 @@
* @see {@link https://github.com/asmcrypto/asmcrypto.js|asmCrypto}
* @see {@link https://github.com/indutny/hash.js|hash.js}
* @module crypto/hash
* @private
*/
import { Sha1 } from '@openpgp/asmcrypto.js/dist_es8/hash/sha1/sha1';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview This module implements HKDF using either the WebCrypto API or Node.js' crypto API.
* @module crypto/hkdf
* @private
*/
import enums from '../enums';

View File

@ -7,7 +7,6 @@
* @see module:crypto/random
* @see module:crypto/hash
* @module crypto
* @private
*/
import * as cipher from './cipher';

View File

@ -19,7 +19,6 @@
/**
* @module crypto/mode/cfb
* @private
*/
import { AES_CFB } from '@openpgp/asmcrypto.js/dist_es8/aes/cfb';

View File

@ -19,7 +19,6 @@
* @fileoverview This module wraps native AES-GCM en/decryption for both
* the WebCrypto api as well as node.js' crypto api.
* @module crypto/mode/gcm
* @private
*/
import { AES_GCM } from '@openpgp/asmcrypto.js/dist_es8/aes/gcm';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview This module implements AES-OCB en/decryption.
* @module crypto/mode/ocb
* @private
*/
import * as ciphers from '../cipher';

View File

@ -21,7 +21,6 @@
* @see module:crypto/public_key/elliptic/ecdh
* @see PublicKeyEncryptedSessionKeyPacket
* @module crypto/pkcs1
* @private
*/
import { getRandomBytes } from './random';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview A Digital signature algorithm implementation
* @module crypto/public_key/dsa
* @private
*/
import { getRandomBigInteger } from '../random';
import util from '../../util';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview ElGamal implementation
* @module crypto/public_key/elgamal
* @private
*/
import util from '../../util';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Key encryption and decryption for RFC 6637 ECDH
* @module crypto/public_key/elliptic/ecdh
* @private
*/
import nacl from '@openpgp/tweetnacl/nacl-fast-light';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview Key encryption and decryption for RFC 6637 ECDH
* @module crypto/public_key/elliptic/ecdh
* @private
*/
import nacl from '@openpgp/tweetnacl/nacl-fast-light';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Implementation of ECDSA following RFC6637 for Openpgpjs
* @module crypto/public_key/elliptic/ecdsa
* @private
*/
import enums from '../../../enums';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Implementation of EdDSA following RFC4880bis-03 for OpenPGP
* @module crypto/public_key/elliptic/eddsa
* @private
*/
import sha512 from 'hash.js/lib/hash/sha/512';

View File

@ -19,7 +19,6 @@
* @fileoverview Implementation of legacy EdDSA following RFC4880bis-03 for OpenPGP.
* This key type has been deprecated by the crypto-refresh RFC.
* @module crypto/public_key/elliptic/eddsa_legacy
* @private
*/
import sha512 from 'hash.js/lib/hash/sha/512';

View File

@ -22,7 +22,6 @@
* @see module:crypto/public_key/elliptic/ecdsa
* @see module:crypto/public_key/elliptic/eddsa
* @module crypto/public_key/elliptic
* @private
*/
import { CurveWithOID, generate, getPreferredHashAlgo } from './oid_curves';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Wrapper for a KeyPair of an curve from indutny/elliptic library
* @module crypto/public_key/elliptic/indutnyKey
* @private
*/
import config from '../../../config';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Wrapper of an instance of an Elliptic Curve
* @module crypto/public_key/elliptic/curve
* @private
*/
import nacl from '@openpgp/tweetnacl/nacl-fast-light';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview Asymmetric cryptography functions
* @module crypto/public_key
* @private
*/
import nacl from '@openpgp/tweetnacl/nacl-fast-light';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Algorithms for probabilistic random prime generation
* @module crypto/public_key/prime
* @private
*/
import util from '../../util';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview RSA implementation
* @module crypto/public_key/rsa
* @private
*/
import { randomProbablePrime } from './prime';

View File

@ -20,7 +20,6 @@
/**
* @fileoverview Provides tools for retrieving secure randomness from browsers or Node.js
* @module crypto/random
* @private
*/
import util from '../util';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview Provides functions for asymmetric signing and signature verification
* @module crypto/signature
* @private
*/
import publicKey from './public_key';

View File

@ -13,7 +13,6 @@
/**
* @module encoding/base64
* @private
*/
import * as stream from '@openpgp/web-stream-tools';

View File

@ -1,7 +1,6 @@
/**
* @fileoverview Provides helpers methods for key module
* @module key/helper
* @private
*/
import {

View File

@ -1,6 +1,5 @@
/**
* @module key/User
* @private
*/
import enums from '../enums';

View File

@ -18,7 +18,6 @@
/**
* @fileoverview Functions for reading and writing packets
* @module packet/packet
* @private
*/
import * as stream from '@openpgp/web-stream-tools';

View File

@ -19,7 +19,6 @@
* Encoded symmetric key for ECDH (incl. legacy x25519)
*
* @module type/ecdh_symkey
* @private
*/
import util from '../util';

View File

@ -17,7 +17,6 @@
/**
* @module type/keyid
* @private
*/
import util from '../util';

View File

@ -30,7 +30,6 @@
* is constructed by omitting the first two octets. Only the truncated
* sequence of octets is the valid representation of a curve OID.
* @module type/oid
* @private
*/
import util from '../util';

View File

@ -25,7 +25,6 @@
* private keyring, and to convert passphrases to encryption keys for
* symmetrically encrypted messages.
* @module type/s2k
* @private
*/
import defaultConfig from '../../config';

View File

@ -20,7 +20,6 @@
/**
* This object contains utility functions
* @module util
* @private
*/
import * as stream from '@openpgp/web-stream-tools';