blob: a4aa6072d9531d23af609239adda261f76d14035 [file] [log] [blame]
// Copyright 2017 Google Inc.
//
// 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.
//
////////////////////////////////////////////////////////////////////////////////
package com.google.crypto.tink.aead;
import com.google.crypto.tink.Aead;
import com.google.crypto.tink.Catalogue;
import com.google.crypto.tink.KeyManager;
import com.google.crypto.tink.PrimitiveWrapper;
import java.security.GeneralSecurityException;
/** A catalogue of {@link Aead} key managers. */
class AeadCatalogue implements Catalogue<Aead> {
public AeadCatalogue() {}
/**
* @return a KeyManager for the given {@code typeUrl}, {@code primitiveName} and version at least
* {@code minVersion} (if it exists in the catalogue).
*/
@Override
public KeyManager<Aead> getKeyManager(String typeUrl, String primitiveName, int minVersion)
throws GeneralSecurityException {
KeyManager<Aead> keyManager;
switch (primitiveName.toLowerCase()) {
case "aead":
keyManager = aeadKeyManager(typeUrl);
break;
default:
throw new GeneralSecurityException(
String.format("No support for primitive '%s'.", primitiveName));
}
if (keyManager.getVersion() < minVersion) {
throw new GeneralSecurityException(
String.format(
"No key manager for key type '%s' with version at least %d.", typeUrl, minVersion));
}
return keyManager;
}
private KeyManager<Aead> aeadKeyManager(String typeUrl) throws GeneralSecurityException {
switch (typeUrl) {
case AesCtrHmacAeadKeyManager.TYPE_URL:
return new AesCtrHmacAeadKeyManager();
case AesEaxKeyManager.TYPE_URL:
return new AesEaxKeyManager();
case AesGcmKeyManager.TYPE_URL:
return new AesGcmKeyManager();
case ChaCha20Poly1305KeyManager.TYPE_URL:
return new ChaCha20Poly1305KeyManager();
case KmsAeadKeyManager.TYPE_URL:
return new KmsAeadKeyManager();
case KmsEnvelopeAeadKeyManager.TYPE_URL:
return new KmsEnvelopeAeadKeyManager();
case XChaCha20Poly1305KeyManager.TYPE_URL:
return new XChaCha20Poly1305KeyManager();
default:
throw new GeneralSecurityException(
String.format("No support for primitive 'Aead' with key type '%s'.", typeUrl));
}
}
@Override
public PrimitiveWrapper<Aead> getPrimitiveWrapper() {
return new AeadWrapper();
}
}