2020-07-09 19:10:39 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2020-07-10 15:28:05 +02:00
|
|
|
#include <string.h>
|
2020-07-09 19:10:39 +02:00
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/pem.h>
|
|
|
|
#include <openssl/rsa.h>
|
|
|
|
#include <openssl/x509.h>
|
2020-07-27 18:40:05 +02:00
|
|
|
#include <openssl/params.h>
|
2020-07-09 19:10:39 +02:00
|
|
|
#include <openssl/serializer.h>
|
|
|
|
#include <openssl/deserializer.h>
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#include "internal/pem.h" /* For PVK and "blob" PEM headers */
|
2020-07-20 10:47:59 +02:00
|
|
|
#include "internal/cryptlib.h" /* ossl_assert */
|
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
#include "testutil.h"
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
/*
|
|
|
|
* TODO(3.0) Modify PEM_write_bio_PrivateKey_traditional() to handle
|
|
|
|
* provider side EVP_PKEYs (which don't necessarily have an ameth)
|
|
|
|
*
|
|
|
|
* In the mean time, we use separate "downgraded" EVP_PKEYs to test
|
|
|
|
* serializing/deserializing with "traditional" keys.
|
|
|
|
*/
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static EVP_PKEY *make_template(const char *type, OSSL_PARAM *genparams)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = NULL;
|
|
|
|
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_from_name(NULL, type, NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No real need to check the errors other than for the cascade
|
|
|
|
* effect. |pkey| will simply remain NULL if something goes wrong.
|
|
|
|
*/
|
|
|
|
(void)(ctx != NULL
|
|
|
|
&& EVP_PKEY_paramgen_init(ctx) > 0
|
|
|
|
&& (genparams == NULL
|
|
|
|
|| EVP_PKEY_CTX_set_params(ctx, genparams) > 0)
|
|
|
|
&& EVP_PKEY_gen(ctx, &pkey) > 0);
|
|
|
|
EVP_PKEY_CTX_free(ctx);
|
|
|
|
|
|
|
|
return pkey;
|
|
|
|
}
|
2020-07-09 19:10:39 +02:00
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static EVP_PKEY *make_key(const char *type, EVP_PKEY *template,
|
|
|
|
OSSL_PARAM *genparams, int make_legacy)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = NULL;
|
2020-07-27 18:40:05 +02:00
|
|
|
EVP_PKEY_CTX *ctx =
|
|
|
|
template != NULL
|
|
|
|
? EVP_PKEY_CTX_new(template, NULL)
|
|
|
|
: EVP_PKEY_CTX_new_from_name(NULL, type, NULL);
|
2020-07-09 19:10:39 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No real need to check the errors other than for the cascade
|
2020-07-27 18:40:05 +02:00
|
|
|
* effect. |pkey| will simply remain NULL if something goes wrong.
|
2020-07-09 19:10:39 +02:00
|
|
|
*/
|
|
|
|
(void)(ctx != NULL
|
|
|
|
&& EVP_PKEY_keygen_init(ctx) > 0
|
2020-07-27 18:40:05 +02:00
|
|
|
&& (genparams == NULL
|
|
|
|
|| EVP_PKEY_CTX_set_params(ctx, genparams) > 0)
|
2020-07-09 19:10:39 +02:00
|
|
|
&& EVP_PKEY_keygen(ctx, &pkey) > 0);
|
|
|
|
EVP_PKEY_CTX_free(ctx);
|
2020-07-20 10:47:59 +02:00
|
|
|
if (make_legacy && EVP_PKEY_get0(pkey) == NULL) {
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
pkey = NULL;
|
|
|
|
}
|
2020-07-09 19:10:39 +02:00
|
|
|
|
|
|
|
return pkey;
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
/* Main test driver */
|
|
|
|
|
2020-07-27 18:39:58 +02:00
|
|
|
/*
|
|
|
|
* TODO(3.0) For better error output, changed the callbacks to take __FILE__
|
|
|
|
* and __LINE__ as first two arguments, and have them use the lower case
|
|
|
|
* functions, such as test_strn_eq(), rather than the uppercase macros
|
|
|
|
* (TEST_strn2_eq(), for example).
|
|
|
|
*/
|
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
typedef int (serializer)(void **serialized, long *serialized_len,
|
2020-07-27 18:39:58 +02:00
|
|
|
void *object, const char *pass, const char *pcipher,
|
2020-07-10 15:28:05 +02:00
|
|
|
const char *ser_propq);
|
2020-07-09 19:10:39 +02:00
|
|
|
typedef int (deserializer)(void **object,
|
2020-07-10 15:28:05 +02:00
|
|
|
void *serialized, long serialized_len,
|
2020-07-27 18:39:58 +02:00
|
|
|
const char *pass);
|
2020-07-27 18:40:11 +02:00
|
|
|
typedef int (tester)(const void *data1, size_t data1_len,
|
|
|
|
const void *data2, size_t data2_len);
|
2020-07-20 16:14:40 +02:00
|
|
|
typedef int (checker)(const char *type, const void *data, size_t data_len);
|
2020-07-09 19:10:39 +02:00
|
|
|
typedef void (dumper)(const char *label, const void *data, size_t data_len);
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int test_serialize_deserialize(const char *type, EVP_PKEY *pkey,
|
2020-07-10 15:28:05 +02:00
|
|
|
const char *pass, const char *pcipher,
|
2020-07-09 19:10:39 +02:00
|
|
|
serializer *serialize_cb,
|
|
|
|
deserializer *deserialize_cb,
|
2020-07-27 18:40:11 +02:00
|
|
|
tester *test_cb,
|
2020-07-09 19:10:39 +02:00
|
|
|
checker *check_cb, dumper *dump_cb,
|
2020-07-20 10:47:59 +02:00
|
|
|
const char *ser_propq, int make_legacy)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
void *serialized = NULL;
|
|
|
|
long serialized_len = 0;
|
|
|
|
EVP_PKEY *pkey2 = NULL;
|
|
|
|
void *serialized2 = NULL;
|
|
|
|
long serialized2_len = 0;
|
|
|
|
int ok = 0;
|
|
|
|
|
2020-07-10 15:28:05 +02:00
|
|
|
if (!serialize_cb(&serialized, &serialized_len, pkey,
|
|
|
|
pass, pcipher, ser_propq)
|
2020-07-20 16:14:40 +02:00
|
|
|
|| !check_cb(type, serialized, serialized_len)
|
2020-07-10 15:28:05 +02:00
|
|
|
|| !deserialize_cb((void **)&pkey2, serialized, serialized_len,
|
2020-07-27 18:39:58 +02:00
|
|
|
pass)
|
2020-07-09 19:10:39 +02:00
|
|
|
|| !TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1))
|
|
|
|
goto end;
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
/*
|
|
|
|
* TODO(3.0) Remove this when PEM_write_bio_PrivateKey_traditional()
|
|
|
|
* handles provider side keys.
|
|
|
|
*/
|
|
|
|
if (make_legacy
|
|
|
|
&& !TEST_ptr(EVP_PKEY_get0(pkey2)))
|
|
|
|
goto end;
|
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
/*
|
2020-07-10 15:28:05 +02:00
|
|
|
* Double check the serialization, but only for unprotected keys,
|
|
|
|
* as protected keys have a random component, which makes the output
|
|
|
|
* differ.
|
2020-07-09 19:10:39 +02:00
|
|
|
*/
|
2020-07-10 15:28:05 +02:00
|
|
|
if ((pass == NULL && pcipher == NULL)
|
|
|
|
&& (!serialize_cb(&serialized2, &serialized2_len, pkey2,
|
|
|
|
pass, pcipher, ser_propq)
|
2020-07-27 18:40:11 +02:00
|
|
|
|| !test_cb(serialized, serialized_len,
|
|
|
|
serialized2, serialized2_len)))
|
2020-07-09 19:10:39 +02:00
|
|
|
goto end;
|
|
|
|
|
|
|
|
ok = 1;
|
|
|
|
end:
|
2020-07-27 18:40:11 +02:00
|
|
|
if (!ok) {
|
|
|
|
if (serialized != NULL && serialized_len != 0)
|
|
|
|
dump_cb("serialized result", serialized, serialized_len);
|
|
|
|
if (serialized2 != NULL && serialized2_len != 0)
|
|
|
|
dump_cb("re-serialized result", serialized2, serialized2_len);
|
|
|
|
}
|
2020-07-09 19:10:39 +02:00
|
|
|
|
|
|
|
OPENSSL_free(serialized);
|
|
|
|
OPENSSL_free(serialized2);
|
|
|
|
EVP_PKEY_free(pkey2);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Serializing and desserializing methods */
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
static int serialize_EVP_PKEY_prov(void **serialized, long *serialized_len,
|
|
|
|
void *object,
|
|
|
|
const char *pass, const char *pcipher,
|
|
|
|
const char *ser_propq)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = object;
|
|
|
|
OSSL_SERIALIZER_CTX *sctx = NULL;
|
|
|
|
BIO *mem_ser = NULL;
|
|
|
|
BUF_MEM *mem_buf = NULL;
|
2020-07-10 15:28:05 +02:00
|
|
|
const unsigned char *upass = (const unsigned char *)pass;
|
2020-07-09 19:10:39 +02:00
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (!TEST_ptr(sctx = OSSL_SERIALIZER_CTX_new_by_EVP_PKEY(pkey, ser_propq))
|
2020-07-10 15:28:05 +02:00
|
|
|
|| (pass != NULL
|
2020-07-20 10:47:59 +02:00
|
|
|
&& !TEST_true(OSSL_SERIALIZER_CTX_set_passphrase(sctx, upass,
|
|
|
|
strlen(pass))))
|
2020-07-10 15:28:05 +02:00
|
|
|
|| (pcipher != NULL
|
2020-07-20 10:47:59 +02:00
|
|
|
&& !TEST_true(OSSL_SERIALIZER_CTX_set_cipher(sctx, pcipher, NULL)))
|
2020-07-09 19:10:39 +02:00
|
|
|
|| !TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
|
|
|
|
|| !TEST_true(OSSL_SERIALIZER_to_bio(sctx, mem_ser))
|
|
|
|
|| !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
|
|
|
|
|| !TEST_ptr(*serialized = mem_buf->data)
|
|
|
|
|| !TEST_long_gt(*serialized_len = mem_buf->length, 0))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Detach the serialized output */
|
|
|
|
mem_buf->data = NULL;
|
|
|
|
mem_buf->length = 0;
|
|
|
|
ok = 1;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_ser);
|
|
|
|
OSSL_SERIALIZER_CTX_free(sctx);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
static int deserialize_EVP_PKEY_prov(void **object,
|
|
|
|
void *serialized, long serialized_len,
|
2020-07-27 18:39:58 +02:00
|
|
|
const char *pass)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = NULL;
|
|
|
|
OSSL_DESERIALIZER_CTX *dctx = NULL;
|
|
|
|
BIO *mem_deser = NULL;
|
2020-07-10 15:28:05 +02:00
|
|
|
const unsigned char *upass = (const unsigned char *)pass;
|
2020-07-09 19:10:39 +02:00
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (!TEST_ptr(dctx = OSSL_DESERIALIZER_CTX_new_by_EVP_PKEY(&pkey, NULL,
|
|
|
|
NULL, NULL))
|
2020-07-10 15:28:05 +02:00
|
|
|
|| (pass != NULL
|
|
|
|
&& !OSSL_DESERIALIZER_CTX_set_passphrase(dctx, upass,
|
|
|
|
strlen(pass)))
|
2020-07-09 19:10:39 +02:00
|
|
|
|| !TEST_ptr(mem_deser = BIO_new_mem_buf(serialized, serialized_len))
|
|
|
|
|| !TEST_true(OSSL_DESERIALIZER_from_bio(dctx, mem_deser)))
|
|
|
|
goto end;
|
|
|
|
ok = 1;
|
|
|
|
*object = pkey;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_deser);
|
|
|
|
OSSL_DESERIALIZER_CTX_free(dctx);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
static int serialize_EVP_PKEY_legacy_PEM(void **serialized,
|
|
|
|
long *serialized_len,
|
|
|
|
void *object,
|
|
|
|
const char *pass, const char *pcipher,
|
|
|
|
ossl_unused const char *ser_propq)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = object;
|
|
|
|
EVP_CIPHER *cipher = NULL;
|
|
|
|
BIO *mem_ser = NULL;
|
|
|
|
BUF_MEM *mem_buf = NULL;
|
|
|
|
const unsigned char *upass = (const unsigned char *)pass;
|
|
|
|
size_t passlen = 0;
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (pcipher != NULL && pass != NULL) {
|
|
|
|
passlen = strlen(pass);
|
|
|
|
if (!TEST_ptr(cipher = EVP_CIPHER_fetch(NULL, pcipher, NULL)))
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (!TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
|
|
|
|
|| !TEST_true(PEM_write_bio_PrivateKey_traditional(mem_ser, pkey,
|
|
|
|
cipher,
|
|
|
|
upass, passlen,
|
|
|
|
NULL, NULL))
|
|
|
|
|| !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
|
|
|
|
|| !TEST_ptr(*serialized = mem_buf->data)
|
|
|
|
|| !TEST_long_gt(*serialized_len = mem_buf->length, 0))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Detach the serialized output */
|
|
|
|
mem_buf->data = NULL;
|
|
|
|
mem_buf->length = 0;
|
|
|
|
ok = 1;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_ser);
|
|
|
|
EVP_CIPHER_free(cipher);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
static int serialize_EVP_PKEY_MSBLOB(void **serialized,
|
|
|
|
long *serialized_len,
|
|
|
|
void *object,
|
|
|
|
ossl_unused const char *pass,
|
|
|
|
ossl_unused const char *pcipher,
|
|
|
|
ossl_unused const char *ser_propq)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = object;
|
|
|
|
BIO *mem_ser = NULL;
|
|
|
|
BUF_MEM *mem_buf = NULL;
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (!TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
|
|
|
|
|| !TEST_int_ge(i2b_PrivateKey_bio(mem_ser, pkey), 0)
|
|
|
|
|| !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
|
|
|
|
|| !TEST_ptr(*serialized = mem_buf->data)
|
|
|
|
|| !TEST_long_gt(*serialized_len = mem_buf->length, 0))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Detach the serialized output */
|
|
|
|
mem_buf->data = NULL;
|
|
|
|
mem_buf->length = 0;
|
|
|
|
ok = 1;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_ser);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int serialize_public_EVP_PKEY_MSBLOB(void **serialized,
|
|
|
|
long *serialized_len,
|
|
|
|
void *object,
|
|
|
|
ossl_unused const char *pass,
|
|
|
|
ossl_unused const char *pcipher,
|
|
|
|
ossl_unused const char *ser_propq)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = object;
|
|
|
|
BIO *mem_ser = NULL;
|
|
|
|
BUF_MEM *mem_buf = NULL;
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (!TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
|
|
|
|
|| !TEST_int_ge(i2b_PublicKey_bio(mem_ser, pkey), 0)
|
|
|
|
|| !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
|
|
|
|
|| !TEST_ptr(*serialized = mem_buf->data)
|
|
|
|
|| !TEST_long_gt(*serialized_len = mem_buf->length, 0))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Detach the serialized output */
|
|
|
|
mem_buf->data = NULL;
|
|
|
|
mem_buf->length = 0;
|
|
|
|
ok = 1;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_ser);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
static pem_password_cb pass_pw;
|
|
|
|
static int pass_pw(char *buf, int size, int rwflag, void *userdata)
|
|
|
|
{
|
|
|
|
OPENSSL_strlcpy(buf, userdata, size);
|
|
|
|
return strlen(userdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int serialize_EVP_PKEY_PVK(void **serialized, long *serialized_len,
|
|
|
|
void *object,
|
|
|
|
const char *pass,
|
|
|
|
ossl_unused const char *pcipher,
|
|
|
|
ossl_unused const char *ser_propq)
|
|
|
|
{
|
|
|
|
EVP_PKEY *pkey = object;
|
|
|
|
BIO *mem_ser = NULL;
|
|
|
|
BUF_MEM *mem_buf = NULL;
|
|
|
|
int enc = (pass != NULL);
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (!TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
|
|
|
|
|| !TEST_int_ge(i2b_PVK_bio(mem_ser, pkey, enc,
|
|
|
|
pass_pw, (void *)pass), 0)
|
|
|
|
|| !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
|
|
|
|
|| !TEST_ptr(*serialized = mem_buf->data)
|
|
|
|
|| !TEST_long_gt(*serialized_len = mem_buf->length, 0))
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Detach the serialized output */
|
|
|
|
mem_buf->data = NULL;
|
|
|
|
mem_buf->length = 0;
|
|
|
|
ok = 1;
|
|
|
|
end:
|
|
|
|
BIO_free(mem_ser);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-07-27 18:40:11 +02:00
|
|
|
static int test_text(const void *data1, size_t data1_len,
|
|
|
|
const void *data2, size_t data2_len)
|
|
|
|
{
|
|
|
|
return TEST_strn2_eq(data1, data1_len, data2, data2_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_mem(const void *data1, size_t data1_len,
|
|
|
|
const void *data2, size_t data2_len)
|
|
|
|
{
|
|
|
|
return TEST_mem_eq(data1, data1_len, data2, data2_len);
|
|
|
|
}
|
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
/* Test cases and their dumpers / checkers */
|
|
|
|
|
|
|
|
static void dump_der(const char *label, const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
test_output_memory(label, data, data_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_pem(const char *label, const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
test_output_string(label, data, data_len - 1);
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int check_unprotected_PKCS8_DER(const char *type,
|
2020-07-10 15:28:05 +02:00
|
|
|
const void *data, size_t data_len)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
const unsigned char *datap = data;
|
|
|
|
PKCS8_PRIV_KEY_INFO *p8inf =
|
|
|
|
d2i_PKCS8_PRIV_KEY_INFO(NULL, &datap, data_len);
|
|
|
|
int ok = 0;
|
|
|
|
|
|
|
|
if (TEST_ptr(p8inf)) {
|
|
|
|
EVP_PKEY *pkey = EVP_PKCS82PKEY(p8inf);
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
ok = (TEST_ptr(pkey) && TEST_true(EVP_PKEY_is_a(pkey, type)));
|
2020-07-09 19:10:39 +02:00
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
}
|
|
|
|
PKCS8_PRIV_KEY_INFO_free(p8inf);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_unprotected_via_DER(const char *type, EVP_PKEY *key)
|
2020-07-20 16:14:40 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
2020-07-20 16:14:40 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_mem,
|
2020-07-20 16:14:40 +02:00
|
|
|
check_unprotected_PKCS8_DER, dump_der,
|
|
|
|
OSSL_SERIALIZER_PrivateKey_TO_DER_PQ,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int check_unprotected_PKCS8_PEM(const char *type,
|
2020-07-10 15:28:05 +02:00
|
|
|
const void *data, size_t data_len)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
|
|
|
static const char pem_header[] = "-----BEGIN " PEM_STRING_PKCS8INF "-----";
|
|
|
|
|
|
|
|
return TEST_strn_eq(data, pem_header, sizeof(pem_header) - 1);
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_unprotected_via_PEM(const char *type, EVP_PKEY *key)
|
2020-07-09 19:10:39 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
2020-07-20 10:47:59 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_text,
|
2020-07-10 15:28:05 +02:00
|
|
|
check_unprotected_PKCS8_PEM, dump_pem,
|
2020-07-20 10:47:59 +02:00
|
|
|
OSSL_SERIALIZER_PrivateKey_TO_PEM_PQ,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int check_unprotected_legacy_PEM(const char *type,
|
2020-07-20 10:47:59 +02:00
|
|
|
const void *data, size_t data_len)
|
|
|
|
{
|
2020-07-20 16:14:40 +02:00
|
|
|
static char pem_header[80];
|
2020-07-20 10:47:59 +02:00
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
return
|
|
|
|
TEST_int_gt(BIO_snprintf(pem_header, sizeof(pem_header),
|
|
|
|
"-----BEGIN %s PRIVATE KEY-----", type), 0)
|
|
|
|
&& TEST_strn_eq(data, pem_header, strlen(pem_header));
|
2020-07-20 10:47:59 +02:00
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_unprotected_via_legacy_PEM(const char *type, EVP_PKEY *key)
|
2020-07-20 16:14:40 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
2020-07-20 10:47:59 +02:00
|
|
|
serialize_EVP_PKEY_legacy_PEM,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_text,
|
2020-07-20 10:47:59 +02:00
|
|
|
check_unprotected_legacy_PEM, dump_pem,
|
|
|
|
NULL, 1);
|
2020-07-10 15:28:05 +02:00
|
|
|
}
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
static int check_MSBLOB(const char *type, const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
const unsigned char *datap = data;
|
|
|
|
EVP_PKEY *pkey = b2i_PrivateKey(&datap, data_len);
|
|
|
|
int ok = TEST_ptr(pkey);
|
|
|
|
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_unprotected_via_MSBLOB(const char *type, EVP_PKEY *key)
|
|
|
|
{
|
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
|
|
|
serialize_EVP_PKEY_MSBLOB,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
|
|
|
test_mem,
|
|
|
|
check_MSBLOB, dump_der,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
static int check_PVK(const char *type, const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
const unsigned char *in = data;
|
|
|
|
unsigned int saltlen = 0, keylen = 0;
|
|
|
|
int ok = ossl_do_PVK_header(&in, data_len, 0, &saltlen, &keylen);
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_unprotected_via_PVK(const char *type, EVP_PKEY *key)
|
|
|
|
{
|
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
|
|
|
serialize_EVP_PKEY_PVK,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
|
|
|
test_mem,
|
|
|
|
check_PVK, dump_der,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-07-10 15:28:05 +02:00
|
|
|
static const char *pass_cipher = "AES-256-CBC";
|
|
|
|
static const char *pass = "the holy handgrenade of antioch";
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int check_protected_PKCS8_DER(const char *type,
|
2020-07-10 15:28:05 +02:00
|
|
|
const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
const unsigned char *datap = data;
|
|
|
|
X509_SIG *p8 = d2i_X509_SIG(NULL, &datap, data_len);
|
|
|
|
int ok = TEST_ptr(p8);
|
|
|
|
|
|
|
|
X509_SIG_free(p8);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_protected_via_DER(const char *type, EVP_PKEY *key)
|
2020-07-20 16:14:40 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, pass, pass_cipher,
|
2020-07-20 10:47:59 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_mem,
|
2020-07-10 15:28:05 +02:00
|
|
|
check_protected_PKCS8_DER, dump_der,
|
2020-07-20 10:47:59 +02:00
|
|
|
OSSL_SERIALIZER_PrivateKey_TO_DER_PQ,
|
|
|
|
0);
|
2020-07-10 15:28:05 +02:00
|
|
|
}
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int check_protected_PKCS8_PEM(const char *type,
|
2020-07-10 15:28:05 +02:00
|
|
|
const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
static const char pem_header[] = "-----BEGIN " PEM_STRING_PKCS8 "-----";
|
|
|
|
|
|
|
|
return TEST_strn_eq(data, pem_header, sizeof(pem_header) - 1);
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_protected_via_PEM(const char *type, EVP_PKEY *key)
|
2020-07-10 15:28:05 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, pass, pass_cipher,
|
2020-07-20 10:47:59 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_text,
|
2020-07-10 15:28:05 +02:00
|
|
|
check_protected_PKCS8_PEM, dump_pem,
|
2020-07-20 10:47:59 +02:00
|
|
|
OSSL_SERIALIZER_PrivateKey_TO_PEM_PQ,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2020-07-20 16:14:40 +02:00
|
|
|
static int check_protected_legacy_PEM(const char *type,
|
2020-07-20 10:47:59 +02:00
|
|
|
const void *data, size_t data_len)
|
|
|
|
{
|
2020-07-20 16:14:40 +02:00
|
|
|
static char pem_header[80];
|
2020-07-20 10:47:59 +02:00
|
|
|
|
|
|
|
return
|
2020-07-20 16:14:40 +02:00
|
|
|
TEST_int_gt(BIO_snprintf(pem_header, sizeof(pem_header),
|
|
|
|
"-----BEGIN %s PRIVATE KEY-----", type), 0)
|
|
|
|
&& TEST_strn_eq(data, pem_header, strlen(pem_header))
|
2020-07-20 10:47:59 +02:00
|
|
|
&& TEST_ptr(strstr(data, "\nDEK-Info: "));
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_protected_via_legacy_PEM(const char *type, EVP_PKEY *key)
|
2020-07-20 10:47:59 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, pass, pass_cipher,
|
2020-07-20 16:14:40 +02:00
|
|
|
serialize_EVP_PKEY_legacy_PEM,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_text,
|
2020-07-20 16:14:40 +02:00
|
|
|
check_protected_legacy_PEM, dump_pem,
|
|
|
|
NULL, 1);
|
|
|
|
}
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
|
|
|
|
static int test_protected_via_PVK(const char *type, EVP_PKEY *key)
|
|
|
|
{
|
|
|
|
return test_serialize_deserialize(type, key, pass, NULL,
|
|
|
|
serialize_EVP_PKEY_PVK,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
|
|
|
test_mem,
|
|
|
|
check_PVK, dump_der,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int check_public_DER(const char *type, const void *data, size_t data_len)
|
2020-07-27 18:40:02 +02:00
|
|
|
{
|
|
|
|
const unsigned char *datap = data;
|
|
|
|
EVP_PKEY *pkey = d2i_PUBKEY(NULL, &datap, data_len);
|
2020-07-27 18:40:05 +02:00
|
|
|
int ok = (TEST_ptr(pkey) && TEST_true(EVP_PKEY_is_a(pkey, type)));
|
2020-07-27 18:40:02 +02:00
|
|
|
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_public_via_DER(const char *type, EVP_PKEY *key)
|
2020-07-27 18:40:02 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
2020-07-27 18:40:02 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_mem,
|
2020-07-27 18:40:02 +02:00
|
|
|
check_public_DER, dump_der,
|
|
|
|
OSSL_SERIALIZER_PUBKEY_TO_DER_PQ,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int check_public_PEM(const char *type, const void *data, size_t data_len)
|
2020-07-27 18:40:02 +02:00
|
|
|
{
|
|
|
|
static const char pem_header[] = "-----BEGIN " PEM_STRING_PUBLIC "-----";
|
|
|
|
|
|
|
|
return
|
|
|
|
TEST_strn_eq(data, pem_header, sizeof(pem_header) - 1);
|
|
|
|
}
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
static int test_public_via_PEM(const char *type, EVP_PKEY *key)
|
2020-07-27 18:40:02 +02:00
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
2020-07-27 18:40:02 +02:00
|
|
|
serialize_EVP_PKEY_prov,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
2020-07-27 18:40:11 +02:00
|
|
|
test_text,
|
2020-07-27 18:40:02 +02:00
|
|
|
check_public_PEM, dump_pem,
|
|
|
|
OSSL_SERIALIZER_PUBKEY_TO_PEM_PQ,
|
|
|
|
0);
|
|
|
|
}
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
static int check_public_MSBLOB(const char *type,
|
|
|
|
const void *data, size_t data_len)
|
|
|
|
{
|
|
|
|
const unsigned char *datap = data;
|
|
|
|
EVP_PKEY *pkey = b2i_PublicKey(&datap, data_len);
|
|
|
|
int ok = TEST_ptr(pkey);
|
|
|
|
|
|
|
|
EVP_PKEY_free(pkey);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_public_via_MSBLOB(const char *type, EVP_PKEY *key)
|
|
|
|
{
|
|
|
|
return test_serialize_deserialize(type, key, NULL, NULL,
|
|
|
|
serialize_public_EVP_PKEY_MSBLOB,
|
|
|
|
deserialize_EVP_PKEY_prov,
|
|
|
|
test_mem,
|
|
|
|
check_public_MSBLOB, dump_der,
|
|
|
|
NULL, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
#define KEYS(KEYTYPE) \
|
|
|
|
static EVP_PKEY *key_##KEYTYPE = NULL; \
|
|
|
|
static EVP_PKEY *legacy_key_##KEYTYPE = NULL
|
|
|
|
#define MAKE_KEYS(KEYTYPE, KEYTYPEstr, params) \
|
|
|
|
ok = ok \
|
|
|
|
&& TEST_ptr(key_##KEYTYPE = \
|
|
|
|
make_key(KEYTYPEstr, NULL, params, 0)) \
|
|
|
|
&& TEST_ptr(legacy_key_##KEYTYPE = \
|
|
|
|
make_key(KEYTYPEstr, NULL, params, 1))
|
|
|
|
#define FREE_KEYS(KEYTYPE) \
|
|
|
|
EVP_PKEY_free(key_##KEYTYPE); \
|
|
|
|
EVP_PKEY_free(legacy_key_##KEYTYPE)
|
|
|
|
|
|
|
|
#define DOMAIN_KEYS(KEYTYPE) \
|
|
|
|
static EVP_PKEY *template_##KEYTYPE = NULL; \
|
|
|
|
static EVP_PKEY *key_##KEYTYPE = NULL; \
|
|
|
|
static EVP_PKEY *legacy_key_##KEYTYPE = NULL
|
|
|
|
#define MAKE_DOMAIN_KEYS(KEYTYPE, KEYTYPEstr, params) \
|
|
|
|
ok = ok \
|
|
|
|
&& TEST_ptr(template_##KEYTYPE = \
|
|
|
|
make_template(KEYTYPEstr, params)) \
|
|
|
|
&& TEST_ptr(key_##KEYTYPE = \
|
|
|
|
make_key(KEYTYPEstr, template_##KEYTYPE, NULL, 0)) \
|
|
|
|
&& TEST_ptr(legacy_key_##KEYTYPE = \
|
|
|
|
make_key(KEYTYPEstr, template_##KEYTYPE, NULL, 1))
|
|
|
|
#define FREE_DOMAIN_KEYS(KEYTYPE) \
|
|
|
|
EVP_PKEY_free(template_##KEYTYPE); \
|
|
|
|
EVP_PKEY_free(key_##KEYTYPE); \
|
|
|
|
EVP_PKEY_free(legacy_key_##KEYTYPE)
|
|
|
|
|
|
|
|
#define IMPLEMENT_TEST_SUITE(KEYTYPE, KEYTYPEstr) \
|
|
|
|
static int test_unprotected_##KEYTYPE##_via_DER(void) \
|
|
|
|
{ \
|
|
|
|
return test_unprotected_via_DER(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_unprotected_##KEYTYPE##_via_PEM(void) \
|
|
|
|
{ \
|
|
|
|
return test_unprotected_via_PEM(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_unprotected_##KEYTYPE##_via_legacy_PEM(void) \
|
|
|
|
{ \
|
|
|
|
return test_unprotected_via_legacy_PEM(KEYTYPEstr, \
|
|
|
|
legacy_key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_protected_##KEYTYPE##_via_DER(void) \
|
|
|
|
{ \
|
|
|
|
return test_protected_via_DER(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_protected_##KEYTYPE##_via_PEM(void) \
|
|
|
|
{ \
|
|
|
|
return test_protected_via_PEM(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_protected_##KEYTYPE##_via_legacy_PEM(void) \
|
|
|
|
{ \
|
|
|
|
return test_protected_via_legacy_PEM(KEYTYPEstr, \
|
|
|
|
legacy_key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_public_##KEYTYPE##_via_DER(void) \
|
|
|
|
{ \
|
|
|
|
return test_public_via_DER(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_public_##KEYTYPE##_via_PEM(void) \
|
|
|
|
{ \
|
|
|
|
return test_public_via_PEM(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ADD_TEST_SUITE(KEYTYPE) \
|
|
|
|
ADD_TEST(test_unprotected_##KEYTYPE##_via_DER); \
|
|
|
|
ADD_TEST(test_unprotected_##KEYTYPE##_via_PEM); \
|
|
|
|
ADD_TEST(test_unprotected_##KEYTYPE##_via_legacy_PEM); \
|
|
|
|
ADD_TEST(test_protected_##KEYTYPE##_via_DER); \
|
|
|
|
ADD_TEST(test_protected_##KEYTYPE##_via_PEM); \
|
|
|
|
ADD_TEST(test_protected_##KEYTYPE##_via_legacy_PEM); \
|
|
|
|
ADD_TEST(test_public_##KEYTYPE##_via_DER); \
|
|
|
|
ADD_TEST(test_public_##KEYTYPE##_via_PEM)
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
# define IMPLEMENT_TEST_SUITE_MSBLOB(KEYTYPE, KEYTYPEstr) \
|
|
|
|
static int test_unprotected_##KEYTYPE##_via_MSBLOB(void) \
|
|
|
|
{ \
|
|
|
|
return test_unprotected_via_MSBLOB(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_public_##KEYTYPE##_via_MSBLOB(void) \
|
|
|
|
{ \
|
|
|
|
return test_public_via_MSBLOB(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define ADD_TEST_SUITE_MSBLOB(KEYTYPE) \
|
|
|
|
ADD_TEST(test_unprotected_##KEYTYPE##_via_MSBLOB); \
|
|
|
|
ADD_TEST(test_public_##KEYTYPE##_via_MSBLOB)
|
|
|
|
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
# define IMPLEMENT_TEST_SUITE_PVK(KEYTYPE, KEYTYPEstr) \
|
|
|
|
static int test_unprotected_##KEYTYPE##_via_PVK(void) \
|
|
|
|
{ \
|
|
|
|
return test_unprotected_via_PVK(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
} \
|
|
|
|
static int test_protected_##KEYTYPE##_via_PVK(void) \
|
|
|
|
{ \
|
|
|
|
return test_protected_via_PVK(KEYTYPEstr, key_##KEYTYPE); \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define ADD_TEST_SUITE_PVK(KEYTYPE) \
|
|
|
|
ADD_TEST(test_unprotected_##KEYTYPE##_via_PVK); \
|
|
|
|
ADD_TEST(test_protected_##KEYTYPE##_via_PVK)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
DOMAIN_KEYS(DH);
|
|
|
|
IMPLEMENT_TEST_SUITE(DH, "DH")
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
DOMAIN_KEYS(DSA);
|
|
|
|
IMPLEMENT_TEST_SUITE(DSA, "DSA")
|
2020-08-03 21:10:19 +02:00
|
|
|
IMPLEMENT_TEST_SUITE_MSBLOB(DSA, "DSA")
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
IMPLEMENT_TEST_SUITE_PVK(DSA, "DSA")
|
|
|
|
# endif
|
2020-07-27 18:40:05 +02:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
DOMAIN_KEYS(EC);
|
|
|
|
IMPLEMENT_TEST_SUITE(EC, "EC")
|
|
|
|
KEYS(ED25519);
|
|
|
|
IMPLEMENT_TEST_SUITE(ED25519, "ED25519")
|
|
|
|
KEYS(ED448);
|
|
|
|
IMPLEMENT_TEST_SUITE(ED448, "ED448")
|
|
|
|
KEYS(X25519);
|
|
|
|
IMPLEMENT_TEST_SUITE(X25519, "X25519")
|
|
|
|
KEYS(X448);
|
|
|
|
IMPLEMENT_TEST_SUITE(X448, "X448")
|
|
|
|
#endif
|
|
|
|
KEYS(RSA);
|
|
|
|
IMPLEMENT_TEST_SUITE(RSA, "RSA")
|
|
|
|
KEYS(RSA_PSS);
|
|
|
|
IMPLEMENT_TEST_SUITE(RSA_PSS, "RSA-PSS")
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
IMPLEMENT_TEST_SUITE_MSBLOB(RSA, "RSA")
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
IMPLEMENT_TEST_SUITE_PVK(RSA, "RSA")
|
|
|
|
# endif
|
|
|
|
#endif
|
2020-07-27 18:40:02 +02:00
|
|
|
|
2020-07-09 19:10:39 +02:00
|
|
|
int setup_tests(void)
|
|
|
|
{
|
2020-07-27 18:40:05 +02:00
|
|
|
int ok = 1;
|
|
|
|
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
static size_t qbits = 160; /* PVK only tolerates 160 Q bits */
|
|
|
|
static size_t pbits = 1024; /* With 160 Q bits, we MUST use 1024 P bits */
|
|
|
|
OSSL_PARAM DSA_params[] = {
|
|
|
|
OSSL_PARAM_size_t("pbits", &pbits),
|
|
|
|
OSSL_PARAM_size_t("qbits", &qbits),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
static char groupname[] = "prime256v1";
|
|
|
|
OSSL_PARAM EC_params[] = {
|
|
|
|
OSSL_PARAM_utf8_string("group", groupname, sizeof(groupname) - 1),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* 7 is the default magic number */
|
|
|
|
static unsigned int rsapss_min_saltlen = 7;
|
|
|
|
OSSL_PARAM RSA_PSS_params[] = {
|
|
|
|
OSSL_PARAM_uint("saltlen", &rsapss_min_saltlen),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2020-07-20 10:47:59 +02:00
|
|
|
TEST_info("Generating keys...");
|
2020-07-27 18:40:05 +02:00
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
MAKE_DOMAIN_KEYS(DH, "DH", NULL);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
2020-08-03 21:10:19 +02:00
|
|
|
MAKE_DOMAIN_KEYS(DSA, "DSA", DSA_params);
|
2020-07-27 18:40:05 +02:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
MAKE_DOMAIN_KEYS(EC, "EC", EC_params);
|
|
|
|
MAKE_KEYS(ED25519, "ED25519", NULL);
|
|
|
|
MAKE_KEYS(ED448, "ED448", NULL);
|
|
|
|
MAKE_KEYS(X25519, "X25519", NULL);
|
|
|
|
MAKE_KEYS(X448, "X448", NULL);
|
|
|
|
#endif
|
|
|
|
MAKE_KEYS(RSA, "RSA", NULL);
|
|
|
|
MAKE_KEYS(RSA_PSS, "RSA-PSS", RSA_PSS_params);
|
2020-07-09 19:10:39 +02:00
|
|
|
TEST_info("Generating key... done");
|
|
|
|
|
2020-07-27 18:40:05 +02:00
|
|
|
if (ok) {
|
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
ADD_TEST_SUITE(DH);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
ADD_TEST_SUITE(DSA);
|
2020-08-03 21:10:19 +02:00
|
|
|
ADD_TEST_SUITE_MSBLOB(DSA);
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
ADD_TEST_SUITE_PVK(DSA);
|
|
|
|
# endif
|
2020-07-27 18:40:05 +02:00
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
ADD_TEST_SUITE(EC);
|
|
|
|
ADD_TEST_SUITE(ED25519);
|
|
|
|
ADD_TEST_SUITE(ED448);
|
|
|
|
ADD_TEST_SUITE(X25519);
|
|
|
|
ADD_TEST_SUITE(X448);
|
|
|
|
#endif
|
|
|
|
ADD_TEST_SUITE(RSA);
|
|
|
|
ADD_TEST_SUITE(RSA_PSS);
|
2020-08-03 21:10:19 +02:00
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
ADD_TEST_SUITE_MSBLOB(RSA);
|
|
|
|
# ifndef OPENSSL_NO_RC4
|
|
|
|
ADD_TEST_SUITE_PVK(RSA);
|
|
|
|
# endif
|
|
|
|
#endif
|
2020-07-27 18:40:05 +02:00
|
|
|
}
|
2020-07-09 19:10:39 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2020-07-27 18:40:05 +02:00
|
|
|
|
|
|
|
void cleanup_tests(void)
|
|
|
|
{
|
|
|
|
#ifndef OPENSSL_NO_DH
|
|
|
|
FREE_DOMAIN_KEYS(DH);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_DSA
|
|
|
|
FREE_DOMAIN_KEYS(DSA);
|
|
|
|
#endif
|
|
|
|
#ifndef OPENSSL_NO_EC
|
|
|
|
FREE_DOMAIN_KEYS(EC);
|
|
|
|
FREE_KEYS(ED25519);
|
|
|
|
FREE_KEYS(ED448);
|
|
|
|
FREE_KEYS(X25519);
|
|
|
|
FREE_KEYS(X448);
|
|
|
|
#endif
|
|
|
|
FREE_KEYS(RSA);
|
|
|
|
FREE_KEYS(RSA_PSS);
|
|
|
|
}
|