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.
11 lines (10 loc) • 448 B
TypeScript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { AesGcmKeyTemplates } from './aes_gcm_key_templates';
export declare function register(): void;
export declare const aes128GcmKeyTemplate: typeof AesGcmKeyTemplates.aes128Gcm;
export declare const aes256GcmKeyTemplate: typeof AesGcmKeyTemplates.aes256Gcm;
export declare const aes256GcmNoPrefixKeyTemplate: typeof AesGcmKeyTemplates.aes256GcmNoPrefix;