blob: 5fc747cce2e8a3e49ccdbaa9950f78c96ffc5541 [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 static com.google.common.truth.Truth.assertThat;
import static com.google.crypto.tink.testing.KeyTypeManagerTestUtil.testKeyTemplateCompatible;
import static org.junit.Assert.assertThrows;
import com.google.crypto.tink.KeyTemplate;
import com.google.crypto.tink.KeyTypeManager;
import com.google.crypto.tink.PublicKeySign;
import com.google.crypto.tink.PublicKeyVerify;
import com.google.crypto.tink.proto.Ed25519KeyFormat;
import com.google.crypto.tink.proto.Ed25519PrivateKey;
import com.google.crypto.tink.proto.Ed25519PublicKey;
import com.google.crypto.tink.proto.KeyData.KeyMaterialType;
import com.google.crypto.tink.subtle.Ed25519Verify;
import com.google.crypto.tink.subtle.Random;
import com.google.crypto.tink.testing.TestUtil;
import com.google.protobuf.ByteString;
import com.google.protobuf.ExtensionRegistryLite;
import java.io.ByteArrayInputStream;
import java.security.GeneralSecurityException;
import java.util.Set;
import java.util.TreeSet;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Unit tests for Ed25519PrivateKeyManager. */
@RunWith(JUnit4.class)
public class Ed25519PrivateKeyManagerTest {
private final Ed25519PrivateKeyManager manager = new Ed25519PrivateKeyManager();
private final KeyTypeManager.KeyFactory<Ed25519KeyFormat, Ed25519PrivateKey> factory =
manager.keyFactory();
@Test
public void basics() throws Exception {
assertThat(manager.getKeyType())
.isEqualTo("type.googleapis.com/google.crypto.tink.Ed25519PrivateKey");
assertThat(manager.getVersion()).isEqualTo(0);
assertThat(manager.keyMaterialType()).isEqualTo(KeyMaterialType.ASYMMETRIC_PRIVATE);
}
@Test
public void validateKeyFormat_empty() throws Exception {
factory.validateKeyFormat(Ed25519KeyFormat.getDefaultInstance());
}
@Test
public void createKey_checkValues() throws Exception {
Ed25519PrivateKey privateKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
assertThat(privateKey.getVersion()).isEqualTo(0);
assertThat(privateKey.getPublicKey().getVersion()).isEqualTo(privateKey.getVersion());
assertThat(privateKey.getKeyValue()).hasSize(32);
assertThat(privateKey.getPublicKey().getKeyValue()).hasSize(32);
}
@Test
public void validateKey_empty_throws() throws Exception {
assertThrows(
GeneralSecurityException.class,
() -> manager.validateKey(Ed25519PrivateKey.getDefaultInstance()));
}
// Tests that generated keys are different.
@Test
public void createKey_differentValues() throws Exception {
Ed25519KeyFormat format = Ed25519KeyFormat.getDefaultInstance();
Set<String> keys = new TreeSet<>();
int numTests = 100;
for (int i = 0; i < numTests; i++) {
keys.add(TestUtil.hexEncode(factory.createKey(format).getKeyValue().toByteArray()));
}
assertThat(keys).hasSize(numTests);
}
@Test
public void createKeyThenValidate() throws Exception {
manager.validateKey(factory.createKey(Ed25519KeyFormat.getDefaultInstance()));
}
@Test
public void validateKey_wrongVersion() throws Exception {
Ed25519PrivateKey validKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
Ed25519PrivateKey invalidKey = Ed25519PrivateKey.newBuilder(validKey).setVersion(1).build();
assertThrows(GeneralSecurityException.class, () -> manager.validateKey(invalidKey));
}
@Test
public void validateKey_wrongLength64_throws() throws Exception {
Ed25519PrivateKey validKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
Ed25519PrivateKey invalidKey =
Ed25519PrivateKey.newBuilder(validKey)
.setKeyValue(ByteString.copyFrom(Random.randBytes(64)))
.build();
assertThrows(GeneralSecurityException.class, () -> manager.validateKey(invalidKey));
}
@Test
public void validateKey_wrongLengthPublicKey64_throws() throws Exception {
Ed25519PrivateKey validKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
Ed25519PrivateKey invalidKey =
Ed25519PrivateKey.newBuilder(validKey)
.setPublicKey(
Ed25519PublicKey.newBuilder(validKey.getPublicKey())
.setKeyValue(ByteString.copyFrom(Random.randBytes(64))))
.build();
assertThrows(GeneralSecurityException.class, () -> manager.validateKey(invalidKey));
}
/** Tests that a public key is extracted properly from a private key. */
@Test
public void getPublicKey_checkValues() throws Exception {
Ed25519PrivateKey privateKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
Ed25519PublicKey publicKey = manager.getPublicKey(privateKey);
assertThat(publicKey).isEqualTo(privateKey.getPublicKey());
}
@Test
public void createPrimitive() throws Exception {
Ed25519PrivateKey privateKey = factory.createKey(Ed25519KeyFormat.getDefaultInstance());
PublicKeySign signer = manager.getPrimitive(privateKey, PublicKeySign.class);
PublicKeyVerify verifier =
new Ed25519Verify(privateKey.getPublicKey().getKeyValue().toByteArray());
byte[] message = Random.randBytes(135);
verifier.verify(signer.sign(message), message);
}
@Test
public void testEd25519Template() throws Exception {
KeyTemplate template = Ed25519PrivateKeyManager.ed25519Template();
assertThat(template.getTypeUrl()).isEqualTo(new Ed25519PrivateKeyManager().getKeyType());
assertThat(template.getOutputPrefixType()).isEqualTo(KeyTemplate.OutputPrefixType.TINK);
Ed25519KeyFormat unused =
Ed25519KeyFormat.parseFrom(template.getValue(), ExtensionRegistryLite.getEmptyRegistry());
}
@Test
public void testRawEd25519Template() throws Exception {
KeyTemplate template = Ed25519PrivateKeyManager.rawEd25519Template();
assertThat(template.getTypeUrl()).isEqualTo(new Ed25519PrivateKeyManager().getKeyType());
assertThat(template.getOutputPrefixType()).isEqualTo(KeyTemplate.OutputPrefixType.RAW);
Ed25519KeyFormat unused =
Ed25519KeyFormat.parseFrom(template.getValue(), ExtensionRegistryLite.getEmptyRegistry());
}
@Test
public void testKeyTemplateAndManagerCompatibility() throws Exception {
Ed25519PrivateKeyManager manager = new Ed25519PrivateKeyManager();
testKeyTemplateCompatible(manager, Ed25519PrivateKeyManager.ed25519Template());
testKeyTemplateCompatible(manager, Ed25519PrivateKeyManager.rawEd25519Template());
}
@Test
public void testDeriveKey() throws Exception {
final int keySize = 32;
byte[] keyMaterial = Random.randBytes(100);
Ed25519PrivateKey key =
factory.deriveKey(
Ed25519KeyFormat.newBuilder().setVersion(0).build(),
new ByteArrayInputStream(keyMaterial));
assertThat(key.getKeyValue()).hasSize(keySize);
for (int i = 0; i < keySize; ++i) {
assertThat(key.getKeyValue().byteAt(i)).isEqualTo(keyMaterial[i]);
}
}
@Test
public void testDeriveKeySignVerify() throws Exception {
byte[] keyMaterial = Random.randBytes(100);
Ed25519PrivateKey key =
factory.deriveKey(
Ed25519KeyFormat.newBuilder().setVersion(0).build(),
new ByteArrayInputStream(keyMaterial));
PublicKeySign signer = manager.getPrimitive(key, PublicKeySign.class);
PublicKeyVerify verifier = new Ed25519Verify(key.getPublicKey().getKeyValue().toByteArray());
byte[] message = Random.randBytes(135);
verifier.verify(signer.sign(message), message);
}
@Test
public void testDeriveKeyNotEnoughRandomness() throws Exception {
byte[] keyMaterial = Random.randBytes(10);
assertThrows(GeneralSecurityException.class, () -> factory.deriveKey(
Ed25519KeyFormat.newBuilder().setVersion(0).build(),
new ByteArrayInputStream(keyMaterial)));
}
@Test
public void testDeriveKeyWrongVersion() throws Exception {
byte[] keyMaterial = Random.randBytes(32);
assertThrows(GeneralSecurityException.class, () -> factory.deriveKey(
Ed25519KeyFormat.newBuilder().setVersion(1).build(),
new ByteArrayInputStream(keyMaterial)));
}
@Test
public void testKeyFormats() throws Exception {
factory.validateKeyFormat(factory.keyFormats().get("ED25519").keyFormat);
factory.validateKeyFormat(factory.keyFormats().get("ED25519_RAW").keyFormat);
factory.validateKeyFormat(factory.keyFormats().get("ED25519WithRawOutput").keyFormat);
}
}