blob: f6050add0ab18ad8d498fd0da728e1627d1011bd [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.signature;
import com.google.crypto.tink.KeyManagerBase;
import com.google.crypto.tink.PublicKeyVerify;
import com.google.crypto.tink.proto.Ed25519PublicKey;
import com.google.crypto.tink.proto.Empty;
import com.google.crypto.tink.proto.KeyData.KeyMaterialType;
import com.google.crypto.tink.subtle.Ed25519Verify;
import com.google.crypto.tink.subtle.Validators;
import com.google.protobuf.ByteString;
import com.google.protobuf.InvalidProtocolBufferException;
import java.security.GeneralSecurityException;
/**
* This key manager produces new instances of {@code Ed25519Verify}. It doesn't support key
* generation.
*/
class Ed25519PublicKeyManager extends KeyManagerBase<PublicKeyVerify, Ed25519PublicKey, Empty> {
public Ed25519PublicKeyManager() {
super(PublicKeyVerify.class, Ed25519PublicKey.class, Empty.class, TYPE_URL);
}
public static final String TYPE_URL = "type.googleapis.com/google.crypto.tink.Ed25519PublicKey";
private static final int VERSION = 0;
@Override
public PublicKeyVerify getPrimitiveFromKey(Ed25519PublicKey keyProto)
throws GeneralSecurityException {
return new Ed25519Verify(keyProto.getKeyValue().toByteArray());
}
@Override
protected Ed25519PublicKey newKeyFromFormat(Empty unused) throws GeneralSecurityException {
throw new GeneralSecurityException("Not implemented");
}
@Override
public int getVersion() {
return VERSION;
}
@Override
protected KeyMaterialType keyMaterialType() {
return KeyMaterialType.ASYMMETRIC_PUBLIC;
}
@Override
protected Ed25519PublicKey parseKeyProto(ByteString byteString)
throws InvalidProtocolBufferException {
return Ed25519PublicKey.parseFrom(byteString);
}
@Override
protected Empty parseKeyFormatProto(ByteString byteString)
throws InvalidProtocolBufferException {
return Empty.parseFrom(byteString);
}
@Override
protected void validateKey(Ed25519PublicKey keyProto) throws GeneralSecurityException {
Validators.validateVersion(keyProto.getVersion(), VERSION);
if (keyProto.getKeyValue().size() != Ed25519Verify.PUBLIC_KEY_LEN) {
throw new GeneralSecurityException("invalid Ed25519 public key: incorrect key length");
}
}
@Override
protected void validateKeyFormat(Empty unused) throws GeneralSecurityException {}
}