12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316 |
- /*
- * 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
- */
- #include <string.h>
- #include <openssl/core_dispatch.h>
- #include <openssl/evp.h>
- #include <openssl/pem.h>
- #include <openssl/rsa.h>
- #include <openssl/x509.h>
- #include <openssl/core_names.h>
- #include <openssl/params.h>
- #include <openssl/param_build.h>
- #include <openssl/encoder.h>
- #include <openssl/decoder.h>
- #include "internal/cryptlib.h" /* ossl_assert */
- #include "crypto/pem.h" /* For PVK and "blob" PEM headers */
- #include "testutil.h"
- #ifndef OPENSSL_NO_EC
- static BN_CTX *bnctx = NULL;
- static OSSL_PARAM_BLD *bld_prime_nc = NULL;
- static OSSL_PARAM_BLD *bld_prime = NULL;
- static OSSL_PARAM *ec_explicit_prime_params_nc = NULL;
- static OSSL_PARAM *ec_explicit_prime_params_explicit = NULL;
- # ifndef OPENSSL_NO_EC2M
- static OSSL_PARAM_BLD *bld_tri_nc = NULL;
- static OSSL_PARAM_BLD *bld_tri = NULL;
- static OSSL_PARAM *ec_explicit_tri_params_nc = NULL;
- static OSSL_PARAM *ec_explicit_tri_params_explicit = NULL;
- # endif
- #endif
- 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;
- }
- static EVP_PKEY *make_key(const char *type, EVP_PKEY *template,
- OSSL_PARAM *genparams)
- {
- EVP_PKEY *pkey = NULL;
- EVP_PKEY_CTX *ctx =
- template != NULL
- ? EVP_PKEY_CTX_new(template, NULL)
- : 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_keygen_init(ctx) > 0
- && (genparams == NULL
- || EVP_PKEY_CTX_set_params(ctx, genparams) > 0)
- && EVP_PKEY_keygen(ctx, &pkey) > 0);
- EVP_PKEY_CTX_free(ctx);
- return pkey;
- }
- /* Main test driver */
- /*
- * 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).
- */
- typedef int (encoder)(void **encoded, long *encoded_len,
- void *object, int selection,
- const char *output_type, const char *output_structure,
- const char *pass, const char *pcipher);
- typedef int (decoder)(void **object, void *encoded, long encoded_len,
- const char *keytype, const char *input_type,
- int selection, const char *pass);
- typedef int (tester)(const void *data1, size_t data1_len,
- const void *data2, size_t data2_len);
- typedef int (checker)(const char *type, const void *data, size_t data_len);
- typedef void (dumper)(const char *label, const void *data, size_t data_len);
- #define FLAG_DECODE_WITH_TYPE 0x0001
- static int test_encode_decode(const char *type, EVP_PKEY *pkey,
- int selection, const char *output_type,
- const char *output_structure,
- const char *pass, const char *pcipher,
- encoder *encode_cb, decoder *decode_cb,
- tester *test_cb, checker *check_cb,
- dumper *dump_cb, int flags)
- {
- void *encoded = NULL;
- long encoded_len = 0;
- EVP_PKEY *pkey2 = NULL;
- void *encoded2 = NULL;
- long encoded2_len = 0;
- int ok = 0;
- /*
- * Encode |pkey|, decode the result into |pkey2|, and finish off by
- * encoding |pkey2| as well. That last encoding is for checking and
- * dumping purposes.
- */
- if (!TEST_true(encode_cb(&encoded, &encoded_len, pkey, selection,
- output_type, output_structure, pass, pcipher))
- || !TEST_true(check_cb(type, encoded, encoded_len))
- || !TEST_true(decode_cb((void **)&pkey2, encoded, encoded_len,
- (flags & FLAG_DECODE_WITH_TYPE ? type : NULL),
- output_type, selection, pass))
- || !TEST_true(encode_cb(&encoded2, &encoded2_len, pkey2, selection,
- output_type, output_structure, pass, pcipher)))
- goto end;
- if (selection == OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) {
- if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey2), 1))
- goto end;
- } else {
- if (!TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1))
- goto end;
- }
- /*
- * Double check the encoding, but only for unprotected keys,
- * as protected keys have a random component, which makes the output
- * differ.
- */
- if ((pass == NULL && pcipher == NULL)
- && !test_cb(encoded, encoded_len, encoded2, encoded2_len))
- goto end;
- ok = 1;
- end:
- if (!ok) {
- if (encoded != NULL && encoded_len != 0)
- dump_cb("|pkey| encoded", encoded, encoded_len);
- if (encoded2 != NULL && encoded2_len != 0)
- dump_cb("|pkey2| encoded", encoded2, encoded2_len);
- }
- OPENSSL_free(encoded);
- OPENSSL_free(encoded2);
- EVP_PKEY_free(pkey2);
- return ok;
- }
- /* Encoding and decoding methods */
- static int encode_EVP_PKEY_prov(void **encoded, long *encoded_len,
- void *object, int selection,
- const char *output_type,
- const char *output_structure,
- const char *pass, const char *pcipher)
- {
- EVP_PKEY *pkey = object;
- OSSL_ENCODER_CTX *ectx = NULL;
- BIO *mem_ser = NULL;
- BUF_MEM *mem_buf = NULL;
- const unsigned char *upass = (const unsigned char *)pass;
- int ok = 0;
- if (!TEST_ptr(ectx = OSSL_ENCODER_CTX_new_by_EVP_PKEY(pkey, selection,
- output_type,
- output_structure,
- NULL, NULL))
- || !TEST_int_gt(OSSL_ENCODER_CTX_get_num_encoders(ectx), 0)
- || (pass != NULL
- && !TEST_true(OSSL_ENCODER_CTX_set_passphrase(ectx, upass,
- strlen(pass))))
- || (pcipher != NULL
- && !TEST_true(OSSL_ENCODER_CTX_set_cipher(ectx, pcipher, NULL)))
- || !TEST_ptr(mem_ser = BIO_new(BIO_s_mem()))
- || !TEST_true(OSSL_ENCODER_to_bio(ectx, mem_ser))
- || !TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
- || !TEST_ptr(*encoded = mem_buf->data)
- || !TEST_long_gt(*encoded_len = mem_buf->length, 0))
- goto end;
- /* Detach the encoded output */
- mem_buf->data = NULL;
- mem_buf->length = 0;
- ok = 1;
- end:
- BIO_free(mem_ser);
- OSSL_ENCODER_CTX_free(ectx);
- return ok;
- }
- static int decode_EVP_PKEY_prov(void **object, void *encoded, long encoded_len,
- const char *keytype, const char *input_type,
- int selection, const char *pass)
- {
- EVP_PKEY *pkey = NULL, *testpkey = NULL;
- OSSL_DECODER_CTX *dctx = NULL;
- BIO *encoded_bio = NULL;
- const unsigned char *upass = (const unsigned char *)pass;
- int ok = 0;
- int i;
- const char *badtype;
- if (strcmp(input_type, "DER") == 0)
- badtype = "PEM";
- else
- badtype = "DER";
- if (!TEST_ptr(encoded_bio = BIO_new_mem_buf(encoded, encoded_len)))
- goto end;
- /*
- * We attempt the decode 3 times. The first time we provide the expected
- * starting input type. The second time we provide NULL for the starting
- * type. The third time we provide a bad starting input type.
- * The bad starting input type should fail. The other two should succeed
- * and produce the same result.
- */
- for (i = 0; i < 3; i++) {
- const char *testtype = (i == 0) ? input_type
- : ((i == 1) ? NULL : badtype);
- if (!TEST_ptr(dctx = OSSL_DECODER_CTX_new_by_EVP_PKEY(&testpkey,
- testtype,
- NULL,
- keytype,
- selection,
- NULL, NULL))
- || (pass != NULL
- && !OSSL_DECODER_CTX_set_passphrase(dctx, upass, strlen(pass)))
- || !TEST_int_gt(BIO_reset(encoded_bio), 0)
- /* We expect to fail when using a bad input type */
- || !TEST_int_eq(OSSL_DECODER_from_bio(dctx, encoded_bio),
- (i == 2) ? 0 : 1))
- goto end;
- OSSL_DECODER_CTX_free(dctx);
- dctx = NULL;
- if (i == 0) {
- pkey = testpkey;
- testpkey = NULL;
- } else if (i == 1) {
- if (selection == OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) {
- if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, testpkey), 1))
- goto end;
- } else {
- if (!TEST_int_eq(EVP_PKEY_eq(pkey, testpkey), 1))
- goto end;
- }
- }
- }
- ok = 1;
- *object = pkey;
- pkey = NULL;
- end:
- EVP_PKEY_free(pkey);
- EVP_PKEY_free(testpkey);
- BIO_free(encoded_bio);
- OSSL_DECODER_CTX_free(dctx);
- return ok;
- }
- static int encode_EVP_PKEY_legacy_PEM(void **encoded, long *encoded_len,
- void *object, ossl_unused int selection,
- ossl_unused const char *output_type,
- ossl_unused const char *output_structure,
- const char *pass, const char *pcipher)
- {
- 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(*encoded = mem_buf->data)
- || !TEST_long_gt(*encoded_len = mem_buf->length, 0))
- goto end;
- /* Detach the encoded output */
- mem_buf->data = NULL;
- mem_buf->length = 0;
- ok = 1;
- end:
- BIO_free(mem_ser);
- EVP_CIPHER_free(cipher);
- return ok;
- }
- #ifndef OPENSSL_NO_DSA
- static int encode_EVP_PKEY_MSBLOB(void **encoded, long *encoded_len,
- void *object, int selection,
- ossl_unused const char *output_type,
- ossl_unused const char *output_structure,
- ossl_unused const char *pass,
- ossl_unused const char *pcipher)
- {
- 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())))
- goto end;
- if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) {
- if (!TEST_int_ge(i2b_PrivateKey_bio(mem_ser, pkey), 0))
- goto end;
- } else {
- if (!TEST_int_ge(i2b_PublicKey_bio(mem_ser, pkey), 0))
- goto end;
- }
- if (!TEST_true(BIO_get_mem_ptr(mem_ser, &mem_buf) > 0)
- || !TEST_ptr(*encoded = mem_buf->data)
- || !TEST_long_gt(*encoded_len = mem_buf->length, 0))
- goto end;
- /* Detach the encoded 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 encode_EVP_PKEY_PVK(void **encoded, long *encoded_len,
- void *object, int selection,
- ossl_unused const char *output_type,
- ossl_unused const char *output_structure,
- const char *pass,
- ossl_unused const char *pcipher)
- {
- EVP_PKEY *pkey = object;
- BIO *mem_ser = NULL;
- BUF_MEM *mem_buf = NULL;
- int enc = (pass != NULL);
- int ok = 0;
- if (!TEST_true(ossl_assert((selection
- & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0))
- || !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(*encoded = mem_buf->data)
- || !TEST_long_gt(*encoded_len = mem_buf->length, 0))
- goto end;
- /* Detach the encoded output */
- mem_buf->data = NULL;
- mem_buf->length = 0;
- ok = 1;
- end:
- BIO_free(mem_ser);
- return ok;
- }
- # endif
- #endif
- 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);
- }
- /* Test cases and their dumpers / checkers */
- static void collect_name(const char *name, void *arg)
- {
- char **namelist = arg;
- char *new_namelist;
- size_t space;
- space = strlen(name);
- if (*namelist != NULL)
- space += strlen(*namelist) + 2 /* for comma and space */;
- space++; /* for terminating null byte */
- new_namelist = OPENSSL_realloc(*namelist, space);
- if (new_namelist == NULL)
- return;
- if (*namelist != NULL) {
- strcat(new_namelist, ", ");
- strcat(new_namelist, name);
- } else {
- strcpy(new_namelist, name);
- }
- *namelist = new_namelist;
- }
- 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);
- }
- static int check_unprotected_PKCS8_DER(const char *type,
- const void *data, size_t data_len)
- {
- 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);
- char *namelist = NULL;
- if (TEST_ptr(pkey)) {
- if (!(ok = TEST_true(EVP_PKEY_is_a(pkey, type)))) {
- EVP_PKEY_typenames_do_all(pkey, collect_name, &namelist);
- if (namelist != NULL)
- TEST_note("%s isn't any of %s", type, namelist);
- OPENSSL_free(namelist);
- }
- EVP_PKEY_free(pkey);
- }
- }
- PKCS8_PRIV_KEY_INFO_free(p8inf);
- return ok;
- }
- static int test_unprotected_via_DER(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "DER", "pkcs8", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_mem, check_unprotected_PKCS8_DER,
- dump_der, 0);
- }
- static int check_unprotected_PKCS8_PEM(const char *type,
- const void *data, size_t data_len)
- {
- static const char expected_pem_header[] =
- "-----BEGIN " PEM_STRING_PKCS8INF "-----";
- return TEST_strn_eq(data, expected_pem_header,
- sizeof(expected_pem_header) - 1);
- }
- static int test_unprotected_via_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key, OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "pkcs8", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_text, check_unprotected_PKCS8_PEM,
- dump_pem, 0);
- }
- static int check_params_DER(const char *type, const void *data, size_t data_len)
- {
- const unsigned char *datap = data;
- int ok = 0;
- int itype = NID_undef;
- EVP_PKEY *pkey = NULL;
- if (strcmp(type, "DH") == 0)
- itype = EVP_PKEY_DH;
- else if (strcmp(type, "X9.42 DH") == 0)
- itype = EVP_PKEY_DHX;
- else if (strcmp(type, "DSA") == 0)
- itype = EVP_PKEY_DSA;
- else if (strcmp(type, "EC") == 0)
- itype = EVP_PKEY_EC;
- if (itype != NID_undef) {
- pkey = d2i_KeyParams(itype, NULL, &datap, data_len);
- ok = (pkey != NULL);
- EVP_PKEY_free(pkey);
- }
- return ok;
- }
- static int check_params_PEM(const char *type,
- const void *data, size_t data_len)
- {
- static char expected_pem_header[80];
- return
- TEST_int_gt(BIO_snprintf(expected_pem_header,
- sizeof(expected_pem_header),
- "-----BEGIN %s PARAMETERS-----", type), 0)
- && TEST_strn_eq(data, expected_pem_header, strlen(expected_pem_header));
- }
- static int test_params_via_DER(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key, OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "DER", "type-specific", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_mem, check_params_DER,
- dump_der, FLAG_DECODE_WITH_TYPE);
- }
- static int test_params_via_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key, OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "type-specific", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_text, check_params_PEM,
- dump_pem, 0);
- }
- static int check_unprotected_legacy_PEM(const char *type,
- const void *data, size_t data_len)
- {
- static char expected_pem_header[80];
- return
- TEST_int_gt(BIO_snprintf(expected_pem_header,
- sizeof(expected_pem_header),
- "-----BEGIN %s PRIVATE KEY-----", type), 0)
- && TEST_strn_eq(data, expected_pem_header, strlen(expected_pem_header));
- }
- static int test_unprotected_via_legacy_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "type-specific", NULL, NULL,
- encode_EVP_PKEY_legacy_PEM, decode_EVP_PKEY_prov,
- test_text, check_unprotected_legacy_PEM,
- dump_pem, 0);
- }
- #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_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "MSBLOB", NULL, NULL, NULL,
- encode_EVP_PKEY_MSBLOB, decode_EVP_PKEY_prov,
- test_mem, check_MSBLOB,
- dump_der, 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_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PVK", NULL, NULL, NULL,
- encode_EVP_PKEY_PVK, decode_EVP_PKEY_prov,
- test_mem, check_PVK,
- dump_der, 0);
- }
- # endif
- #endif
- static const char *pass_cipher = "AES-256-CBC";
- static const char *pass = "the holy handgrenade of antioch";
- static int check_protected_PKCS8_DER(const char *type,
- 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;
- }
- static int test_protected_via_DER(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "DER", "pkcs8", pass, pass_cipher,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_mem, check_protected_PKCS8_DER,
- dump_der, 0);
- }
- static int check_protected_PKCS8_PEM(const char *type,
- const void *data, size_t data_len)
- {
- static const char expected_pem_header[] =
- "-----BEGIN " PEM_STRING_PKCS8 "-----";
- return TEST_strn_eq(data, expected_pem_header,
- sizeof(expected_pem_header) - 1);
- }
- static int test_protected_via_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "pkcs8", pass, pass_cipher,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_text, check_protected_PKCS8_PEM,
- dump_pem, 0);
- }
- static int check_protected_legacy_PEM(const char *type,
- const void *data, size_t data_len)
- {
- static char expected_pem_header[80];
- return
- TEST_int_gt(BIO_snprintf(expected_pem_header,
- sizeof(expected_pem_header),
- "-----BEGIN %s PRIVATE KEY-----", type), 0)
- && TEST_strn_eq(data, expected_pem_header, strlen(expected_pem_header))
- && TEST_ptr(strstr(data, "\nDEK-Info: "));
- }
- static int test_protected_via_legacy_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "type-specific", pass, pass_cipher,
- encode_EVP_PKEY_legacy_PEM, decode_EVP_PKEY_prov,
- test_text, check_protected_legacy_PEM,
- dump_pem, 0);
- }
- #if !defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_RC4)
- static int test_protected_via_PVK(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_KEYPAIR
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PVK", NULL, pass, NULL,
- encode_EVP_PKEY_PVK, decode_EVP_PKEY_prov,
- test_mem, check_PVK, dump_der, 0);
- }
- #endif
- static int check_public_DER(const char *type, const void *data, size_t data_len)
- {
- const unsigned char *datap = data;
- EVP_PKEY *pkey = d2i_PUBKEY(NULL, &datap, data_len);
- int ok = (TEST_ptr(pkey) && TEST_true(EVP_PKEY_is_a(pkey, type)));
- EVP_PKEY_free(pkey);
- return ok;
- }
- static int test_public_via_DER(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_PUBLIC_KEY
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "DER", "SubjectPublicKeyInfo", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_mem, check_public_DER, dump_der, 0);
- }
- static int check_public_PEM(const char *type, const void *data, size_t data_len)
- {
- static const char expected_pem_header[] =
- "-----BEGIN " PEM_STRING_PUBLIC "-----";
- return
- TEST_strn_eq(data, expected_pem_header,
- sizeof(expected_pem_header) - 1);
- }
- static int test_public_via_PEM(const char *type, EVP_PKEY *key)
- {
- return test_encode_decode(type, key,
- OSSL_KEYMGMT_SELECT_PUBLIC_KEY
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "PEM", "SubjectPublicKeyInfo", NULL, NULL,
- encode_EVP_PKEY_prov, decode_EVP_PKEY_prov,
- test_text, check_public_PEM, dump_pem, 0);
- }
- #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_encode_decode(type, key, OSSL_KEYMGMT_SELECT_PUBLIC_KEY
- | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
- "MSBLOB", NULL, NULL, NULL,
- encode_EVP_PKEY_MSBLOB, decode_EVP_PKEY_prov,
- test_mem, check_public_MSBLOB, dump_der, 0);
- }
- #endif
- #define KEYS(KEYTYPE) \
- static EVP_PKEY *key_##KEYTYPE = NULL
- #define MAKE_KEYS(KEYTYPE, KEYTYPEstr, params) \
- ok = ok \
- && TEST_ptr(key_##KEYTYPE = make_key(KEYTYPEstr, NULL, params))
- #define FREE_KEYS(KEYTYPE) \
- EVP_PKEY_free(key_##KEYTYPE); \
- #define DOMAIN_KEYS(KEYTYPE) \
- static EVP_PKEY *template_##KEYTYPE = NULL; \
- static EVP_PKEY *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))
- #define FREE_DOMAIN_KEYS(KEYTYPE) \
- EVP_PKEY_free(template_##KEYTYPE); \
- EVP_PKEY_free(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_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_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_protected_##KEYTYPE##_via_DER); \
- ADD_TEST(test_protected_##KEYTYPE##_via_PEM); \
- ADD_TEST(test_public_##KEYTYPE##_via_DER); \
- ADD_TEST(test_public_##KEYTYPE##_via_PEM)
- #define IMPLEMENT_TEST_SUITE_PARAMS(KEYTYPE, KEYTYPEstr) \
- static int test_params_##KEYTYPE##_via_DER(void) \
- { \
- return test_params_via_DER(KEYTYPEstr, key_##KEYTYPE); \
- } \
- static int test_params_##KEYTYPE##_via_PEM(void) \
- { \
- return test_params_via_PEM(KEYTYPEstr, key_##KEYTYPE); \
- }
- #define ADD_TEST_SUITE_PARAMS(KEYTYPE) \
- ADD_TEST(test_params_##KEYTYPE##_via_DER); \
- ADD_TEST(test_params_##KEYTYPE##_via_PEM)
- #define IMPLEMENT_TEST_SUITE_LEGACY(KEYTYPE, KEYTYPEstr) \
- static int test_unprotected_##KEYTYPE##_via_legacy_PEM(void) \
- { \
- return \
- test_unprotected_via_legacy_PEM(KEYTYPEstr, key_##KEYTYPE); \
- } \
- static int test_protected_##KEYTYPE##_via_legacy_PEM(void) \
- { \
- return \
- test_protected_via_legacy_PEM(KEYTYPEstr, key_##KEYTYPE); \
- }
- #define ADD_TEST_SUITE_LEGACY(KEYTYPE) \
- ADD_TEST(test_unprotected_##KEYTYPE##_via_legacy_PEM); \
- ADD_TEST(test_protected_##KEYTYPE##_via_legacy_PEM)
- #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
- #ifndef OPENSSL_NO_DH
- DOMAIN_KEYS(DH);
- IMPLEMENT_TEST_SUITE(DH, "DH")
- IMPLEMENT_TEST_SUITE_PARAMS(DH, "DH")
- DOMAIN_KEYS(DHX);
- IMPLEMENT_TEST_SUITE(DHX, "X9.42 DH")
- IMPLEMENT_TEST_SUITE_PARAMS(DHX, "X9.42 DH")
- /*
- * DH has no support for PEM_write_bio_PrivateKey_traditional(),
- * so no legacy tests.
- */
- #endif
- #ifndef OPENSSL_NO_DSA
- DOMAIN_KEYS(DSA);
- IMPLEMENT_TEST_SUITE(DSA, "DSA")
- IMPLEMENT_TEST_SUITE_PARAMS(DSA, "DSA")
- IMPLEMENT_TEST_SUITE_LEGACY(DSA, "DSA")
- IMPLEMENT_TEST_SUITE_MSBLOB(DSA, "DSA")
- # ifndef OPENSSL_NO_RC4
- IMPLEMENT_TEST_SUITE_PVK(DSA, "DSA")
- # endif
- #endif
- #ifndef OPENSSL_NO_EC
- DOMAIN_KEYS(EC);
- IMPLEMENT_TEST_SUITE(EC, "EC")
- IMPLEMENT_TEST_SUITE_PARAMS(EC, "EC")
- IMPLEMENT_TEST_SUITE_LEGACY(EC, "EC")
- DOMAIN_KEYS(ECExplicitPrimeNamedCurve);
- IMPLEMENT_TEST_SUITE(ECExplicitPrimeNamedCurve, "EC")
- IMPLEMENT_TEST_SUITE_LEGACY(ECExplicitPrimeNamedCurve, "EC")
- DOMAIN_KEYS(ECExplicitPrime2G);
- IMPLEMENT_TEST_SUITE(ECExplicitPrime2G, "EC")
- IMPLEMENT_TEST_SUITE_LEGACY(ECExplicitPrime2G, "EC")
- # ifndef OPENSSL_NO_EC2M
- DOMAIN_KEYS(ECExplicitTriNamedCurve);
- IMPLEMENT_TEST_SUITE(ECExplicitTriNamedCurve, "EC")
- IMPLEMENT_TEST_SUITE_LEGACY(ECExplicitTriNamedCurve, "EC")
- DOMAIN_KEYS(ECExplicitTri2G);
- IMPLEMENT_TEST_SUITE(ECExplicitTri2G, "EC")
- IMPLEMENT_TEST_SUITE_LEGACY(ECExplicitTri2G, "EC")
- # endif
- 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")
- /*
- * ED25519, ED448, X25519 and X448 have no support for
- * PEM_write_bio_PrivateKey_traditional(), so no legacy tests.
- */
- #endif
- KEYS(RSA);
- IMPLEMENT_TEST_SUITE(RSA, "RSA")
- IMPLEMENT_TEST_SUITE_LEGACY(RSA, "RSA")
- KEYS(RSA_PSS);
- IMPLEMENT_TEST_SUITE(RSA_PSS, "RSA-PSS")
- /*
- * RSA-PSS has no support for PEM_write_bio_PrivateKey_traditional(),
- * so no legacy tests.
- */
- #ifndef OPENSSL_NO_DSA
- IMPLEMENT_TEST_SUITE_MSBLOB(RSA, "RSA")
- # ifndef OPENSSL_NO_RC4
- IMPLEMENT_TEST_SUITE_PVK(RSA, "RSA")
- # endif
- #endif
- #ifndef OPENSSL_NO_EC
- /* Explicit parameters that match a named curve */
- static int do_create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld,
- const unsigned char *gen,
- size_t gen_len)
- {
- BIGNUM *a, *b, *prime, *order;
- /* Curve prime256v1 */
- static const unsigned char prime_data[] = {
- 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff
- };
- static const unsigned char a_data[] = {
- 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xfc
- };
- static const unsigned char b_data[] = {
- 0x5a, 0xc6, 0x35, 0xd8, 0xaa, 0x3a, 0x93, 0xe7,
- 0xb3, 0xeb, 0xbd, 0x55, 0x76, 0x98, 0x86, 0xbc,
- 0x65, 0x1d, 0x06, 0xb0, 0xcc, 0x53, 0xb0, 0xf6,
- 0x3b, 0xce, 0x3c, 0x3e, 0x27, 0xd2, 0x60, 0x4b
- };
- static const unsigned char seed[] = {
- 0xc4, 0x9d, 0x36, 0x08, 0x86, 0xe7, 0x04, 0x93,
- 0x6a, 0x66, 0x78, 0xe1, 0x13, 0x9d, 0x26, 0xb7,
- 0x81, 0x9f, 0x7e, 0x90
- };
- static const unsigned char order_data[] = {
- 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00,
- 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xbc, 0xe6, 0xfa, 0xad, 0xa7, 0x17, 0x9e,
- 0x84, 0xf3, 0xb9, 0xca, 0xc2, 0xfc, 0x63, 0x25, 0x51
- };
- return TEST_ptr(a = BN_CTX_get(bnctx))
- && TEST_ptr(b = BN_CTX_get(bnctx))
- && TEST_ptr(prime = BN_CTX_get(bnctx))
- && TEST_ptr(order = BN_CTX_get(bnctx))
- && TEST_ptr(BN_bin2bn(prime_data, sizeof(prime_data), prime))
- && TEST_ptr(BN_bin2bn(a_data, sizeof(a_data), a))
- && TEST_ptr(BN_bin2bn(b_data, sizeof(b_data), b))
- && TEST_ptr(BN_bin2bn(order_data, sizeof(order_data), order))
- && TEST_true(OSSL_PARAM_BLD_push_utf8_string(bld,
- OSSL_PKEY_PARAM_EC_FIELD_TYPE, SN_X9_62_prime_field,
- 0))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_P, prime))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_B, b))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld,
- OSSL_PKEY_PARAM_EC_ORDER, order))
- && TEST_true(OSSL_PARAM_BLD_push_octet_string(bld,
- OSSL_PKEY_PARAM_EC_GENERATOR, gen, gen_len))
- && TEST_true(OSSL_PARAM_BLD_push_octet_string(bld,
- OSSL_PKEY_PARAM_EC_SEED, seed, sizeof(seed)))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_COFACTOR,
- BN_value_one()));
- }
- static int create_ec_explicit_prime_params_namedcurve(OSSL_PARAM_BLD *bld)
- {
- static const unsigned char prime256v1_gen[] = {
- 0x04,
- 0x6b, 0x17, 0xd1, 0xf2, 0xe1, 0x2c, 0x42, 0x47,
- 0xf8, 0xbc, 0xe6, 0xe5, 0x63, 0xa4, 0x40, 0xf2,
- 0x77, 0x03, 0x7d, 0x81, 0x2d, 0xeb, 0x33, 0xa0,
- 0xf4, 0xa1, 0x39, 0x45, 0xd8, 0x98, 0xc2, 0x96,
- 0x4f, 0xe3, 0x42, 0xe2, 0xfe, 0x1a, 0x7f, 0x9b,
- 0x8e, 0xe7, 0xeb, 0x4a, 0x7c, 0x0f, 0x9e, 0x16,
- 0x2b, 0xce, 0x33, 0x57, 0x6b, 0x31, 0x5e, 0xce,
- 0xcb, 0xb6, 0x40, 0x68, 0x37, 0xbf, 0x51, 0xf5
- };
- return do_create_ec_explicit_prime_params(bld, prime256v1_gen,
- sizeof(prime256v1_gen));
- }
- static int create_ec_explicit_prime_params(OSSL_PARAM_BLD *bld)
- {
- /* 2G */
- static const unsigned char prime256v1_gen2[] = {
- 0x04,
- 0xe4, 0x97, 0x08, 0xbe, 0x7d, 0xfa, 0xa2, 0x9a,
- 0xa3, 0x12, 0x6f, 0xe4, 0xe7, 0xd0, 0x25, 0xe3,
- 0x4a, 0xc1, 0x03, 0x15, 0x8c, 0xd9, 0x33, 0xc6,
- 0x97, 0x42, 0xf5, 0xdc, 0x97, 0xb9, 0xd7, 0x31,
- 0xe9, 0x7d, 0x74, 0x3d, 0x67, 0x6a, 0x3b, 0x21,
- 0x08, 0x9c, 0x31, 0x73, 0xf8, 0xc1, 0x27, 0xc9,
- 0xd2, 0xa0, 0xa0, 0x83, 0x66, 0xe0, 0xc9, 0xda,
- 0xa8, 0xc6, 0x56, 0x2b, 0x94, 0xb1, 0xae, 0x55
- };
- return do_create_ec_explicit_prime_params(bld, prime256v1_gen2,
- sizeof(prime256v1_gen2));
- }
- # ifndef OPENSSL_NO_EC2M
- static int do_create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld,
- const unsigned char *gen,
- size_t gen_len)
- {
- BIGNUM *a, *b, *poly, *order, *cofactor;
- /* sect233k1 characteristic-two-field tpBasis */
- static const unsigned char poly_data[] = {
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
- };
- static const unsigned char a_data[] = {
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
- };
- static const unsigned char b_data[] = {
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x01
- };
- static const unsigned char order_data[] = {
- 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x06, 0x9D, 0x5B, 0xB9, 0x15, 0xBC, 0xD4, 0x6E, 0xFB,
- 0x1A, 0xD5, 0xF1, 0x73, 0xAB, 0xDF
- };
- static const unsigned char cofactor_data[]= {
- 0x4
- };
- return TEST_ptr(a = BN_CTX_get(bnctx))
- && TEST_ptr(b = BN_CTX_get(bnctx))
- && TEST_ptr(poly = BN_CTX_get(bnctx))
- && TEST_ptr(order = BN_CTX_get(bnctx))
- && TEST_ptr(cofactor = BN_CTX_get(bnctx))
- && TEST_ptr(BN_bin2bn(poly_data, sizeof(poly_data), poly))
- && TEST_ptr(BN_bin2bn(a_data, sizeof(a_data), a))
- && TEST_ptr(BN_bin2bn(b_data, sizeof(b_data), b))
- && TEST_ptr(BN_bin2bn(order_data, sizeof(order_data), order))
- && TEST_ptr(BN_bin2bn(cofactor_data, sizeof(cofactor_data), cofactor))
- && TEST_true(OSSL_PARAM_BLD_push_utf8_string(bld,
- OSSL_PKEY_PARAM_EC_FIELD_TYPE,
- SN_X9_62_characteristic_two_field, 0))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_P, poly))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_A, a))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_B, b))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld,
- OSSL_PKEY_PARAM_EC_ORDER, order))
- && TEST_true(OSSL_PARAM_BLD_push_octet_string(bld,
- OSSL_PKEY_PARAM_EC_GENERATOR, gen, gen_len))
- && TEST_true(OSSL_PARAM_BLD_push_BN(bld, OSSL_PKEY_PARAM_EC_COFACTOR,
- cofactor));
- }
- static int create_ec_explicit_trinomial_params_namedcurve(OSSL_PARAM_BLD *bld)
- {
- static const unsigned char gen[] = {
- 0x04,
- 0x01, 0x72, 0x32, 0xBA, 0x85, 0x3A, 0x7E, 0x73, 0x1A, 0xF1, 0x29, 0xF2,
- 0x2F, 0xF4, 0x14, 0x95, 0x63, 0xA4, 0x19, 0xC2, 0x6B, 0xF5, 0x0A, 0x4C,
- 0x9D, 0x6E, 0xEF, 0xAD, 0x61, 0x26,
- 0x01, 0xDB, 0x53, 0x7D, 0xEC, 0xE8, 0x19, 0xB7, 0xF7, 0x0F, 0x55, 0x5A,
- 0x67, 0xC4, 0x27, 0xA8, 0xCD, 0x9B, 0xF1, 0x8A, 0xEB, 0x9B, 0x56, 0xE0,
- 0xC1, 0x10, 0x56, 0xFA, 0xE6, 0xA3
- };
- return do_create_ec_explicit_trinomial_params(bld, gen, sizeof(gen));
- }
- static int create_ec_explicit_trinomial_params(OSSL_PARAM_BLD *bld)
- {
- static const unsigned char gen2[] = {
- 0x04,
- 0x00, 0xd7, 0xba, 0xd0, 0x26, 0x6c, 0x31, 0x6a, 0x78, 0x76, 0x01, 0xd1,
- 0x32, 0x4b, 0x8f, 0x30, 0x29, 0x2d, 0x78, 0x30, 0xca, 0x43, 0xaa, 0xf0,
- 0xa2, 0x5a, 0xd4, 0x0f, 0xb3, 0xf4,
- 0x00, 0x85, 0x4b, 0x1b, 0x8d, 0x50, 0x10, 0xa5, 0x1c, 0x80, 0xf7, 0x86,
- 0x40, 0x62, 0x4c, 0x87, 0xd1, 0x26, 0x7a, 0x9c, 0x5c, 0xe9, 0x82, 0x29,
- 0xd1, 0x67, 0x70, 0x41, 0xea, 0xcb
- };
- return do_create_ec_explicit_trinomial_params(bld, gen2, sizeof(gen2));
- }
- # endif /* OPENSSL_NO_EC2M */
- #endif /* OPENSSL_NO_EC */
- int setup_tests(void)
- {
- int ok = 1;
- #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
- #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
- };
- #ifndef OPENSSL_NO_EC
- if (!TEST_ptr(bnctx = BN_CTX_new_ex(NULL))
- || !TEST_ptr(bld_prime_nc = OSSL_PARAM_BLD_new())
- || !TEST_ptr(bld_prime = OSSL_PARAM_BLD_new())
- || !create_ec_explicit_prime_params_namedcurve(bld_prime_nc)
- || !create_ec_explicit_prime_params(bld_prime)
- || !TEST_ptr(ec_explicit_prime_params_nc = OSSL_PARAM_BLD_to_param(bld_prime_nc))
- || !TEST_ptr(ec_explicit_prime_params_explicit = OSSL_PARAM_BLD_to_param(bld_prime))
- # ifndef OPENSSL_NO_EC2M
- || !TEST_ptr(bld_tri_nc = OSSL_PARAM_BLD_new())
- || !TEST_ptr(bld_tri = OSSL_PARAM_BLD_new())
- || !create_ec_explicit_trinomial_params_namedcurve(bld_tri_nc)
- || !create_ec_explicit_trinomial_params(bld_tri)
- || !TEST_ptr(ec_explicit_tri_params_nc = OSSL_PARAM_BLD_to_param(bld_tri_nc))
- || !TEST_ptr(ec_explicit_tri_params_explicit = OSSL_PARAM_BLD_to_param(bld_tri))
- # endif
- )
- return 0;
- #endif
- TEST_info("Generating keys...");
- #ifndef OPENSSL_NO_DH
- MAKE_DOMAIN_KEYS(DH, "DH", NULL);
- MAKE_DOMAIN_KEYS(DHX, "X9.42 DH", NULL);
- #endif
- #ifndef OPENSSL_NO_DSA
- MAKE_DOMAIN_KEYS(DSA, "DSA", DSA_params);
- #endif
- #ifndef OPENSSL_NO_EC
- MAKE_DOMAIN_KEYS(EC, "EC", EC_params);
- MAKE_DOMAIN_KEYS(ECExplicitPrimeNamedCurve, "EC", ec_explicit_prime_params_nc);
- MAKE_DOMAIN_KEYS(ECExplicitPrime2G, "EC", ec_explicit_prime_params_explicit);
- # ifndef OPENSSL_NO_EC2M
- MAKE_DOMAIN_KEYS(ECExplicitTriNamedCurve, "EC", ec_explicit_tri_params_nc);
- MAKE_DOMAIN_KEYS(ECExplicitTri2G, "EC", ec_explicit_tri_params_explicit);
- # endif
- 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);
- TEST_info("Generating key... done");
- if (ok) {
- #ifndef OPENSSL_NO_DH
- ADD_TEST_SUITE(DH);
- ADD_TEST_SUITE_PARAMS(DH);
- ADD_TEST_SUITE(DHX);
- ADD_TEST_SUITE_PARAMS(DHX);
- /*
- * DH has no support for PEM_write_bio_PrivateKey_traditional(),
- * so no legacy tests.
- */
- #endif
- #ifndef OPENSSL_NO_DSA
- ADD_TEST_SUITE(DSA);
- ADD_TEST_SUITE_PARAMS(DSA);
- ADD_TEST_SUITE_LEGACY(DSA);
- ADD_TEST_SUITE_MSBLOB(DSA);
- # ifndef OPENSSL_NO_RC4
- ADD_TEST_SUITE_PVK(DSA);
- # endif
- #endif
- #ifndef OPENSSL_NO_EC
- ADD_TEST_SUITE(EC);
- ADD_TEST_SUITE_PARAMS(EC);
- ADD_TEST_SUITE_LEGACY(EC);
- ADD_TEST_SUITE(ECExplicitPrimeNamedCurve);
- ADD_TEST_SUITE_LEGACY(ECExplicitPrimeNamedCurve);
- ADD_TEST_SUITE(ECExplicitPrime2G);
- ADD_TEST_SUITE_LEGACY(ECExplicitPrime2G);
- # ifndef OPENSSL_NO_EC2M
- ADD_TEST_SUITE(ECExplicitTriNamedCurve);
- ADD_TEST_SUITE_LEGACY(ECExplicitTriNamedCurve);
- ADD_TEST_SUITE(ECExplicitTri2G);
- ADD_TEST_SUITE_LEGACY(ECExplicitTri2G);
- # endif
- ADD_TEST_SUITE(ED25519);
- ADD_TEST_SUITE(ED448);
- ADD_TEST_SUITE(X25519);
- ADD_TEST_SUITE(X448);
- /*
- * ED25519, ED448, X25519 and X448 have no support for
- * PEM_write_bio_PrivateKey_traditional(), so no legacy tests.
- */
- #endif
- ADD_TEST_SUITE(RSA);
- ADD_TEST_SUITE_LEGACY(RSA);
- ADD_TEST_SUITE(RSA_PSS);
- /*
- * RSA-PSS has no support for PEM_write_bio_PrivateKey_traditional(),
- * so no legacy tests.
- */
- #ifndef OPENSSL_NO_DSA
- ADD_TEST_SUITE_MSBLOB(RSA);
- # ifndef OPENSSL_NO_RC4
- ADD_TEST_SUITE_PVK(RSA);
- # endif
- #endif
- }
- return 1;
- }
- void cleanup_tests(void)
- {
- #ifndef OPENSSL_NO_EC
- OSSL_PARAM_BLD_free_params(ec_explicit_prime_params_nc);
- OSSL_PARAM_BLD_free_params(ec_explicit_prime_params_explicit);
- OSSL_PARAM_BLD_free(bld_prime_nc);
- OSSL_PARAM_BLD_free(bld_prime);
- # ifndef OPENSSL_NO_EC2M
- OSSL_PARAM_BLD_free_params(ec_explicit_tri_params_nc);
- OSSL_PARAM_BLD_free_params(ec_explicit_tri_params_explicit);
- OSSL_PARAM_BLD_free(bld_tri_nc);
- OSSL_PARAM_BLD_free(bld_tri);
- # endif
- BN_CTX_free(bnctx);
- #endif /* OPENSSL_NO_EC */
- #ifndef OPENSSL_NO_DH
- FREE_DOMAIN_KEYS(DH);
- FREE_DOMAIN_KEYS(DHX);
- #endif
- #ifndef OPENSSL_NO_DSA
- FREE_DOMAIN_KEYS(DSA);
- #endif
- #ifndef OPENSSL_NO_EC
- FREE_DOMAIN_KEYS(EC);
- FREE_DOMAIN_KEYS(ECExplicitPrimeNamedCurve);
- FREE_DOMAIN_KEYS(ECExplicitPrime2G);
- # ifndef OPENSSL_NO_EC2M
- FREE_DOMAIN_KEYS(ECExplicitTriNamedCurve);
- FREE_DOMAIN_KEYS(ECExplicitTri2G);
- # endif
- FREE_KEYS(ED25519);
- FREE_KEYS(ED448);
- FREE_KEYS(X25519);
- FREE_KEYS(X448);
- #endif
- FREE_KEYS(RSA);
- FREE_KEYS(RSA_PSS);
- }
|