pooja-docucomb-tink-crypto
Version:
A multi-language, cross-platform library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.
19 lines (15 loc) • 601 B
text/typescript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as Registry from '../internal/registry';
import {AesCtrHmacAeadKeyManager} from './aes_ctr_hmac_aead_key_manager';
import {AesCtrHmacAeadKeyTemplates} from './aes_ctr_hmac_aead_key_templates';
export function register() {
Registry.registerKeyManager(new AesCtrHmacAeadKeyManager());
}
export const aes128CtrHmacSha256KeyTemplate =
AesCtrHmacAeadKeyTemplates.aes128CtrHmacSha256;
export const aes256CtrHmacSha256KeyTemplate =
AesCtrHmacAeadKeyTemplates.aes256CtrHmacSha256;