Files
Signal-Desktop/ts/types/Crypto.ts
Jamie Kyle 502ea174ab Upgrade Storybook
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2023-10-11 12:06:43 -07:00

16 lines
302 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export enum HashType {
size256 = 'sha256',
size512 = 'sha512',
}
export enum CipherType {
AES256CBC = 'aes-256-cbc',
AES256CTR = 'aes-256-ctr',
AES256GCM = 'aes-256-gcm',
}
export const UUID_BYTE_SIZE = 16;