forked from aws/aws-encryption-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
82 lines (75 loc) · 1.96 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
export {
AlgorithmSuiteIdentifier,
AlgorithmSuiteName,
AlgorithmSuite,
AlgorithmSuiteTypeNode,
AlgorithmSuiteTypeWebCrypto,
NodeEncryption,
WebCryptoEncryption,
NodeHash,
WebCryptoHash,
NodeECDHCurve,
WebCryptoECDHCurve,
KDF,
KeyLength,
IvLength,
TagLength,
CommitmentPolicy,
CommitmentPolicySuites,
SignaturePolicy,
SignaturePolicySuites,
MessageFormat,
NonCommittingAlgorithmSuiteIdentifier,
CommittingAlgorithmSuiteIdentifier,
} from './algorithm_suites'
export { WebCryptoAlgorithmSuite } from './web_crypto_algorithms'
export { NodeAlgorithmSuite } from './node_algorithms'
export * from './keyring'
export { KeyringTrace, KeyringTraceFlag } from './keyring_trace'
export {
MultiKeyringNode,
MultiKeyringWebCrypto,
MultiKeyring,
} from './multi_keyring'
export * from './materials_manager'
export {
NodeEncryptionMaterial,
NodeDecryptionMaterial,
} from './cryptographic_material'
export {
isValidCryptoKey,
isCryptoKey,
keyUsageForMaterial,
subtleFunctionForMaterial,
} from './cryptographic_material'
export {
WebCryptoEncryptionMaterial,
WebCryptoDecryptionMaterial,
} from './cryptographic_material'
export {
isEncryptionMaterial,
isDecryptionMaterial,
} from './cryptographic_material'
export {
unwrapDataKey,
wrapWithKeyObjectIfSupported,
} from './cryptographic_material'
export {
CryptographicMaterial,
decorateCryptographicMaterial,
decorateWebCryptoMaterial,
WebCryptoMaterial,
} from './cryptographic_material'
export { SignatureKey, VerificationKey } from './signature_key'
export { EncryptedDataKey, IEncryptedDataKey } from './encrypted_data_key'
export {
immutableBaseClass,
immutableClass,
frozenClass,
readOnlyProperty,
} from './immutable_class'
export { needs, NotSupported } from './needs'
export { cloneMaterial } from './clone_cryptographic_material'
export * from './types'