blob: 1f02e2e9e6353ea0e96190c78b2f9a94e8adf09e [file] [log] [blame]
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as Registry from '../internal/registry';
import {AesGcmKeyManager} from './aes_gcm_key_manager';
import {AesGcmKeyTemplates} from './aes_gcm_key_templates';
export function register() {
Registry.registerKeyManager(new AesGcmKeyManager());
}
export const aes128GcmKeyTemplate = AesGcmKeyTemplates.aes128Gcm;
export const aes256GcmKeyTemplate = AesGcmKeyTemplates.aes256Gcm;
export const aes256GcmNoPrefixKeyTemplate =
AesGcmKeyTemplates.aes256GcmNoPrefix;