1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include <openssl/bn.h>
6 #include <openssl/dsa.h>
7 #include <openssl/ecdsa.h>
8 #include <openssl/err.h>
9 #include <openssl/evp.h>
10 #include <openssl/pem.h>
11 #include <openssl/rsa.h>
12 #include <openssl/x509.h>
14 #include "base/android/build_info.h"
15 #include "base/android/jni_android.h"
16 #include "base/android/jni_array.h"
17 #include "base/android/scoped_java_ref.h"
18 #include "base/basictypes.h"
19 #include "base/bind.h"
20 #include "base/callback.h"
21 #include "base/compiler_specific.h"
22 #include "base/file_util.h"
23 #include "base/files/file_path.h"
24 #include "base/files/scoped_file.h"
25 #include "base/strings/string_number_conversions.h"
26 #include "base/strings/string_util.h"
27 #include "crypto/openssl_util.h"
28 #include "crypto/scoped_openssl_types.h"
29 #include "jni/AndroidKeyStoreTestUtil_jni.h"
30 #include "net/android/keystore.h"
31 #include "net/android/keystore_openssl.h"
32 #include "net/base/test_data_directory.h"
33 #include "testing/gtest/include/gtest/gtest.h"
37 // This source file not only checks that signing with
38 // RawSignDigestWithPrivateKey() works correctly, it also verifies that
39 // the generated signature matches 100% of what OpenSSL generates when
40 // calling RSA_sign(NID_md5_sha1,...), DSA_sign(0, ...) or
41 // ECDSA_sign(0, ...).
43 // That's crucial to ensure that this function can later be used to
44 // implement client certificate support. More specifically, that it is
45 // possible to create a custom EVP_PKEY that uses
46 // RawSignDigestWithPrivateKey() internally to perform RSA/DSA/ECDSA
47 // signing, as invoked by the OpenSSL code at
48 // openssl/ssl/s3_clnt.c:ssl3_send_client_verify().
50 // For more details, read the comments in AndroidKeyStore.java.
52 // Finally, it also checks that using the EVP_PKEY generated with
53 // GetOpenSSLPrivateKeyWrapper() works correctly.
60 typedef crypto::ScopedOpenSSL
<PKCS8_PRIV_KEY_INFO
,
61 PKCS8_PRIV_KEY_INFO_free
>::Type
62 ScopedPKCS8_PRIV_KEY_INFO
;
64 typedef base::android::ScopedJavaLocalRef
<jobject
> ScopedJava
;
67 JNIEnv
* env
= base::android::AttachCurrentThread();
68 static bool inited
= false;
70 RegisterNativesImpl(env
);
76 // Returns true if running on an Android version older than 4.2
77 bool IsOnAndroidOlderThan_4_2(void) {
78 const int kAndroid42ApiLevel
= 17;
79 int level
= base::android::BuildInfo::GetInstance()->sdk_int();
80 return level
< kAndroid42ApiLevel
;
83 // Implements the callback expected by ERR_print_errors_cb().
84 // used by GetOpenSSLErrorString below.
85 int openssl_print_error_callback(const char* msg
, size_t msglen
, void* u
) {
86 std::string
* result
= reinterpret_cast<std::string
*>(u
);
87 result
->append(msg
, msglen
);
91 // Retrieves the OpenSSL error as a string
92 std::string
GetOpenSSLErrorString(void) {
94 ERR_print_errors_cb(openssl_print_error_callback
, &result
);
98 // Resize a string to |size| bytes of data, then return its data buffer
99 // address cast as an 'unsigned char*', as expected by OpenSSL functions.
100 // |str| the target string.
101 // |size| the number of bytes to write into the string.
102 // Return the string's new buffer in memory, as an 'unsigned char*'
104 unsigned char* OpenSSLWriteInto(std::string
* str
, size_t size
) {
105 return reinterpret_cast<unsigned char*>(WriteInto(str
, size
+ 1));
108 // Load a given private key file into an EVP_PKEY.
109 // |filename| is the key file path.
110 // Returns a new EVP_PKEY on success, NULL on failure.
111 EVP_PKEY
* ImportPrivateKeyFile(const char* filename
) {
112 // Load file in memory.
113 base::FilePath certs_dir
= GetTestCertsDirectory();
114 base::FilePath file_path
= certs_dir
.AppendASCII(filename
);
115 base::ScopedFILE
handle(base::OpenFile(file_path
, "rb"));
117 LOG(ERROR
) << "Could not open private key file: " << filename
;
120 // Assume it is PEM_encoded. Load it as an EVP_PKEY.
121 EVP_PKEY
* pkey
= PEM_read_PrivateKey(handle
.get(), NULL
, NULL
, NULL
);
123 LOG(ERROR
) << "Could not load public key file: " << filename
124 << ", " << GetOpenSSLErrorString();
130 // Convert a private key into its PKCS#8 encoded representation.
131 // |pkey| is the EVP_PKEY handle for the private key.
132 // |pkcs8| will receive the PKCS#8 bytes.
133 // Returns true on success, false otherwise.
134 bool GetPrivateKeyPkcs8Bytes(const crypto::ScopedEVP_PKEY
& pkey
,
135 std::string
* pkcs8
) {
136 // Convert to PKCS#8 object.
137 ScopedPKCS8_PRIV_KEY_INFO
p8_info(EVP_PKEY2PKCS8(pkey
.get()));
138 if (!p8_info
.get()) {
139 LOG(ERROR
) << "Can't get PKCS#8 private key from EVP_PKEY: "
140 << GetOpenSSLErrorString();
145 int len
= i2d_PKCS8_PRIV_KEY_INFO(p8_info
.get(), NULL
);
146 unsigned char* p
= OpenSSLWriteInto(pkcs8
, static_cast<size_t>(len
));
147 i2d_PKCS8_PRIV_KEY_INFO(p8_info
.get(), &p
);
151 bool ImportPrivateKeyFileAsPkcs8(const char* filename
,
152 std::string
* pkcs8
) {
153 crypto::ScopedEVP_PKEY
pkey(ImportPrivateKeyFile(filename
));
156 return GetPrivateKeyPkcs8Bytes(pkey
, pkcs8
);
159 // Same as ImportPrivateKey, but for public ones.
160 EVP_PKEY
* ImportPublicKeyFile(const char* filename
) {
161 // Load file as PEM data.
162 base::FilePath certs_dir
= GetTestCertsDirectory();
163 base::FilePath file_path
= certs_dir
.AppendASCII(filename
);
164 base::ScopedFILE
handle(base::OpenFile(file_path
, "rb"));
166 LOG(ERROR
) << "Could not open public key file: " << filename
;
169 EVP_PKEY
* pkey
= PEM_read_PUBKEY(handle
.get(), NULL
, NULL
, NULL
);
171 LOG(ERROR
) << "Could not load public key file: " << filename
172 << ", " << GetOpenSSLErrorString();
178 // Retrieve a JNI local ref from encoded PKCS#8 data.
179 ScopedJava
GetPKCS8PrivateKeyJava(PrivateKeyType key_type
,
180 const std::string
& pkcs8_key
) {
181 JNIEnv
* env
= InitEnv();
182 base::android::ScopedJavaLocalRef
<jbyteArray
> bytes(
183 base::android::ToJavaByteArray(
185 reinterpret_cast<const uint8
*>(pkcs8_key
.data()),
189 Java_AndroidKeyStoreTestUtil_createPrivateKeyFromPKCS8(
190 env
, key_type
, bytes
.obj()));
195 const char kTestRsaKeyFile
[] = "android-test-key-rsa.pem";
197 // The RSA test hash must be 36 bytes exactly.
198 const char kTestRsaHash
[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
200 // Retrieve a JNI local ref for our test RSA key.
201 ScopedJava
GetRSATestKeyJava() {
203 if (!ImportPrivateKeyFileAsPkcs8(kTestRsaKeyFile
, &key
))
205 return GetPKCS8PrivateKeyJava(PRIVATE_KEY_TYPE_RSA
, key
);
208 const char kTestDsaKeyFile
[] = "android-test-key-dsa.pem";
209 const char kTestDsaPublicKeyFile
[] = "android-test-key-dsa-public.pem";
211 // The DSA test hash must be 20 bytes exactly.
212 const char kTestDsaHash
[] = "0123456789ABCDEFGHIJ";
214 // Retrieve a JNI local ref for our test DSA key.
215 ScopedJava
GetDSATestKeyJava() {
217 if (!ImportPrivateKeyFileAsPkcs8(kTestDsaKeyFile
, &key
))
219 return GetPKCS8PrivateKeyJava(PRIVATE_KEY_TYPE_DSA
, key
);
222 // Call this function to verify that one message signed with our
223 // test DSA private key is correct. Since DSA signing introduces
224 // random elements in the signature, it is not possible to compare
225 // signature bits directly. However, one can use the public key
227 bool VerifyTestDSASignature(const base::StringPiece
& message
,
228 const base::StringPiece
& signature
) {
229 crypto::ScopedEVP_PKEY
pkey(ImportPublicKeyFile(kTestDsaPublicKeyFile
));
233 crypto::ScopedDSA
pub_key(EVP_PKEY_get1_DSA(pkey
.get()));
234 if (!pub_key
.get()) {
235 LOG(ERROR
) << "Could not get DSA public key: "
236 << GetOpenSSLErrorString();
240 const unsigned char* digest
=
241 reinterpret_cast<const unsigned char*>(message
.data());
242 int digest_len
= static_cast<int>(message
.size());
243 const unsigned char* sigbuf
=
244 reinterpret_cast<const unsigned char*>(signature
.data());
245 int siglen
= static_cast<int>(signature
.size());
247 int ret
= DSA_verify(
248 0, digest
, digest_len
, sigbuf
, siglen
, pub_key
.get());
250 LOG(ERROR
) << "DSA_verify() failed: " << GetOpenSSLErrorString();
256 const char kTestEcdsaKeyFile
[] = "android-test-key-ecdsa.pem";
257 const char kTestEcdsaPublicKeyFile
[] = "android-test-key-ecdsa-public.pem";
259 // The test hash for ECDSA keys must be 20 bytes exactly.
260 const char kTestEcdsaHash
[] = "0123456789ABCDEFGHIJ";
262 // Retrieve a JNI local ref for our test ECDSA key.
263 ScopedJava
GetECDSATestKeyJava() {
265 if (!ImportPrivateKeyFileAsPkcs8(kTestEcdsaKeyFile
, &key
))
267 return GetPKCS8PrivateKeyJava(PRIVATE_KEY_TYPE_ECDSA
, key
);
270 // Call this function to verify that one message signed with our
271 // test DSA private key is correct. Since DSA signing introduces
272 // random elements in the signature, it is not possible to compare
273 // signature bits directly. However, one can use the public key
275 bool VerifyTestECDSASignature(const base::StringPiece
& message
,
276 const base::StringPiece
& signature
) {
277 crypto::ScopedEVP_PKEY
pkey(ImportPublicKeyFile(kTestEcdsaPublicKeyFile
));
280 crypto::ScopedEC_KEY
pub_key(EVP_PKEY_get1_EC_KEY(pkey
.get()));
281 if (!pub_key
.get()) {
282 LOG(ERROR
) << "Could not get ECDSA public key: "
283 << GetOpenSSLErrorString();
287 const unsigned char* digest
=
288 reinterpret_cast<const unsigned char*>(message
.data());
289 int digest_len
= static_cast<int>(message
.size());
290 const unsigned char* sigbuf
=
291 reinterpret_cast<const unsigned char*>(signature
.data());
292 int siglen
= static_cast<int>(signature
.size());
294 int ret
= ECDSA_verify(
295 0, digest
, digest_len
, sigbuf
, siglen
, pub_key
.get());
297 LOG(ERROR
) << "ECDSA_verify() failed: " << GetOpenSSLErrorString();
303 // Sign a message with OpenSSL, return the result as a string.
304 // |message| is the message to be signed.
305 // |openssl_key| is an OpenSSL EVP_PKEY to use.
306 // |result| receives the result.
307 // Returns true on success, false otherwise.
308 bool SignWithOpenSSL(const base::StringPiece
& message
,
309 EVP_PKEY
* openssl_key
,
310 std::string
* result
) {
311 const unsigned char* digest
=
312 reinterpret_cast<const unsigned char*>(message
.data());
313 unsigned int digest_len
= static_cast<unsigned int>(message
.size());
314 std::string signature
;
315 size_t signature_size
;
316 size_t max_signature_size
;
317 int key_type
= EVP_PKEY_id(openssl_key
);
321 crypto::ScopedRSA
rsa(EVP_PKEY_get1_RSA(openssl_key
));
323 LOG(ERROR
) << "Could not get RSA from EVP_PKEY: "
324 << GetOpenSSLErrorString();
327 // With RSA, the signature will always be RSA_size() bytes.
328 max_signature_size
= static_cast<size_t>(RSA_size(rsa
.get()));
329 unsigned char* p
= OpenSSLWriteInto(&signature
,
331 unsigned int p_len
= 0;
333 NID_md5_sha1
, digest
, digest_len
, p
, &p_len
, rsa
.get());
335 LOG(ERROR
) << "RSA_sign() failed: " << GetOpenSSLErrorString();
338 signature_size
= static_cast<size_t>(p_len
);
343 crypto::ScopedDSA
dsa(EVP_PKEY_get1_DSA(openssl_key
));
345 LOG(ERROR
) << "Could not get DSA from EVP_PKEY: "
346 << GetOpenSSLErrorString();
349 // Note, the actual signature can be smaller than DSA_size()
350 max_signature_size
= static_cast<size_t>(DSA_size(dsa
.get()));
351 unsigned char* p
= OpenSSLWriteInto(&signature
,
353 unsigned int p_len
= 0;
354 // Note: first parameter is ignored by function.
355 int ret
= DSA_sign(0, digest
, digest_len
, p
, &p_len
, dsa
.get());
357 LOG(ERROR
) << "DSA_sign() failed: " << GetOpenSSLErrorString();
360 signature_size
= static_cast<size_t>(p_len
);
365 crypto::ScopedEC_KEY
ecdsa(EVP_PKEY_get1_EC_KEY(openssl_key
));
367 LOG(ERROR
) << "Could not get EC_KEY from EVP_PKEY: "
368 << GetOpenSSLErrorString();
371 // Note, the actual signature can be smaller than ECDSA_size()
372 max_signature_size
= ECDSA_size(ecdsa
.get());
373 unsigned char* p
= OpenSSLWriteInto(&signature
,
375 unsigned int p_len
= 0;
376 // Note: first parameter is ignored by function.
377 int ret
= ECDSA_sign(
378 0, digest
, digest_len
, p
, &p_len
, ecdsa
.get());
380 LOG(ERROR
) << "ECDSA_sign() fialed: " << GetOpenSSLErrorString();
383 signature_size
= static_cast<size_t>(p_len
);
387 LOG(WARNING
) << "Invalid OpenSSL key type: " << key_type
;
391 if (signature_size
== 0) {
392 LOG(ERROR
) << "Signature is empty!";
395 if (signature_size
> max_signature_size
) {
396 LOG(ERROR
) << "Signature size mismatch, actual " << signature_size
397 << ", expected <= " << max_signature_size
;
400 signature
.resize(signature_size
);
401 result
->swap(signature
);
405 // Check that a generated signature for a given message matches
406 // OpenSSL output byte-by-byte.
407 // |message| is the input message.
408 // |signature| is the generated signature for the message.
409 // |openssl_key| is a raw EVP_PKEY for the same private key than the
410 // one which was used to generate the signature.
411 // Returns true on success, false otherwise.
412 bool CompareSignatureWithOpenSSL(const base::StringPiece
& message
,
413 const base::StringPiece
& signature
,
414 EVP_PKEY
* openssl_key
) {
415 std::string openssl_signature
;
416 SignWithOpenSSL(message
, openssl_key
, &openssl_signature
);
418 if (signature
.size() != openssl_signature
.size()) {
419 LOG(ERROR
) << "Signature size mismatch, actual "
420 << signature
.size() << ", expected "
421 << openssl_signature
.size();
424 for (size_t n
= 0; n
< signature
.size(); ++n
) {
425 if (openssl_signature
[n
] != signature
[n
]) {
426 LOG(ERROR
) << "Signature byte mismatch at index " << n
427 << "actual " << signature
[n
] << ", expected "
428 << openssl_signature
[n
];
429 LOG(ERROR
) << "Actual signature : "
430 << base::HexEncode(signature
.data(), signature
.size());
431 LOG(ERROR
) << "Expected signature: "
432 << base::HexEncode(openssl_signature
.data(),
433 openssl_signature
.size());
440 // Sign a message with our platform API.
442 // |android_key| is a JNI reference to the platform PrivateKey object.
443 // |openssl_key| is a pointer to an OpenSSL key object for the exact
445 // |message| is a message.
446 // |result| will receive the result.
447 void DoKeySigning(jobject android_key
,
448 EVP_PKEY
* openssl_key
,
449 const base::StringPiece
& message
,
450 std::string
* result
) {
451 // First, get the platform signature.
452 std::vector
<uint8
> android_signature
;
454 RawSignDigestWithPrivateKey(android_key
,
456 &android_signature
));
459 reinterpret_cast<const char*>(&android_signature
[0]),
460 android_signature
.size());
463 // Sign a message with our OpenSSL EVP_PKEY wrapper around platform
466 // |android_key| is a JNI reference to the platform PrivateKey object.
467 // |openssl_key| is a pointer to an OpenSSL key object for the exact
469 // |message| is a message.
470 // |result| will receive the result.
471 void DoKeySigningWithWrapper(EVP_PKEY
* wrapper_key
,
472 EVP_PKEY
* openssl_key
,
473 const base::StringPiece
& message
,
474 std::string
* result
) {
475 // First, get the platform signature.
476 std::string wrapper_signature
;
477 SignWithOpenSSL(message
, wrapper_key
, &wrapper_signature
);
478 ASSERT_NE(0U, wrapper_signature
.size());
481 reinterpret_cast<const char*>(&wrapper_signature
[0]),
482 wrapper_signature
.size());
487 TEST(AndroidKeyStore
,GetRSAKeyModulus
) {
488 crypto::OpenSSLErrStackTracer
err_trace(FROM_HERE
);
491 // Load the test RSA key.
492 crypto::ScopedEVP_PKEY
pkey(ImportPrivateKeyFile(kTestRsaKeyFile
));
493 ASSERT_TRUE(pkey
.get());
495 // Convert it to encoded PKCS#8 bytes.
496 std::string pkcs8_data
;
497 ASSERT_TRUE(GetPrivateKeyPkcs8Bytes(pkey
, &pkcs8_data
));
499 // Create platform PrivateKey object from it.
500 ScopedJava key_java
= GetPKCS8PrivateKeyJava(PRIVATE_KEY_TYPE_RSA
,
502 ASSERT_FALSE(key_java
.is_null());
504 // Retrieve the corresponding modulus through JNI
505 std::vector
<uint8
> modulus_java
;
506 ASSERT_TRUE(GetRSAKeyModulus(key_java
.obj(), &modulus_java
));
508 // Create an OpenSSL BIGNUM from it.
509 crypto::ScopedBIGNUM
bn(
510 BN_bin2bn(reinterpret_cast<const unsigned char*>(&modulus_java
[0]),
511 static_cast<int>(modulus_java
.size()),
513 ASSERT_TRUE(bn
.get());
515 // Compare it to the one in the RSA key, they must be identical.
516 crypto::ScopedRSA
rsa(EVP_PKEY_get1_RSA(pkey
.get()));
517 ASSERT_TRUE(rsa
.get()) << GetOpenSSLErrorString();
519 ASSERT_EQ(0, BN_cmp(bn
.get(), rsa
.get()->n
));
522 TEST(AndroidKeyStore
,GetDSAKeyParamQ
) {
523 crypto::OpenSSLErrStackTracer
err_trace(FROM_HERE
);
526 // Load the test DSA key.
527 crypto::ScopedEVP_PKEY
pkey(ImportPrivateKeyFile(kTestDsaKeyFile
));
528 ASSERT_TRUE(pkey
.get());
530 // Convert it to encoded PKCS#8 bytes.
531 std::string pkcs8_data
;
532 ASSERT_TRUE(GetPrivateKeyPkcs8Bytes(pkey
, &pkcs8_data
));
534 // Create platform PrivateKey object from it.
535 ScopedJava key_java
= GetPKCS8PrivateKeyJava(PRIVATE_KEY_TYPE_DSA
,
537 ASSERT_FALSE(key_java
.is_null());
539 // Retrieve the corresponding Q parameter through JNI
540 std::vector
<uint8
> q_java
;
541 ASSERT_TRUE(GetDSAKeyParamQ(key_java
.obj(), &q_java
));
543 // Create an OpenSSL BIGNUM from it.
544 crypto::ScopedBIGNUM
bn(
545 BN_bin2bn(reinterpret_cast<const unsigned char*>(&q_java
[0]),
546 static_cast<int>(q_java
.size()),
548 ASSERT_TRUE(bn
.get());
550 // Compare it to the one in the RSA key, they must be identical.
551 crypto::ScopedDSA
dsa(EVP_PKEY_get1_DSA(pkey
.get()));
552 ASSERT_TRUE(dsa
.get()) << GetOpenSSLErrorString();
554 ASSERT_EQ(0, BN_cmp(bn
.get(), dsa
.get()->q
));
557 TEST(AndroidKeyStore
,GetPrivateKeyTypeRSA
) {
558 crypto::OpenSSLErrStackTracer
err_trace(FROM_HERE
);
560 ScopedJava rsa_key
= GetRSATestKeyJava();
561 ASSERT_FALSE(rsa_key
.is_null());
562 EXPECT_EQ(PRIVATE_KEY_TYPE_RSA
,
563 GetPrivateKeyType(rsa_key
.obj()));
566 TEST(AndroidKeyStore
,SignWithPrivateKeyRSA
) {
567 ScopedJava rsa_key
= GetRSATestKeyJava();
568 ASSERT_FALSE(rsa_key
.is_null());
570 if (IsOnAndroidOlderThan_4_2()) {
571 LOG(INFO
) << "This test can't run on Android < 4.2";
575 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestRsaKeyFile
));
576 ASSERT_TRUE(openssl_key
.get());
578 std::string message
= kTestRsaHash
;
579 ASSERT_EQ(36U, message
.size());
581 std::string signature
;
582 DoKeySigning(rsa_key
.obj(), openssl_key
.get(), message
, &signature
);
584 CompareSignatureWithOpenSSL(message
, signature
, openssl_key
.get()));
588 TEST(AndroidKeyStore
,SignWithWrapperKeyRSA
) {
589 crypto::OpenSSLErrStackTracer
err_tracer(FROM_HERE
);
591 ScopedJava rsa_key
= GetRSATestKeyJava();
592 ASSERT_FALSE(rsa_key
.is_null());
594 crypto::ScopedEVP_PKEY
wrapper_key(
595 GetOpenSSLPrivateKeyWrapper(rsa_key
.obj()));
596 ASSERT_TRUE(wrapper_key
.get() != NULL
);
598 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestRsaKeyFile
));
599 ASSERT_TRUE(openssl_key
.get());
601 // Check that RSA_size() works properly on the wrapper key.
602 EXPECT_EQ(EVP_PKEY_size(openssl_key
.get()),
603 EVP_PKEY_size(wrapper_key
.get()));
605 // Message size must be 36 for RSA_sign(NID_md5_sha1,...) to return
607 std::string message
= kTestRsaHash
;
608 ASSERT_EQ(36U, message
.size());
610 std::string signature
;
611 DoKeySigningWithWrapper(wrapper_key
.get(),
616 CompareSignatureWithOpenSSL(message
, signature
, openssl_key
.get()));
619 TEST(AndroidKeyStore
,GetPrivateKeyTypeDSA
) {
620 crypto::OpenSSLErrStackTracer
err_trace(FROM_HERE
);
622 ScopedJava dsa_key
= GetDSATestKeyJava();
623 ASSERT_FALSE(dsa_key
.is_null());
624 EXPECT_EQ(PRIVATE_KEY_TYPE_DSA
,
625 GetPrivateKeyType(dsa_key
.obj()));
628 TEST(AndroidKeyStore
,SignWithPrivateKeyDSA
) {
629 ScopedJava dsa_key
= GetDSATestKeyJava();
630 ASSERT_FALSE(dsa_key
.is_null());
632 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestDsaKeyFile
));
633 ASSERT_TRUE(openssl_key
.get());
635 std::string message
= kTestDsaHash
;
636 ASSERT_EQ(20U, message
.size());
638 std::string signature
;
639 DoKeySigning(dsa_key
.obj(), openssl_key
.get(), message
, &signature
);
640 ASSERT_TRUE(VerifyTestDSASignature(message
, signature
));
643 TEST(AndroidKeyStore
,SignWithWrapperKeyDSA
) {
644 crypto::OpenSSLErrStackTracer
err_tracer(FROM_HERE
);
646 ScopedJava dsa_key
= GetDSATestKeyJava();
647 ASSERT_FALSE(dsa_key
.is_null());
649 crypto::ScopedEVP_PKEY
wrapper_key(
650 GetOpenSSLPrivateKeyWrapper(dsa_key
.obj()));
651 ASSERT_TRUE(wrapper_key
.get());
653 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestDsaKeyFile
));
654 ASSERT_TRUE(openssl_key
.get());
656 // Check that DSA_size() works correctly on the wrapper.
657 EXPECT_EQ(EVP_PKEY_size(openssl_key
.get()),
658 EVP_PKEY_size(wrapper_key
.get()));
660 std::string message
= kTestDsaHash
;
661 std::string signature
;
662 DoKeySigningWithWrapper(wrapper_key
.get(),
666 ASSERT_TRUE(VerifyTestDSASignature(message
, signature
));
669 TEST(AndroidKeyStore
,GetPrivateKeyTypeECDSA
) {
670 crypto::OpenSSLErrStackTracer
err_trace(FROM_HERE
);
672 ScopedJava ecdsa_key
= GetECDSATestKeyJava();
673 ASSERT_FALSE(ecdsa_key
.is_null());
674 EXPECT_EQ(PRIVATE_KEY_TYPE_ECDSA
,
675 GetPrivateKeyType(ecdsa_key
.obj()));
678 TEST(AndroidKeyStore
,SignWithPrivateKeyECDSA
) {
679 ScopedJava ecdsa_key
= GetECDSATestKeyJava();
680 ASSERT_FALSE(ecdsa_key
.is_null());
682 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestEcdsaKeyFile
));
683 ASSERT_TRUE(openssl_key
.get());
685 std::string message
= kTestEcdsaHash
;
686 std::string signature
;
687 DoKeySigning(ecdsa_key
.obj(), openssl_key
.get(), message
, &signature
);
688 ASSERT_TRUE(VerifyTestECDSASignature(message
, signature
));
691 TEST(AndroidKeyStore
, SignWithWrapperKeyECDSA
) {
692 crypto::OpenSSLErrStackTracer
err_tracer(FROM_HERE
);
694 ScopedJava ecdsa_key
= GetECDSATestKeyJava();
695 ASSERT_FALSE(ecdsa_key
.is_null());
697 crypto::ScopedEVP_PKEY
wrapper_key(
698 GetOpenSSLPrivateKeyWrapper(ecdsa_key
.obj()));
699 ASSERT_TRUE(wrapper_key
.get());
701 crypto::ScopedEVP_PKEY
openssl_key(ImportPrivateKeyFile(kTestEcdsaKeyFile
));
702 ASSERT_TRUE(openssl_key
.get());
704 // Check that ECDSA size works correctly on the wrapper.
705 EXPECT_EQ(EVP_PKEY_size(openssl_key
.get()),
706 EVP_PKEY_size(wrapper_key
.get()));
708 std::string message
= kTestEcdsaHash
;
709 std::string signature
;
710 DoKeySigningWithWrapper(wrapper_key
.get(),
714 ASSERT_TRUE(VerifyTestECDSASignature(message
, signature
));
717 } // namespace android