UNPKG

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.

20 lines (16 loc) 486 B
/** * @license * Copyright 2020 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import * as aesCtrHmac from './aes_ctr_hmac'; import * as aesGcm from './aes_gcm'; import * as wrapper from './wrapper'; export * from './aead'; export * from './aes_ctr_hmac'; export {aes128GcmKeyTemplate, aes256GcmKeyTemplate, aes256GcmNoPrefixKeyTemplate} from './aes_gcm'; export function register() { aesCtrHmac.register(); aesGcm.register(); wrapper.register(); }