blob: a79535fbc9113c038fa017109dedb56203bdb28d [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
goog.module('tink.aead.AeadConfig');
const AeadWrapper = goog.require('tink.aead.AeadWrapper');
const AesCtrHmacAeadKeyManager = goog.require('tink.aead.AesCtrHmacAeadKeyManager');
const AesGcmKeyManager = goog.require('tink.aead.AesGcmKeyManager');
/**
* Static methods and constants for registering with the Registry all instances
* of Aead key types supported in a particular release of Tink.
*
* To register all Aead key types from the current Tink release one can do:
*
* AeadConfig.register();
*
* For more information on creation and usage of Aead instances see AeadFactory.
*
* @final
*/
class AeadConfig {
/**
* Registers key managers for all Aead key types from the current Tink
* release.
*/
static register() {
// TODO MacConfig.register() should be here.
AesGcmKeyManager.register();
AesCtrHmacAeadKeyManager.register();
AeadWrapper.register();
}
}
/** @const @private {string} */
AeadConfig.CONFIG_NAME_ = 'TINK_AEAD';
/** @const {string} */
AeadConfig.PRIMITIVE_NAME = 'Aead';
/** @const {string} */
AeadConfig.AES_CTR_HMAC_AEAD_TYPE_URL = AesCtrHmacAeadKeyManager.KEY_TYPE;
/** @const {string} */
AeadConfig.AES_GCM_TYPE_URL = AesGcmKeyManager.KEY_TYPE;
goog.exportSymbol('tink.aead.AeadConfig', AeadConfig);
exports = AeadConfig;