remove node_modules and .gitignore them
This commit is contained in:
-31
@@ -1,31 +0,0 @@
|
||||
export declare const aes_128_ctr: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
export declare const aes_256_ctr: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
export declare const aes_128_cbc: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
export declare const aes_256_cbc: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
export declare const aes_128_gcm: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
export declare const aes_256_gcm: (key: Uint8Array, nonce: Uint8Array) => {
|
||||
keyLength: number;
|
||||
encrypt(plaintext: Uint8Array): Promise<Uint8Array>;
|
||||
decrypt(ciphertext: Uint8Array): Promise<Uint8Array>;
|
||||
};
|
||||
//# sourceMappingURL=aes.d.ts.map
|
||||
Reference in New Issue
Block a user