-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
37 lines (36 loc) · 1.76 KB
/
index.ts
File metadata and controls
37 lines (36 loc) · 1.76 KB
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
import { ArrayBuffer as cryptlyArrayBuffer } from "./ArrayBuffer"
import { Base16 as cryptlyBase16 } from "./Base16"
import { Base32 as cryptlyBase32 } from "./Base32"
import { Base64 as cryptlyBase64 } from "./Base64"
import { Digester as cryptlyDigester } from "./Digester"
import { Encrypter as cryptlyEncrypter } from "./Encrypter"
import { Encrypters as cryptlyEncrypters } from "./Encrypters"
import { Identifier as cryptlyIdentifier } from "./Identifier"
import { Identifier4 as cryptlyIdentifier4 } from "./Identifier4"
import { Identifier8 as cryptlyIdentifier8 } from "./Identifier8"
import { Identifier12 as cryptlyIdentifier12 } from "./Identifier12"
import { Identifier16 as cryptlyIdentifier16 } from "./Identifier16"
import { Identifier20 as cryptlyIdentifier20 } from "./Identifier20"
import { Identifier64 as cryptlyIdentifier64 } from "./Identifier64"
import { Otp as cryptlyOtp } from "./Otp"
import { Password as cryptlyPassword } from "./Password"
import { Signer as cryptlySigner } from "./Signer"
export namespace cryptly {
export import ArrayBuffer = cryptlyArrayBuffer
export import Base16 = cryptlyBase16
export import Base32 = cryptlyBase32
export import Base64 = cryptlyBase64
export import Digester = cryptlyDigester
export import Encrypter = cryptlyEncrypter
export import Encrypters = cryptlyEncrypters
export import Identifier = cryptlyIdentifier
export import Identifier4 = cryptlyIdentifier4
export import Identifier8 = cryptlyIdentifier8
export import Identifier12 = cryptlyIdentifier12
export import Identifier16 = cryptlyIdentifier16
export import Identifier20 = cryptlyIdentifier20
export import Identifier64 = cryptlyIdentifier64
export import Otp = cryptlyOtp
export import Password = cryptlyPassword
export import Signer = cryptlySigner
}