| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/ec/ec_ameth.c | 
| Source code | Switch to Preprocessed file | 
| Line | Source | Count | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | /* | - | ||||||||||||||||||
| 2 | * Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved. | - | ||||||||||||||||||
| 3 | * | - | ||||||||||||||||||
| 4 | * Licensed under the OpenSSL license (the "License"). You may not use | - | ||||||||||||||||||
| 5 | * this file except in compliance with the License. You can obtain a copy | - | ||||||||||||||||||
| 6 | * in the file LICENSE in the source distribution or at | - | ||||||||||||||||||
| 7 | * https://www.openssl.org/source/license.html | - | ||||||||||||||||||
| 8 | */ | - | ||||||||||||||||||
| 9 | - | |||||||||||||||||||
| 10 | #include <stdio.h> | - | ||||||||||||||||||
| 11 | #include "internal/cryptlib.h" | - | ||||||||||||||||||
| 12 | #include <openssl/x509.h> | - | ||||||||||||||||||
| 13 | #include <openssl/ec.h> | - | ||||||||||||||||||
| 14 | #include <openssl/bn.h> | - | ||||||||||||||||||
| 15 | #include <openssl/cms.h> | - | ||||||||||||||||||
| 16 | #include <openssl/asn1t.h> | - | ||||||||||||||||||
| 17 | #include "internal/asn1_int.h" | - | ||||||||||||||||||
| 18 | #include "internal/evp_int.h" | - | ||||||||||||||||||
| 19 | #include "ec_lcl.h" | - | ||||||||||||||||||
| 20 | - | |||||||||||||||||||
| 21 | #ifndef OPENSSL_NO_CMS | - | ||||||||||||||||||
| 22 | static int ecdh_cms_decrypt(CMS_RecipientInfo *ri); | - | ||||||||||||||||||
| 23 | static int ecdh_cms_encrypt(CMS_RecipientInfo *ri); | - | ||||||||||||||||||
| 24 | #endif | - | ||||||||||||||||||
| 25 | - | |||||||||||||||||||
| 26 | static int eckey_param2type(int *pptype, void **ppval, EC_KEY *ec_key) | - | ||||||||||||||||||
| 27 | { | - | ||||||||||||||||||
| 28 | const EC_GROUP *group; | - | ||||||||||||||||||
| 29 | int nid; | - | ||||||||||||||||||
| 30 | if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL) { 
 
 | 0-13092 | ||||||||||||||||||
| 31 | ECerr(EC_F_ECKEY_PARAM2TYPE, EC_R_MISSING_PARAMETERS); | - | ||||||||||||||||||
| 32 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 33 | } | - | ||||||||||||||||||
| 34 | if (EC_GROUP_get_asn1_flag(group) 
 | 0-13092 | ||||||||||||||||||
| 35 | && (nid = EC_GROUP_get_curve_name(group))) 
 | 0-13092 | ||||||||||||||||||
| 36 | /* we have a 'named curve' => just set the OID */ | - | ||||||||||||||||||
| 37 | { | - | ||||||||||||||||||
| 38 | *ppval = OBJ_nid2obj(nid); | - | ||||||||||||||||||
| 39 | *pptype = V_ASN1_OBJECT; | - | ||||||||||||||||||
| 40 | } else {                    /* explicit parameters */ executed 13092 times by 1 test:  end of blockExecuted by: 
 | 13092 | ||||||||||||||||||
| 41 | - | |||||||||||||||||||
| 42 | ASN1_STRING *pstr = NULL; | - | ||||||||||||||||||
| 43 | pstr = ASN1_STRING_new(); | - | ||||||||||||||||||
| 44 | if (pstr == NULL) 
 | 0 | ||||||||||||||||||
| 45 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 46 | pstr->length = i2d_ECParameters(ec_key, &pstr->data); | - | ||||||||||||||||||
| 47 | if (pstr->length <= 0) { 
 | 0 | ||||||||||||||||||
| 48 | ASN1_STRING_free(pstr); | - | ||||||||||||||||||
| 49 | ECerr(EC_F_ECKEY_PARAM2TYPE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 50 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 51 | } | - | ||||||||||||||||||
| 52 | *ppval = pstr; | - | ||||||||||||||||||
| 53 | *pptype = V_ASN1_SEQUENCE; | - | ||||||||||||||||||
| 54 | } never executed:  end of block | 0 | ||||||||||||||||||
| 55 | return 1; executed 13092 times by 1 test:  return 1;Executed by: 
 | 13092 | ||||||||||||||||||
| 56 | } | - | ||||||||||||||||||
| 57 | - | |||||||||||||||||||
| 58 | static int eckey_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 59 | { | - | ||||||||||||||||||
| 60 | EC_KEY *ec_key = pkey->pkey.ec; | - | ||||||||||||||||||
| 61 | void *pval = NULL; | - | ||||||||||||||||||
| 62 | int ptype; | - | ||||||||||||||||||
| 63 | unsigned char *penc = NULL, *p; | - | ||||||||||||||||||
| 64 | int penclen; | - | ||||||||||||||||||
| 65 | - | |||||||||||||||||||
| 66 | if (!eckey_param2type(&ptype, &pval, ec_key)) { 
 | 0-13087 | ||||||||||||||||||
| 67 | ECerr(EC_F_ECKEY_PUB_ENCODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 68 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 69 | } | - | ||||||||||||||||||
| 70 | penclen = i2o_ECPublicKey(ec_key, NULL); | - | ||||||||||||||||||
| 71 | if (penclen <= 0) 
 | 0-13087 | ||||||||||||||||||
| 72 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 73 | penc = OPENSSL_malloc(penclen); | - | ||||||||||||||||||
| 74 | if (penc == NULL) 
 | 0-13087 | ||||||||||||||||||
| 75 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 76 | p = penc; | - | ||||||||||||||||||
| 77 | penclen = i2o_ECPublicKey(ec_key, &p); | - | ||||||||||||||||||
| 78 | if (penclen <= 0) 
 | 0-13087 | ||||||||||||||||||
| 79 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 80 | if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_EC), 
 | 0-13087 | ||||||||||||||||||
| 81 | ptype, pval, penc, penclen)) 
 | 0-13087 | ||||||||||||||||||
| 82 | return 1; executed 13087 times by 1 test:  return 1;Executed by: 
 | 13087 | ||||||||||||||||||
| 83 | err: code before this statement never executed:  err: | 0 | ||||||||||||||||||
| 84 | if (ptype == V_ASN1_OBJECT) 
 | 0 | ||||||||||||||||||
| 85 | ASN1_OBJECT_free(pval); never executed:  ASN1_OBJECT_free(pval); | 0 | ||||||||||||||||||
| 86 | else | - | ||||||||||||||||||
| 87 | ASN1_STRING_free(pval); never executed:  ASN1_STRING_free(pval); | 0 | ||||||||||||||||||
| 88 | OPENSSL_free(penc); | - | ||||||||||||||||||
| 89 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 90 | } | - | ||||||||||||||||||
| 91 | - | |||||||||||||||||||
| 92 | static EC_KEY *eckey_type2param(int ptype, const void *pval) | - | ||||||||||||||||||
| 93 | { | - | ||||||||||||||||||
| 94 | EC_KEY *eckey = NULL; | - | ||||||||||||||||||
| 95 | EC_GROUP *group = NULL; | - | ||||||||||||||||||
| 96 | - | |||||||||||||||||||
| 97 | if (ptype == V_ASN1_SEQUENCE) { 
 | 1917-32187 | ||||||||||||||||||
| 98 | const ASN1_STRING *pstr = pval; | - | ||||||||||||||||||
| 99 | const unsigned char *pm = pstr->data; | - | ||||||||||||||||||
| 100 | int pmlen = pstr->length; | - | ||||||||||||||||||
| 101 | - | |||||||||||||||||||
| 102 | if ((eckey = d2i_ECParameters(NULL, &pm, pmlen)) == NULL) { 
 | 109-1808 | ||||||||||||||||||
| 103 | ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 104 | goto ecerr; executed 1808 times by 1 test:  goto ecerr;Executed by: 
 | 1808 | ||||||||||||||||||
| 105 | } | - | ||||||||||||||||||
| 106 | } else if (ptype == V_ASN1_OBJECT) { executed 109 times by 1 test:  end of blockExecuted by: 
 
 | 109-31933 | ||||||||||||||||||
| 107 | const ASN1_OBJECT *poid = pval; | - | ||||||||||||||||||
| 108 | - | |||||||||||||||||||
| 109 | /* | - | ||||||||||||||||||
| 110 | * type == V_ASN1_OBJECT => the parameters are given by an asn1 OID | - | ||||||||||||||||||
| 111 | */ | - | ||||||||||||||||||
| 112 | if ((eckey = EC_KEY_new()) == NULL) { 
 | 0-31933 | ||||||||||||||||||
| 113 | ECerr(EC_F_ECKEY_TYPE2PARAM, ERR_R_MALLOC_FAILURE); | - | ||||||||||||||||||
| 114 | goto ecerr; never executed:  goto ecerr; | 0 | ||||||||||||||||||
| 115 | } | - | ||||||||||||||||||
| 116 | group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid)); | - | ||||||||||||||||||
| 117 | if (group == NULL) 
 | 191-31742 | ||||||||||||||||||
| 118 | goto ecerr; executed 191 times by 1 test:  goto ecerr;Executed by: 
 | 191 | ||||||||||||||||||
| 119 | EC_GROUP_set_asn1_flag(group, OPENSSL_EC_NAMED_CURVE); | - | ||||||||||||||||||
| 120 | if (EC_KEY_set_group(eckey, group) == 0) 
 | 0-31742 | ||||||||||||||||||
| 121 | goto ecerr; never executed:  goto ecerr; | 0 | ||||||||||||||||||
| 122 | EC_GROUP_free(group); | - | ||||||||||||||||||
| 123 | } else { executed 31742 times by 1 test:  end of blockExecuted by: 
 | 31742 | ||||||||||||||||||
| 124 | ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 125 | goto ecerr; executed 254 times by 1 test:  goto ecerr;Executed by: 
 | 254 | ||||||||||||||||||
| 126 | } | - | ||||||||||||||||||
| 127 | - | |||||||||||||||||||
| 128 | return eckey; executed 31851 times by 1 test:  return eckey;Executed by: 
 | 31851 | ||||||||||||||||||
| 129 | - | |||||||||||||||||||
| 130 | ecerr: | - | ||||||||||||||||||
| 131 | EC_KEY_free(eckey); | - | ||||||||||||||||||
| 132 | EC_GROUP_free(group); | - | ||||||||||||||||||
| 133 | return NULL; executed 2253 times by 1 test:  return ((void *)0) ;Executed by: 
 | 2253 | ||||||||||||||||||
| 134 | } | - | ||||||||||||||||||
| 135 | - | |||||||||||||||||||
| 136 | static int eckey_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey) | - | ||||||||||||||||||
| 137 | { | - | ||||||||||||||||||
| 138 | const unsigned char *p = NULL; | - | ||||||||||||||||||
| 139 | const void *pval; | - | ||||||||||||||||||
| 140 | int ptype, pklen; | - | ||||||||||||||||||
| 141 | EC_KEY *eckey = NULL; | - | ||||||||||||||||||
| 142 | X509_ALGOR *palg; | - | ||||||||||||||||||
| 143 | - | |||||||||||||||||||
| 144 | if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey)) 
 | 0-33133 | ||||||||||||||||||
| 145 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 146 | X509_ALGOR_get0(NULL, &ptype, &pval, palg); | - | ||||||||||||||||||
| 147 | - | |||||||||||||||||||
| 148 | eckey = eckey_type2param(ptype, pval); | - | ||||||||||||||||||
| 149 | - | |||||||||||||||||||
| 150 | if (!eckey) { 
 | 2252-30881 | ||||||||||||||||||
| 151 | ECerr(EC_F_ECKEY_PUB_DECODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 152 | return 0; executed 2252 times by 1 test:  return 0;Executed by: 
 | 2252 | ||||||||||||||||||
| 153 | } | - | ||||||||||||||||||
| 154 | - | |||||||||||||||||||
| 155 | /* We have parameters now set public key */ | - | ||||||||||||||||||
| 156 | if (!o2i_ECPublicKey(&eckey, &p, pklen)) { 
 | 7011-23870 | ||||||||||||||||||
| 157 | ECerr(EC_F_ECKEY_PUB_DECODE, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 158 | goto ecerr; executed 7011 times by 1 test:  goto ecerr;Executed by: 
 | 7011 | ||||||||||||||||||
| 159 | } | - | ||||||||||||||||||
| 160 | - | |||||||||||||||||||
| 161 | EVP_PKEY_assign_EC_KEY(pkey, eckey); | - | ||||||||||||||||||
| 162 | return 1; executed 23870 times by 1 test:  return 1;Executed by: 
 | 23870 | ||||||||||||||||||
| 163 | - | |||||||||||||||||||
| 164 | ecerr: | - | ||||||||||||||||||
| 165 | EC_KEY_free(eckey); | - | ||||||||||||||||||
| 166 | return 0; executed 7011 times by 1 test:  return 0;Executed by: 
 | 7011 | ||||||||||||||||||
| 167 | } | - | ||||||||||||||||||
| 168 | - | |||||||||||||||||||
| 169 | static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) | - | ||||||||||||||||||
| 170 | { | - | ||||||||||||||||||
| 171 | int r; | - | ||||||||||||||||||
| 172 | const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec); | - | ||||||||||||||||||
| 173 | const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec), | - | ||||||||||||||||||
| 174 | *pb = EC_KEY_get0_public_key(b->pkey.ec); | - | ||||||||||||||||||
| 175 | if (group == NULL || pa == NULL || pb == NULL) 
 
 
 | 0-2748 | ||||||||||||||||||
| 176 | return -2; never executed:  return -2; | 0 | ||||||||||||||||||
| 177 | r = EC_POINT_cmp(group, pa, pb, NULL); | - | ||||||||||||||||||
| 178 | if (r == 0) 
 | 0-2748 | ||||||||||||||||||
| 179 | return 1; executed 2748 times by 1 test:  return 1;Executed by: 
 | 2748 | ||||||||||||||||||
| 180 | if (r == 1) 
 | 0 | ||||||||||||||||||
| 181 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 182 | return -2; never executed:  return -2; | 0 | ||||||||||||||||||
| 183 | } | - | ||||||||||||||||||
| 184 | - | |||||||||||||||||||
| 185 | static int eckey_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) | - | ||||||||||||||||||
| 186 | { | - | ||||||||||||||||||
| 187 | const unsigned char *p = NULL; | - | ||||||||||||||||||
| 188 | const void *pval; | - | ||||||||||||||||||
| 189 | int ptype, pklen; | - | ||||||||||||||||||
| 190 | EC_KEY *eckey = NULL; | - | ||||||||||||||||||
| 191 | const X509_ALGOR *palg; | - | ||||||||||||||||||
| 192 | - | |||||||||||||||||||
| 193 | if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8)) 
 | 0-971 | ||||||||||||||||||
| 194 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 195 | X509_ALGOR_get0(NULL, &ptype, &pval, palg); | - | ||||||||||||||||||
| 196 | - | |||||||||||||||||||
| 197 | eckey = eckey_type2param(ptype, pval); | - | ||||||||||||||||||
| 198 | - | |||||||||||||||||||
| 199 | if (!eckey) 
 | 1-970 | ||||||||||||||||||
| 200 | goto ecliberr; executed 1 time by 1 test:  goto ecliberr;Executed by: 
 | 1 | ||||||||||||||||||
| 201 | - | |||||||||||||||||||
| 202 | /* We have parameters now set private key */ | - | ||||||||||||||||||
| 203 | if (!d2i_ECPrivateKey(&eckey, &p, pklen)) { 
 | 2-968 | ||||||||||||||||||
| 204 | ECerr(EC_F_ECKEY_PRIV_DECODE, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 205 | goto ecerr; executed 2 times by 1 test:  goto ecerr;Executed by: 
 | 2 | ||||||||||||||||||
| 206 | } | - | ||||||||||||||||||
| 207 | - | |||||||||||||||||||
| 208 | EVP_PKEY_assign_EC_KEY(pkey, eckey); | - | ||||||||||||||||||
| 209 | return 1; executed 968 times by 1 test:  return 1;Executed by: 
 | 968 | ||||||||||||||||||
| 210 | - | |||||||||||||||||||
| 211 | ecliberr: | - | ||||||||||||||||||
| 212 | ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 213 | ecerr: code before this statement executed 1 time by 1 test:  ecerr:Executed by: 
 | 1 | ||||||||||||||||||
| 214 | EC_KEY_free(eckey); | - | ||||||||||||||||||
| 215 | return 0; executed 3 times by 1 test:  return 0;Executed by: 
 | 3 | ||||||||||||||||||
| 216 | } | - | ||||||||||||||||||
| 217 | - | |||||||||||||||||||
| 218 | static int eckey_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 219 | { | - | ||||||||||||||||||
| 220 | EC_KEY ec_key = *(pkey->pkey.ec); | - | ||||||||||||||||||
| 221 | unsigned char *ep, *p; | - | ||||||||||||||||||
| 222 | int eplen, ptype; | - | ||||||||||||||||||
| 223 | void *pval; | - | ||||||||||||||||||
| 224 | unsigned int old_flags; | - | ||||||||||||||||||
| 225 | - | |||||||||||||||||||
| 226 | if (!eckey_param2type(&ptype, &pval, &ec_key)) { 
 | 0-5 | ||||||||||||||||||
| 227 | ECerr(EC_F_ECKEY_PRIV_ENCODE, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 228 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 229 | } | - | ||||||||||||||||||
| 230 | - | |||||||||||||||||||
| 231 | /* set the private key */ | - | ||||||||||||||||||
| 232 | - | |||||||||||||||||||
| 233 | /* | - | ||||||||||||||||||
| 234 | * do not include the parameters in the SEC1 private key see PKCS#11 | - | ||||||||||||||||||
| 235 | * 12.11 | - | ||||||||||||||||||
| 236 | */ | - | ||||||||||||||||||
| 237 | old_flags = EC_KEY_get_enc_flags(&ec_key); | - | ||||||||||||||||||
| 238 | EC_KEY_set_enc_flags(&ec_key, old_flags | EC_PKEY_NO_PARAMETERS); | - | ||||||||||||||||||
| 239 | - | |||||||||||||||||||
| 240 | eplen = i2d_ECPrivateKey(&ec_key, NULL); | - | ||||||||||||||||||
| 241 | if (!eplen) { 
 | 0-5 | ||||||||||||||||||
| 242 | ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 243 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 244 | } | - | ||||||||||||||||||
| 245 | ep = OPENSSL_malloc(eplen); | - | ||||||||||||||||||
| 246 | if (ep == NULL) { 
 | 0-5 | ||||||||||||||||||
| 247 | ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_MALLOC_FAILURE); | - | ||||||||||||||||||
| 248 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 249 | } | - | ||||||||||||||||||
| 250 | p = ep; | - | ||||||||||||||||||
| 251 | if (!i2d_ECPrivateKey(&ec_key, &p)) { 
 | 0-5 | ||||||||||||||||||
| 252 | OPENSSL_free(ep); | - | ||||||||||||||||||
| 253 | ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 254 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 255 | } | - | ||||||||||||||||||
| 256 | - | |||||||||||||||||||
| 257 | if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_X9_62_id_ecPublicKey), 0, 
 | 0-5 | ||||||||||||||||||
| 258 | ptype, pval, ep, eplen)) { 
 | 0-5 | ||||||||||||||||||
| 259 | OPENSSL_free(ep); | - | ||||||||||||||||||
| 260 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 261 | } | - | ||||||||||||||||||
| 262 | - | |||||||||||||||||||
| 263 | return 1; executed 5 times by 1 test:  return 1;Executed by: 
 | 5 | ||||||||||||||||||
| 264 | } | - | ||||||||||||||||||
| 265 | - | |||||||||||||||||||
| 266 | static int int_ec_size(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 267 | { | - | ||||||||||||||||||
| 268 | return ECDSA_size(pkey->pkey.ec); executed 482 times by 1 test:  return ECDSA_size(pkey->pkey.ec);Executed by: 
 | 482 | ||||||||||||||||||
| 269 | } | - | ||||||||||||||||||
| 270 | - | |||||||||||||||||||
| 271 | static int ec_bits(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 272 | { | - | ||||||||||||||||||
| 273 | return EC_GROUP_order_bits(EC_KEY_get0_group(pkey->pkey.ec)); executed 2374 times by 1 test:  return EC_GROUP_order_bits(EC_KEY_get0_group(pkey->pkey.ec));Executed by: 
 | 2374 | ||||||||||||||||||
| 274 | } | - | ||||||||||||||||||
| 275 | - | |||||||||||||||||||
| 276 | static int ec_security_bits(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 277 | { | - | ||||||||||||||||||
| 278 | int ecbits = ec_bits(pkey); | - | ||||||||||||||||||
| 279 | if (ecbits >= 512) 
 | 0-2342 | ||||||||||||||||||
| 280 | return 256; never executed:  return 256; | 0 | ||||||||||||||||||
| 281 | if (ecbits >= 384) 
 | 5-2337 | ||||||||||||||||||
| 282 | return 192; executed 5 times by 1 test:  return 192;Executed by: 
 | 5 | ||||||||||||||||||
| 283 | if (ecbits >= 256) 
 | 0-2337 | ||||||||||||||||||
| 284 | return 128; executed 2337 times by 1 test:  return 128;Executed by: 
 | 2337 | ||||||||||||||||||
| 285 | if (ecbits >= 224) 
 | 0 | ||||||||||||||||||
| 286 | return 112; never executed:  return 112; | 0 | ||||||||||||||||||
| 287 | if (ecbits >= 160) 
 | 0 | ||||||||||||||||||
| 288 | return 80; never executed:  return 80; | 0 | ||||||||||||||||||
| 289 | return ecbits / 2; never executed:  return ecbits / 2; | 0 | ||||||||||||||||||
| 290 | } | - | ||||||||||||||||||
| 291 | - | |||||||||||||||||||
| 292 | static int ec_missing_parameters(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 293 | { | - | ||||||||||||||||||
| 294 | if (pkey->pkey.ec == NULL || EC_KEY_get0_group(pkey->pkey.ec) == NULL) 
 
 | 150-6645 | ||||||||||||||||||
| 295 | return 1; executed 359 times by 1 test:  return 1;Executed by: 
 | 359 | ||||||||||||||||||
| 296 | return 0; executed 6436 times by 1 test:  return 0;Executed by: 
 | 6436 | ||||||||||||||||||
| 297 | } | - | ||||||||||||||||||
| 298 | - | |||||||||||||||||||
| 299 | static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) | - | ||||||||||||||||||
| 300 | { | - | ||||||||||||||||||
| 301 | EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec)); | - | ||||||||||||||||||
| 302 | - | |||||||||||||||||||
| 303 | if (group == NULL) 
 | 0-359 | ||||||||||||||||||
| 304 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 305 | if (to->pkey.ec == NULL) { 
 | 150-209 | ||||||||||||||||||
| 306 | to->pkey.ec = EC_KEY_new(); | - | ||||||||||||||||||
| 307 | if (to->pkey.ec == NULL) 
 | 0-150 | ||||||||||||||||||
| 308 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 309 | } executed 150 times by 1 test:  end of blockExecuted by: 
 | 150 | ||||||||||||||||||
| 310 | if (EC_KEY_set_group(to->pkey.ec, group) == 0) 
 | 0-359 | ||||||||||||||||||
| 311 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 312 | EC_GROUP_free(group); | - | ||||||||||||||||||
| 313 | return 1; executed 359 times by 1 test:  return 1;Executed by: 
 | 359 | ||||||||||||||||||
| 314 | err: | - | ||||||||||||||||||
| 315 | EC_GROUP_free(group); | - | ||||||||||||||||||
| 316 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 317 | } | - | ||||||||||||||||||
| 318 | - | |||||||||||||||||||
| 319 | static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b) | - | ||||||||||||||||||
| 320 | { | - | ||||||||||||||||||
| 321 | const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec), | - | ||||||||||||||||||
| 322 | *group_b = EC_KEY_get0_group(b->pkey.ec); | - | ||||||||||||||||||
| 323 | if (group_a == NULL || group_b == NULL) 
 
 | 0-5991 | ||||||||||||||||||
| 324 | return -2; never executed:  return -2; | 0 | ||||||||||||||||||
| 325 | if (EC_GROUP_cmp(group_a, group_b, NULL)) 
 | 0-5991 | ||||||||||||||||||
| 326 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 327 | else | - | ||||||||||||||||||
| 328 | return 1; executed 5991 times by 1 test:  return 1;Executed by: 
 | 5991 | ||||||||||||||||||
| 329 | } | - | ||||||||||||||||||
| 330 | - | |||||||||||||||||||
| 331 | static void int_ec_free(EVP_PKEY *pkey) | - | ||||||||||||||||||
| 332 | { | - | ||||||||||||||||||
| 333 | EC_KEY_free(pkey->pkey.ec); | - | ||||||||||||||||||
| 334 | } executed 39224 times by 1 test:  end of blockExecuted by: 
 | 39224 | ||||||||||||||||||
| 335 | - | |||||||||||||||||||
| 336 | typedef enum { | - | ||||||||||||||||||
| 337 | EC_KEY_PRINT_PRIVATE, | - | ||||||||||||||||||
| 338 | EC_KEY_PRINT_PUBLIC, | - | ||||||||||||||||||
| 339 | EC_KEY_PRINT_PARAM | - | ||||||||||||||||||
| 340 | } ec_print_t; | - | ||||||||||||||||||
| 341 | - | |||||||||||||||||||
| 342 | static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, ec_print_t ktype) | - | ||||||||||||||||||
| 343 | { | - | ||||||||||||||||||
| 344 | const char *ecstr; | - | ||||||||||||||||||
| 345 | unsigned char *priv = NULL, *pub = NULL; | - | ||||||||||||||||||
| 346 | size_t privlen = 0, publen = 0; | - | ||||||||||||||||||
| 347 | int ret = 0; | - | ||||||||||||||||||
| 348 | const EC_GROUP *group; | - | ||||||||||||||||||
| 349 | - | |||||||||||||||||||
| 350 | if (x == NULL || (group = EC_KEY_get0_group(x)) == NULL) { 
 
 | 0-298 | ||||||||||||||||||
| 351 | ECerr(EC_F_DO_EC_KEY_PRINT, ERR_R_PASSED_NULL_PARAMETER); | - | ||||||||||||||||||
| 352 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 353 | } | - | ||||||||||||||||||
| 354 | - | |||||||||||||||||||
| 355 | if (ktype != EC_KEY_PRINT_PARAM && EC_KEY_get0_public_key(x) != NULL) { 
 
 | 0-276 | ||||||||||||||||||
| 356 | publen = EC_KEY_key2buf(x, EC_KEY_get_conv_form(x), &pub, NULL); | - | ||||||||||||||||||
| 357 | if (publen == 0) 
 | 2-274 | ||||||||||||||||||
| 358 | goto err; executed 2 times by 1 test:  goto err;Executed by: 
 | 2 | ||||||||||||||||||
| 359 | } executed 274 times by 1 test:  end of blockExecuted by: 
 | 274 | ||||||||||||||||||
| 360 | - | |||||||||||||||||||
| 361 | if (ktype == EC_KEY_PRINT_PRIVATE && EC_KEY_get0_private_key(x) != NULL) { 
 
 | 0-227 | ||||||||||||||||||
| 362 | privlen = EC_KEY_priv2buf(x, &priv); | - | ||||||||||||||||||
| 363 | if (privlen == 0) 
 | 39-188 | ||||||||||||||||||
| 364 | goto err; executed 39 times by 1 test:  goto err;Executed by: 
 | 39 | ||||||||||||||||||
| 365 | } executed 188 times by 1 test:  end of blockExecuted by: 
 | 188 | ||||||||||||||||||
| 366 | - | |||||||||||||||||||
| 367 | if (ktype == EC_KEY_PRINT_PRIVATE) 
 | 69-188 | ||||||||||||||||||
| 368 | ecstr = "Private-Key"; executed 188 times by 1 test:  ecstr = "Private-Key";Executed by: 
 | 188 | ||||||||||||||||||
| 369 | else if (ktype == EC_KEY_PRINT_PUBLIC) 
 | 22-47 | ||||||||||||||||||
| 370 | ecstr = "Public-Key"; executed 47 times by 1 test:  ecstr = "Public-Key";Executed by: 
 | 47 | ||||||||||||||||||
| 371 | else | - | ||||||||||||||||||
| 372 | ecstr = "ECDSA-Parameters"; executed 22 times by 1 test:  ecstr = "ECDSA-Parameters";Executed by: 
 | 22 | ||||||||||||||||||
| 373 | - | |||||||||||||||||||
| 374 | if (!BIO_indent(bp, off, 128)) 
 | 0-257 | ||||||||||||||||||
| 375 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 376 | if (BIO_printf(bp, "%s: (%d bit)\n", ecstr, 
 | 0-257 | ||||||||||||||||||
| 377 | EC_GROUP_order_bits(group)) <= 0) 
 | 0-257 | ||||||||||||||||||
| 378 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 379 | - | |||||||||||||||||||
| 380 | if (privlen != 0) { 
 | 69-188 | ||||||||||||||||||
| 381 | if (BIO_printf(bp, "%*spriv:\n", off, "") <= 0) 
 | 0-188 | ||||||||||||||||||
| 382 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 383 | if (ASN1_buf_print(bp, priv, privlen, off + 4) == 0) 
 | 0-188 | ||||||||||||||||||
| 384 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 385 | } executed 188 times by 1 test:  end of blockExecuted by: 
 | 188 | ||||||||||||||||||
| 386 | - | |||||||||||||||||||
| 387 | if (publen != 0) { 
 | 22-235 | ||||||||||||||||||
| 388 | if (BIO_printf(bp, "%*spub:\n", off, "") <= 0) 
 | 0-235 | ||||||||||||||||||
| 389 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 390 | if (ASN1_buf_print(bp, pub, publen, off + 4) == 0) 
 | 0-235 | ||||||||||||||||||
| 391 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 392 | } executed 235 times by 1 test:  end of blockExecuted by: 
 | 235 | ||||||||||||||||||
| 393 | - | |||||||||||||||||||
| 394 | if (!ECPKParameters_print(bp, group, off)) 
 | 0-257 | ||||||||||||||||||
| 395 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 396 | ret = 1; | - | ||||||||||||||||||
| 397 | err: code before this statement executed 257 times by 1 test:  err:Executed by: 
 | 257 | ||||||||||||||||||
| 398 | if (!ret) 
 | 41-257 | ||||||||||||||||||
| 399 | ECerr(EC_F_DO_EC_KEY_PRINT, ERR_R_EC_LIB); executed 41 times by 1 test:  ERR_put_error(16,(221),(16),__FILE__,399);Executed by: 
 | 41 | ||||||||||||||||||
| 400 | OPENSSL_clear_free(priv, privlen); | - | ||||||||||||||||||
| 401 | OPENSSL_free(pub); | - | ||||||||||||||||||
| 402 | return ret; executed 298 times by 1 test:  return ret;Executed by: 
 | 298 | ||||||||||||||||||
| 403 | } | - | ||||||||||||||||||
| 404 | - | |||||||||||||||||||
| 405 | static int eckey_param_decode(EVP_PKEY *pkey, | - | ||||||||||||||||||
| 406 | const unsigned char **pder, int derlen) | - | ||||||||||||||||||
| 407 | { | - | ||||||||||||||||||
| 408 | EC_KEY *eckey; | - | ||||||||||||||||||
| 409 | - | |||||||||||||||||||
| 410 | if ((eckey = d2i_ECParameters(NULL, pder, derlen)) == NULL) { 
 | 0-1 | ||||||||||||||||||
| 411 | ECerr(EC_F_ECKEY_PARAM_DECODE, ERR_R_EC_LIB); | - | ||||||||||||||||||
| 412 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 413 | } | - | ||||||||||||||||||
| 414 | EVP_PKEY_assign_EC_KEY(pkey, eckey); | - | ||||||||||||||||||
| 415 | return 1; executed 1 time by 1 test:  return 1;Executed by: 
 | 1 | ||||||||||||||||||
| 416 | } | - | ||||||||||||||||||
| 417 | - | |||||||||||||||||||
| 418 | static int eckey_param_encode(const EVP_PKEY *pkey, unsigned char **pder) | - | ||||||||||||||||||
| 419 | { | - | ||||||||||||||||||
| 420 | return i2d_ECParameters(pkey->pkey.ec, pder); never executed:  return i2d_ECParameters(pkey->pkey.ec, pder); | 0 | ||||||||||||||||||
| 421 | } | - | ||||||||||||||||||
| 422 | - | |||||||||||||||||||
| 423 | static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, | - | ||||||||||||||||||
| 424 | ASN1_PCTX *ctx) | - | ||||||||||||||||||
| 425 | { | - | ||||||||||||||||||
| 426 | return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PARAM); never executed:  return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PARAM); | 0 | ||||||||||||||||||
| 427 | } | - | ||||||||||||||||||
| 428 | - | |||||||||||||||||||
| 429 | static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, | - | ||||||||||||||||||
| 430 | ASN1_PCTX *ctx) | - | ||||||||||||||||||
| 431 | { | - | ||||||||||||||||||
| 432 | return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PUBLIC); executed 49 times by 1 test:  return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PUBLIC);Executed by: 
 | 49 | ||||||||||||||||||
| 433 | } | - | ||||||||||||||||||
| 434 | - | |||||||||||||||||||
| 435 | static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent, | - | ||||||||||||||||||
| 436 | ASN1_PCTX *ctx) | - | ||||||||||||||||||
| 437 | { | - | ||||||||||||||||||
| 438 | return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PRIVATE); never executed:  return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PRIVATE); | 0 | ||||||||||||||||||
| 439 | } | - | ||||||||||||||||||
| 440 | - | |||||||||||||||||||
| 441 | static int old_ec_priv_decode(EVP_PKEY *pkey, | - | ||||||||||||||||||
| 442 | const unsigned char **pder, int derlen) | - | ||||||||||||||||||
| 443 | { | - | ||||||||||||||||||
| 444 | EC_KEY *ec; | - | ||||||||||||||||||
| 445 | - | |||||||||||||||||||
| 446 | if ((ec = d2i_ECPrivateKey(NULL, pder, derlen)) == NULL) { 
 | 245-1812 | ||||||||||||||||||
| 447 | ECerr(EC_F_OLD_EC_PRIV_DECODE, EC_R_DECODE_ERROR); | - | ||||||||||||||||||
| 448 | return 0; executed 245 times by 1 test:  return 0;Executed by: 
 | 245 | ||||||||||||||||||
| 449 | } | - | ||||||||||||||||||
| 450 | EVP_PKEY_assign_EC_KEY(pkey, ec); | - | ||||||||||||||||||
| 451 | return 1; executed 1812 times by 1 test:  return 1;Executed by: 
 | 1812 | ||||||||||||||||||
| 452 | } | - | ||||||||||||||||||
| 453 | - | |||||||||||||||||||
| 454 | static int old_ec_priv_encode(const EVP_PKEY *pkey, unsigned char **pder) | - | ||||||||||||||||||
| 455 | { | - | ||||||||||||||||||
| 456 | return i2d_ECPrivateKey(pkey->pkey.ec, pder); executed 6 times by 1 test:  return i2d_ECPrivateKey(pkey->pkey.ec, pder);Executed by: 
 | 6 | ||||||||||||||||||
| 457 | } | - | ||||||||||||||||||
| 458 | - | |||||||||||||||||||
| 459 | static int ec_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2) | - | ||||||||||||||||||
| 460 | { | - | ||||||||||||||||||
| 461 | switch (op) { | - | ||||||||||||||||||
| 462 | case ASN1_PKEY_CTRL_PKCS7_SIGN: never executed:  case 0x1: | 0 | ||||||||||||||||||
| 463 | if (arg1 == 0) { 
 | 0 | ||||||||||||||||||
| 464 | int snid, hnid; | - | ||||||||||||||||||
| 465 | X509_ALGOR *alg1, *alg2; | - | ||||||||||||||||||
| 466 | PKCS7_SIGNER_INFO_get0_algs(arg2, NULL, &alg1, &alg2); | - | ||||||||||||||||||
| 467 | if (alg1 == NULL || alg1->algorithm == NULL) 
 
 | 0 | ||||||||||||||||||
| 468 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 469 | hnid = OBJ_obj2nid(alg1->algorithm); | - | ||||||||||||||||||
| 470 | if (hnid == NID_undef) 
 | 0 | ||||||||||||||||||
| 471 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 472 | if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey))) 
 | 0 | ||||||||||||||||||
| 473 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 474 | X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0); | - | ||||||||||||||||||
| 475 | } never executed:  end of block | 0 | ||||||||||||||||||
| 476 | return 1; never executed:  return 1; | 0 | ||||||||||||||||||
| 477 | #ifndef OPENSSL_NO_CMS | - | ||||||||||||||||||
| 478 | case ASN1_PKEY_CTRL_CMS_SIGN: never executed:  case 0x5: | 0 | ||||||||||||||||||
| 479 | if (arg1 == 0) { 
 | 0 | ||||||||||||||||||
| 480 | int snid, hnid; | - | ||||||||||||||||||
| 481 | X509_ALGOR *alg1, *alg2; | - | ||||||||||||||||||
| 482 | CMS_SignerInfo_get0_algs(arg2, NULL, NULL, &alg1, &alg2); | - | ||||||||||||||||||
| 483 | if (alg1 == NULL || alg1->algorithm == NULL) 
 
 | 0 | ||||||||||||||||||
| 484 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 485 | hnid = OBJ_obj2nid(alg1->algorithm); | - | ||||||||||||||||||
| 486 | if (hnid == NID_undef) 
 | 0 | ||||||||||||||||||
| 487 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 488 | if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey))) 
 | 0 | ||||||||||||||||||
| 489 | return -1; never executed:  return -1; | 0 | ||||||||||||||||||
| 490 | X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0); | - | ||||||||||||||||||
| 491 | } never executed:  end of block | 0 | ||||||||||||||||||
| 492 | return 1; never executed:  return 1; | 0 | ||||||||||||||||||
| 493 | - | |||||||||||||||||||
| 494 | case ASN1_PKEY_CTRL_CMS_ENVELOPE: executed 11 times by 1 test:  case 0x7:Executed by: 
 | 11 | ||||||||||||||||||
| 495 | if (arg1 == 1) 
 | 5-6 | ||||||||||||||||||
| 496 | return ecdh_cms_decrypt(arg2); executed 5 times by 1 test:  return ecdh_cms_decrypt(arg2);Executed by: 
 | 5 | ||||||||||||||||||
| 497 | else if (arg1 == 0) 
 | 0-6 | ||||||||||||||||||
| 498 | return ecdh_cms_encrypt(arg2); executed 6 times by 1 test:  return ecdh_cms_encrypt(arg2);Executed by: 
 | 6 | ||||||||||||||||||
| 499 | return -2; never executed:  return -2; | 0 | ||||||||||||||||||
| 500 | - | |||||||||||||||||||
| 501 | case ASN1_PKEY_CTRL_CMS_RI_TYPE: executed 11 times by 1 test:  case 0x8:Executed by: 
 | 11 | ||||||||||||||||||
| 502 | *(int *)arg2 = CMS_RECIPINFO_AGREE; | - | ||||||||||||||||||
| 503 | return 1; executed 11 times by 1 test:  return 1;Executed by: 
 | 11 | ||||||||||||||||||
| 504 | #endif | - | ||||||||||||||||||
| 505 | - | |||||||||||||||||||
| 506 | case ASN1_PKEY_CTRL_DEFAULT_MD_NID: executed 1 time by 1 test:  case 0x3:Executed by: 
 | 1 | ||||||||||||||||||
| 507 | *(int *)arg2 = NID_sha256; | - | ||||||||||||||||||
| 508 | return 2; executed 1 time by 1 test:  return 2;Executed by: 
 | 1 | ||||||||||||||||||
| 509 | - | |||||||||||||||||||
| 510 | case ASN1_PKEY_CTRL_SET1_TLS_ENCPT: executed 403 times by 1 test:  case 0x9:Executed by: 
 | 403 | ||||||||||||||||||
| 511 | return EC_KEY_oct2key(EVP_PKEY_get0_EC_KEY(pkey), arg2, arg1, NULL); executed 403 times by 1 test:  return EC_KEY_oct2key(EVP_PKEY_get0_EC_KEY(pkey), arg2, arg1, ((void *)0) );Executed by: 
 | 403 | ||||||||||||||||||
| 512 | - | |||||||||||||||||||
| 513 | case ASN1_PKEY_CTRL_GET1_TLS_ENCPT: executed 891 times by 1 test:  case 0xa:Executed by: 
 | 891 | ||||||||||||||||||
| 514 | return EC_KEY_key2buf(EVP_PKEY_get0_EC_KEY(pkey), executed 891 times by 1 test:  return EC_KEY_key2buf(EVP_PKEY_get0_EC_KEY(pkey), POINT_CONVERSION_UNCOMPRESSED, arg2, ((void *)0) );Executed by: 
 | 891 | ||||||||||||||||||
| 515 | POINT_CONVERSION_UNCOMPRESSED, arg2, NULL); executed 891 times by 1 test:  return EC_KEY_key2buf(EVP_PKEY_get0_EC_KEY(pkey), POINT_CONVERSION_UNCOMPRESSED, arg2, ((void *)0) );Executed by: 
 | 891 | ||||||||||||||||||
| 516 | - | |||||||||||||||||||
| 517 | default: never executed:  default: | 0 | ||||||||||||||||||
| 518 | return -2; never executed:  return -2; | 0 | ||||||||||||||||||
| 519 | - | |||||||||||||||||||
| 520 | } | - | ||||||||||||||||||
| 521 | - | |||||||||||||||||||
| 522 | } | - | ||||||||||||||||||
| 523 | - | |||||||||||||||||||
| 524 | static int ec_pkey_check(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 525 | { | - | ||||||||||||||||||
| 526 | EC_KEY *eckey = pkey->pkey.ec; | - | ||||||||||||||||||
| 527 | - | |||||||||||||||||||
| 528 | /* stay consistent to what EVP_PKEY_check demands */ | - | ||||||||||||||||||
| 529 | if (eckey->priv_key == NULL) { 
 | 1-2 | ||||||||||||||||||
| 530 | ECerr(EC_F_EC_PKEY_CHECK, EC_R_MISSING_PRIVATE_KEY); | - | ||||||||||||||||||
| 531 | return 0; executed 2 times by 1 test:  return 0;Executed by: 
 | 2 | ||||||||||||||||||
| 532 | } | - | ||||||||||||||||||
| 533 | - | |||||||||||||||||||
| 534 | return EC_KEY_check_key(eckey); executed 1 time by 1 test:  return EC_KEY_check_key(eckey);Executed by: 
 | 1 | ||||||||||||||||||
| 535 | } | - | ||||||||||||||||||
| 536 | - | |||||||||||||||||||
| 537 | static int ec_pkey_public_check(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 538 | { | - | ||||||||||||||||||
| 539 | EC_KEY *eckey = pkey->pkey.ec; | - | ||||||||||||||||||
| 540 | - | |||||||||||||||||||
| 541 | /* | - | ||||||||||||||||||
| 542 | * Note: it unnecessary to check eckey->pub_key here since | - | ||||||||||||||||||
| 543 | * it will be checked in EC_KEY_check_key(). In fact, the | - | ||||||||||||||||||
| 544 | * EC_KEY_check_key() mainly checks the public key, and checks | - | ||||||||||||||||||
| 545 | * the private key optionally (only if there is one). So if | - | ||||||||||||||||||
| 546 | * someone passes a whole EC key (public + private), this | - | ||||||||||||||||||
| 547 | * will also work... | - | ||||||||||||||||||
| 548 | */ | - | ||||||||||||||||||
| 549 | - | |||||||||||||||||||
| 550 | return EC_KEY_check_key(eckey); executed 3 times by 1 test:  return EC_KEY_check_key(eckey);Executed by: 
 | 3 | ||||||||||||||||||
| 551 | } | - | ||||||||||||||||||
| 552 | - | |||||||||||||||||||
| 553 | static int ec_pkey_param_check(const EVP_PKEY *pkey) | - | ||||||||||||||||||
| 554 | { | - | ||||||||||||||||||
| 555 | EC_KEY *eckey = pkey->pkey.ec; | - | ||||||||||||||||||
| 556 | - | |||||||||||||||||||
| 557 | /* stay consistent to what EVP_PKEY_check demands */ | - | ||||||||||||||||||
| 558 | if (eckey->group == NULL) { 
 | 0-3 | ||||||||||||||||||
| 559 | ECerr(EC_F_EC_PKEY_PARAM_CHECK, EC_R_MISSING_PARAMETERS); | - | ||||||||||||||||||
| 560 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 561 | } | - | ||||||||||||||||||
| 562 | - | |||||||||||||||||||
| 563 | return EC_GROUP_check(eckey->group, NULL); executed 3 times by 1 test:  return EC_GROUP_check(eckey->group, ((void *)0) );Executed by: 
 | 3 | ||||||||||||||||||
| 564 | } | - | ||||||||||||||||||
| 565 | - | |||||||||||||||||||
| 566 | const EVP_PKEY_ASN1_METHOD eckey_asn1_meth = { | - | ||||||||||||||||||
| 567 | EVP_PKEY_EC, | - | ||||||||||||||||||
| 568 | EVP_PKEY_EC, | - | ||||||||||||||||||
| 569 | 0, | - | ||||||||||||||||||
| 570 | "EC", | - | ||||||||||||||||||
| 571 | "OpenSSL EC algorithm", | - | ||||||||||||||||||
| 572 | - | |||||||||||||||||||
| 573 | eckey_pub_decode, | - | ||||||||||||||||||
| 574 | eckey_pub_encode, | - | ||||||||||||||||||
| 575 | eckey_pub_cmp, | - | ||||||||||||||||||
| 576 | eckey_pub_print, | - | ||||||||||||||||||
| 577 | - | |||||||||||||||||||
| 578 | eckey_priv_decode, | - | ||||||||||||||||||
| 579 | eckey_priv_encode, | - | ||||||||||||||||||
| 580 | eckey_priv_print, | - | ||||||||||||||||||
| 581 | - | |||||||||||||||||||
| 582 | int_ec_size, | - | ||||||||||||||||||
| 583 | ec_bits, | - | ||||||||||||||||||
| 584 | ec_security_bits, | - | ||||||||||||||||||
| 585 | - | |||||||||||||||||||
| 586 | eckey_param_decode, | - | ||||||||||||||||||
| 587 | eckey_param_encode, | - | ||||||||||||||||||
| 588 | ec_missing_parameters, | - | ||||||||||||||||||
| 589 | ec_copy_parameters, | - | ||||||||||||||||||
| 590 | ec_cmp_parameters, | - | ||||||||||||||||||
| 591 | eckey_param_print, | - | ||||||||||||||||||
| 592 | 0, | - | ||||||||||||||||||
| 593 | - | |||||||||||||||||||
| 594 | int_ec_free, | - | ||||||||||||||||||
| 595 | ec_pkey_ctrl, | - | ||||||||||||||||||
| 596 | old_ec_priv_decode, | - | ||||||||||||||||||
| 597 | old_ec_priv_encode, | - | ||||||||||||||||||
| 598 | - | |||||||||||||||||||
| 599 | 0, 0, 0, | - | ||||||||||||||||||
| 600 | - | |||||||||||||||||||
| 601 | ec_pkey_check, | - | ||||||||||||||||||
| 602 | ec_pkey_public_check, | - | ||||||||||||||||||
| 603 | ec_pkey_param_check | - | ||||||||||||||||||
| 604 | }; | - | ||||||||||||||||||
| 605 | - | |||||||||||||||||||
| 606 | #if !defined(OPENSSL_NO_SM2) | - | ||||||||||||||||||
| 607 | const EVP_PKEY_ASN1_METHOD sm2_asn1_meth = { | - | ||||||||||||||||||
| 608 | EVP_PKEY_SM2, | - | ||||||||||||||||||
| 609 | EVP_PKEY_EC, | - | ||||||||||||||||||
| 610 | ASN1_PKEY_ALIAS | - | ||||||||||||||||||
| 611 | }; | - | ||||||||||||||||||
| 612 | #endif | - | ||||||||||||||||||
| 613 | - | |||||||||||||||||||
| 614 | int EC_KEY_print(BIO *bp, const EC_KEY *x, int off) | - | ||||||||||||||||||
| 615 | { | - | ||||||||||||||||||
| 616 | int private = EC_KEY_get0_private_key(x) != NULL; | - | ||||||||||||||||||
| 617 | - | |||||||||||||||||||
| 618 | return do_EC_KEY_print(bp, x, off, executed 227 times by 1 test:  return do_EC_KEY_print(bp, x, off, private ? EC_KEY_PRINT_PRIVATE : EC_KEY_PRINT_PUBLIC);Executed by: 
 | 227 | ||||||||||||||||||
| 619 | private ? EC_KEY_PRINT_PRIVATE : EC_KEY_PRINT_PUBLIC); executed 227 times by 1 test:  return do_EC_KEY_print(bp, x, off, private ? EC_KEY_PRINT_PRIVATE : EC_KEY_PRINT_PUBLIC);Executed by: 
 | 227 | ||||||||||||||||||
| 620 | } | - | ||||||||||||||||||
| 621 | - | |||||||||||||||||||
| 622 | int ECParameters_print(BIO *bp, const EC_KEY *x) | - | ||||||||||||||||||
| 623 | { | - | ||||||||||||||||||
| 624 | return do_EC_KEY_print(bp, x, 4, EC_KEY_PRINT_PARAM); executed 22 times by 1 test:  return do_EC_KEY_print(bp, x, 4, EC_KEY_PRINT_PARAM);Executed by: 
 | 22 | ||||||||||||||||||
| 625 | } | - | ||||||||||||||||||
| 626 | - | |||||||||||||||||||
| 627 | #ifndef OPENSSL_NO_CMS | - | ||||||||||||||||||
| 628 | - | |||||||||||||||||||
| 629 | static int ecdh_cms_set_peerkey(EVP_PKEY_CTX *pctx, | - | ||||||||||||||||||
| 630 | X509_ALGOR *alg, ASN1_BIT_STRING *pubkey) | - | ||||||||||||||||||
| 631 | { | - | ||||||||||||||||||
| 632 | const ASN1_OBJECT *aoid; | - | ||||||||||||||||||
| 633 | int atype; | - | ||||||||||||||||||
| 634 | const void *aval; | - | ||||||||||||||||||
| 635 | int rv = 0; | - | ||||||||||||||||||
| 636 | EVP_PKEY *pkpeer = NULL; | - | ||||||||||||||||||
| 637 | EC_KEY *ecpeer = NULL; | - | ||||||||||||||||||
| 638 | const unsigned char *p; | - | ||||||||||||||||||
| 639 | int plen; | - | ||||||||||||||||||
| 640 | X509_ALGOR_get0(&aoid, &atype, &aval, alg); | - | ||||||||||||||||||
| 641 | if (OBJ_obj2nid(aoid) != NID_X9_62_id_ecPublicKey) 
 | 0-5 | ||||||||||||||||||
| 642 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 643 | /* If absent parameters get group from main key */ | - | ||||||||||||||||||
| 644 | if (atype == V_ASN1_UNDEF || atype == V_ASN1_NULL) { 
 
 | 0-5 | ||||||||||||||||||
| 645 | const EC_GROUP *grp; | - | ||||||||||||||||||
| 646 | EVP_PKEY *pk; | - | ||||||||||||||||||
| 647 | pk = EVP_PKEY_CTX_get0_pkey(pctx); | - | ||||||||||||||||||
| 648 | if (!pk) 
 | 0-5 | ||||||||||||||||||
| 649 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 650 | grp = EC_KEY_get0_group(pk->pkey.ec); | - | ||||||||||||||||||
| 651 | ecpeer = EC_KEY_new(); | - | ||||||||||||||||||
| 652 | if (ecpeer == NULL) 
 | 0-5 | ||||||||||||||||||
| 653 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 654 | if (!EC_KEY_set_group(ecpeer, grp)) 
 | 0-5 | ||||||||||||||||||
| 655 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 656 | } else { executed 5 times by 1 test:  end of blockExecuted by: 
 | 5 | ||||||||||||||||||
| 657 | ecpeer = eckey_type2param(atype, aval); | - | ||||||||||||||||||
| 658 | if (!ecpeer) 
 | 0 | ||||||||||||||||||
| 659 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 660 | } never executed:  end of block | 0 | ||||||||||||||||||
| 661 | /* We have parameters now set public key */ | - | ||||||||||||||||||
| 662 | plen = ASN1_STRING_length(pubkey); | - | ||||||||||||||||||
| 663 | p = ASN1_STRING_get0_data(pubkey); | - | ||||||||||||||||||
| 664 | if (!p || !plen) 
 
 | 0-5 | ||||||||||||||||||
| 665 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 666 | if (!o2i_ECPublicKey(&ecpeer, &p, plen)) 
 | 0-5 | ||||||||||||||||||
| 667 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 668 | pkpeer = EVP_PKEY_new(); | - | ||||||||||||||||||
| 669 | if (pkpeer == NULL) 
 | 0-5 | ||||||||||||||||||
| 670 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 671 | EVP_PKEY_set1_EC_KEY(pkpeer, ecpeer); | - | ||||||||||||||||||
| 672 | if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0) 
 | 0-5 | ||||||||||||||||||
| 673 | rv = 1; executed 5 times by 1 test:  rv = 1;Executed by: 
 | 5 | ||||||||||||||||||
| 674 | err: code before this statement executed 5 times by 1 test:  err:Executed by: 
 | 5 | ||||||||||||||||||
| 675 | EC_KEY_free(ecpeer); | - | ||||||||||||||||||
| 676 | EVP_PKEY_free(pkpeer); | - | ||||||||||||||||||
| 677 | return rv; executed 5 times by 1 test:  return rv;Executed by: 
 | 5 | ||||||||||||||||||
| 678 | } | - | ||||||||||||||||||
| 679 | - | |||||||||||||||||||
| 680 | /* Set KDF parameters based on KDF NID */ | - | ||||||||||||||||||
| 681 | static int ecdh_cms_set_kdf_param(EVP_PKEY_CTX *pctx, int eckdf_nid) | - | ||||||||||||||||||
| 682 | { | - | ||||||||||||||||||
| 683 | int kdf_nid, kdfmd_nid, cofactor; | - | ||||||||||||||||||
| 684 | const EVP_MD *kdf_md; | - | ||||||||||||||||||
| 685 | if (eckdf_nid == NID_undef) 
 | 0-5 | ||||||||||||||||||
| 686 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 687 | - | |||||||||||||||||||
| 688 | /* Lookup KDF type, cofactor mode and digest */ | - | ||||||||||||||||||
| 689 | if (!OBJ_find_sigid_algs(eckdf_nid, &kdfmd_nid, &kdf_nid)) 
 | 0-5 | ||||||||||||||||||
| 690 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 691 | - | |||||||||||||||||||
| 692 | if (kdf_nid == NID_dh_std_kdf) 
 | 1-4 | ||||||||||||||||||
| 693 | cofactor = 0; executed 4 times by 1 test:  cofactor = 0;Executed by: 
 | 4 | ||||||||||||||||||
| 694 | else if (kdf_nid == NID_dh_cofactor_kdf) 
 | 0-1 | ||||||||||||||||||
| 695 | cofactor = 1; executed 1 time by 1 test:  cofactor = 1;Executed by: 
 | 1 | ||||||||||||||||||
| 696 | else | - | ||||||||||||||||||
| 697 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 698 | - | |||||||||||||||||||
| 699 | if (EVP_PKEY_CTX_set_ecdh_cofactor_mode(pctx, cofactor) <= 0) 
 | 0-5 | ||||||||||||||||||
| 700 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 701 | - | |||||||||||||||||||
| 702 | if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, EVP_PKEY_ECDH_KDF_X9_62) <= 0) 
 | 0-5 | ||||||||||||||||||
| 703 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 704 | - | |||||||||||||||||||
| 705 | kdf_md = EVP_get_digestbynid(kdfmd_nid); | - | ||||||||||||||||||
| 706 | if (!kdf_md) 
 | 0-5 | ||||||||||||||||||
| 707 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 708 | - | |||||||||||||||||||
| 709 | if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0) 
 | 0-5 | ||||||||||||||||||
| 710 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 711 | return 1; executed 5 times by 1 test:  return 1;Executed by: 
 | 5 | ||||||||||||||||||
| 712 | } | - | ||||||||||||||||||
| 713 | - | |||||||||||||||||||
| 714 | static int ecdh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri) | - | ||||||||||||||||||
| 715 | { | - | ||||||||||||||||||
| 716 | int rv = 0; | - | ||||||||||||||||||
| 717 | - | |||||||||||||||||||
| 718 | X509_ALGOR *alg, *kekalg = NULL; | - | ||||||||||||||||||
| 719 | ASN1_OCTET_STRING *ukm; | - | ||||||||||||||||||
| 720 | const unsigned char *p; | - | ||||||||||||||||||
| 721 | unsigned char *der = NULL; | - | ||||||||||||||||||
| 722 | int plen, keylen; | - | ||||||||||||||||||
| 723 | const EVP_CIPHER *kekcipher; | - | ||||||||||||||||||
| 724 | EVP_CIPHER_CTX *kekctx; | - | ||||||||||||||||||
| 725 | - | |||||||||||||||||||
| 726 | if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm)) 
 | 0-5 | ||||||||||||||||||
| 727 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 728 | - | |||||||||||||||||||
| 729 | if (!ecdh_cms_set_kdf_param(pctx, OBJ_obj2nid(alg->algorithm))) { 
 | 0-5 | ||||||||||||||||||
| 730 | ECerr(EC_F_ECDH_CMS_SET_SHARED_INFO, EC_R_KDF_PARAMETER_ERROR); | - | ||||||||||||||||||
| 731 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 732 | } | - | ||||||||||||||||||
| 733 | - | |||||||||||||||||||
| 734 | if (alg->parameter->type != V_ASN1_SEQUENCE) 
 | 0-5 | ||||||||||||||||||
| 735 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 736 | - | |||||||||||||||||||
| 737 | p = alg->parameter->value.sequence->data; | - | ||||||||||||||||||
| 738 | plen = alg->parameter->value.sequence->length; | - | ||||||||||||||||||
| 739 | kekalg = d2i_X509_ALGOR(NULL, &p, plen); | - | ||||||||||||||||||
| 740 | if (!kekalg) 
 | 0-5 | ||||||||||||||||||
| 741 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 742 | kekctx = CMS_RecipientInfo_kari_get0_ctx(ri); | - | ||||||||||||||||||
| 743 | if (!kekctx) 
 | 0-5 | ||||||||||||||||||
| 744 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 745 | kekcipher = EVP_get_cipherbyobj(kekalg->algorithm); | - | ||||||||||||||||||
| 746 | if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE) 
 
 | 0-5 | ||||||||||||||||||
| 747 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 748 | if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL)) 
 | 0-5 | ||||||||||||||||||
| 749 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 750 | if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0) 
 | 0-5 | ||||||||||||||||||
| 751 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 752 | - | |||||||||||||||||||
| 753 | keylen = EVP_CIPHER_CTX_key_length(kekctx); | - | ||||||||||||||||||
| 754 | if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0) 
 | 0-5 | ||||||||||||||||||
| 755 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 756 | - | |||||||||||||||||||
| 757 | plen = CMS_SharedInfo_encode(&der, kekalg, ukm, keylen); | - | ||||||||||||||||||
| 758 | - | |||||||||||||||||||
| 759 | if (!plen) 
 | 0-5 | ||||||||||||||||||
| 760 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 761 | - | |||||||||||||||||||
| 762 | if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, der, plen) <= 0) 
 | 0-5 | ||||||||||||||||||
| 763 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 764 | der = NULL; | - | ||||||||||||||||||
| 765 | - | |||||||||||||||||||
| 766 | rv = 1; | - | ||||||||||||||||||
| 767 | err: code before this statement executed 5 times by 1 test:  err:Executed by: 
 | 5 | ||||||||||||||||||
| 768 | X509_ALGOR_free(kekalg); | - | ||||||||||||||||||
| 769 | OPENSSL_free(der); | - | ||||||||||||||||||
| 770 | return rv; executed 5 times by 1 test:  return rv;Executed by: 
 | 5 | ||||||||||||||||||
| 771 | } | - | ||||||||||||||||||
| 772 | - | |||||||||||||||||||
| 773 | static int ecdh_cms_decrypt(CMS_RecipientInfo *ri) | - | ||||||||||||||||||
| 774 | { | - | ||||||||||||||||||
| 775 | EVP_PKEY_CTX *pctx; | - | ||||||||||||||||||
| 776 | pctx = CMS_RecipientInfo_get0_pkey_ctx(ri); | - | ||||||||||||||||||
| 777 | if (!pctx) 
 | 0-5 | ||||||||||||||||||
| 778 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 779 | /* See if we need to set peer key */ | - | ||||||||||||||||||
| 780 | if (!EVP_PKEY_CTX_get0_peerkey(pctx)) { 
 | 0-5 | ||||||||||||||||||
| 781 | X509_ALGOR *alg; | - | ||||||||||||||||||
| 782 | ASN1_BIT_STRING *pubkey; | - | ||||||||||||||||||
| 783 | if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey, 
 | 0-5 | ||||||||||||||||||
| 784 | NULL, NULL, NULL)) 
 | 0-5 | ||||||||||||||||||
| 785 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 786 | if (!alg || !pubkey) 
 
 | 0-5 | ||||||||||||||||||
| 787 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 788 | if (!ecdh_cms_set_peerkey(pctx, alg, pubkey)) { 
 | 0-5 | ||||||||||||||||||
| 789 | ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_PEER_KEY_ERROR); | - | ||||||||||||||||||
| 790 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 791 | } | - | ||||||||||||||||||
| 792 | } executed 5 times by 1 test:  end of blockExecuted by: 
 | 5 | ||||||||||||||||||
| 793 | /* Set ECDH derivation parameters and initialise unwrap context */ | - | ||||||||||||||||||
| 794 | if (!ecdh_cms_set_shared_info(pctx, ri)) { 
 | 0-5 | ||||||||||||||||||
| 795 | ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_SHARED_INFO_ERROR); | - | ||||||||||||||||||
| 796 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 797 | } | - | ||||||||||||||||||
| 798 | return 1; executed 5 times by 1 test:  return 1;Executed by: 
 | 5 | ||||||||||||||||||
| 799 | } | - | ||||||||||||||||||
| 800 | - | |||||||||||||||||||
| 801 | static int ecdh_cms_encrypt(CMS_RecipientInfo *ri) | - | ||||||||||||||||||
| 802 | { | - | ||||||||||||||||||
| 803 | EVP_PKEY_CTX *pctx; | - | ||||||||||||||||||
| 804 | EVP_PKEY *pkey; | - | ||||||||||||||||||
| 805 | EVP_CIPHER_CTX *ctx; | - | ||||||||||||||||||
| 806 | int keylen; | - | ||||||||||||||||||
| 807 | X509_ALGOR *talg, *wrap_alg = NULL; | - | ||||||||||||||||||
| 808 | const ASN1_OBJECT *aoid; | - | ||||||||||||||||||
| 809 | ASN1_BIT_STRING *pubkey; | - | ||||||||||||||||||
| 810 | ASN1_STRING *wrap_str; | - | ||||||||||||||||||
| 811 | ASN1_OCTET_STRING *ukm; | - | ||||||||||||||||||
| 812 | unsigned char *penc = NULL; | - | ||||||||||||||||||
| 813 | int penclen; | - | ||||||||||||||||||
| 814 | int rv = 0; | - | ||||||||||||||||||
| 815 | int ecdh_nid, kdf_type, kdf_nid, wrap_nid; | - | ||||||||||||||||||
| 816 | const EVP_MD *kdf_md; | - | ||||||||||||||||||
| 817 | pctx = CMS_RecipientInfo_get0_pkey_ctx(ri); | - | ||||||||||||||||||
| 818 | if (!pctx) 
 | 0-6 | ||||||||||||||||||
| 819 | return 0; never executed:  return 0; | 0 | ||||||||||||||||||
| 820 | /* Get ephemeral key */ | - | ||||||||||||||||||
| 821 | pkey = EVP_PKEY_CTX_get0_pkey(pctx); | - | ||||||||||||||||||
| 822 | if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey, 
 | 0-6 | ||||||||||||||||||
| 823 | NULL, NULL, NULL)) 
 | 0-6 | ||||||||||||||||||
| 824 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 825 | X509_ALGOR_get0(&aoid, NULL, NULL, talg); | - | ||||||||||||||||||
| 826 | /* Is everything uninitialised? */ | - | ||||||||||||||||||
| 827 | if (aoid == OBJ_nid2obj(NID_undef)) { 
 | 0-6 | ||||||||||||||||||
| 828 | - | |||||||||||||||||||
| 829 | EC_KEY *eckey = pkey->pkey.ec; | - | ||||||||||||||||||
| 830 | /* Set the key */ | - | ||||||||||||||||||
| 831 | unsigned char *p; | - | ||||||||||||||||||
| 832 | - | |||||||||||||||||||
| 833 | penclen = i2o_ECPublicKey(eckey, NULL); | - | ||||||||||||||||||
| 834 | if (penclen <= 0) 
 | 0-6 | ||||||||||||||||||
| 835 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 836 | penc = OPENSSL_malloc(penclen); | - | ||||||||||||||||||
| 837 | if (penc == NULL) 
 | 0-6 | ||||||||||||||||||
| 838 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 839 | p = penc; | - | ||||||||||||||||||
| 840 | penclen = i2o_ECPublicKey(eckey, &p); | - | ||||||||||||||||||
| 841 | if (penclen <= 0) 
 | 0-6 | ||||||||||||||||||
| 842 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 843 | ASN1_STRING_set0(pubkey, penc, penclen); | - | ||||||||||||||||||
| 844 | pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07); | - | ||||||||||||||||||
| 845 | pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT; | - | ||||||||||||||||||
| 846 | - | |||||||||||||||||||
| 847 | penc = NULL; | - | ||||||||||||||||||
| 848 | X509_ALGOR_set0(talg, OBJ_nid2obj(NID_X9_62_id_ecPublicKey), | - | ||||||||||||||||||
| 849 | V_ASN1_UNDEF, NULL); | - | ||||||||||||||||||
| 850 | } executed 6 times by 1 test:  end of blockExecuted by: 
 | 6 | ||||||||||||||||||
| 851 | - | |||||||||||||||||||
| 852 | /* See if custom parameters set */ | - | ||||||||||||||||||
| 853 | kdf_type = EVP_PKEY_CTX_get_ecdh_kdf_type(pctx); | - | ||||||||||||||||||
| 854 | if (kdf_type <= 0) 
 | 0-6 | ||||||||||||||||||
| 855 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 856 | if (!EVP_PKEY_CTX_get_ecdh_kdf_md(pctx, &kdf_md)) 
 | 0-6 | ||||||||||||||||||
| 857 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 858 | ecdh_nid = EVP_PKEY_CTX_get_ecdh_cofactor_mode(pctx); | - | ||||||||||||||||||
| 859 | if (ecdh_nid < 0) 
 | 0-6 | ||||||||||||||||||
| 860 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 861 | else if (ecdh_nid == 0) 
 | 1-5 | ||||||||||||||||||
| 862 | ecdh_nid = NID_dh_std_kdf; executed 5 times by 1 test:  ecdh_nid = 946;Executed by: 
 | 5 | ||||||||||||||||||
| 863 | else if (ecdh_nid == 1) 
 | 0-1 | ||||||||||||||||||
| 864 | ecdh_nid = NID_dh_cofactor_kdf; executed 1 time by 1 test:  ecdh_nid = 947;Executed by: 
 | 1 | ||||||||||||||||||
| 865 | - | |||||||||||||||||||
| 866 | if (kdf_type == EVP_PKEY_ECDH_KDF_NONE) { 
 | 0-6 | ||||||||||||||||||
| 867 | kdf_type = EVP_PKEY_ECDH_KDF_X9_62; | - | ||||||||||||||||||
| 868 | if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, kdf_type) <= 0) 
 | 0-6 | ||||||||||||||||||
| 869 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 870 | } else executed 6 times by 1 test:  end of blockExecuted by: 
 | 6 | ||||||||||||||||||
| 871 | /* Unknown KDF */ | - | ||||||||||||||||||
| 872 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 873 | if (kdf_md == NULL) { 
 | 2-4 | ||||||||||||||||||
| 874 | /* Fixme later for better MD */ | - | ||||||||||||||||||
| 875 | kdf_md = EVP_sha1(); | - | ||||||||||||||||||
| 876 | if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0) 
 | 0-4 | ||||||||||||||||||
| 877 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 878 | } executed 4 times by 1 test:  end of blockExecuted by: 
 | 4 | ||||||||||||||||||
| 879 | - | |||||||||||||||||||
| 880 | if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm)) 
 | 0-6 | ||||||||||||||||||
| 881 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 882 | - | |||||||||||||||||||
| 883 | /* Lookup NID for KDF+cofactor+digest */ | - | ||||||||||||||||||
| 884 | - | |||||||||||||||||||
| 885 | if (!OBJ_find_sigid_by_algs(&kdf_nid, EVP_MD_type(kdf_md), ecdh_nid)) 
 | 0-6 | ||||||||||||||||||
| 886 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 887 | /* Get wrap NID */ | - | ||||||||||||||||||
| 888 | ctx = CMS_RecipientInfo_kari_get0_ctx(ri); | - | ||||||||||||||||||
| 889 | wrap_nid = EVP_CIPHER_CTX_type(ctx); | - | ||||||||||||||||||
| 890 | keylen = EVP_CIPHER_CTX_key_length(ctx); | - | ||||||||||||||||||
| 891 | - | |||||||||||||||||||
| 892 | /* Package wrap algorithm in an AlgorithmIdentifier */ | - | ||||||||||||||||||
| 893 | - | |||||||||||||||||||
| 894 | wrap_alg = X509_ALGOR_new(); | - | ||||||||||||||||||
| 895 | if (wrap_alg == NULL) 
 | 0-6 | ||||||||||||||||||
| 896 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 897 | wrap_alg->algorithm = OBJ_nid2obj(wrap_nid); | - | ||||||||||||||||||
| 898 | wrap_alg->parameter = ASN1_TYPE_new(); | - | ||||||||||||||||||
| 899 | if (wrap_alg->parameter == NULL) 
 | 0-6 | ||||||||||||||||||
| 900 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 901 | if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0) 
 | 0-6 | ||||||||||||||||||
| 902 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 903 | if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) { 
 | 2-4 | ||||||||||||||||||
| 904 | ASN1_TYPE_free(wrap_alg->parameter); | - | ||||||||||||||||||
| 905 | wrap_alg->parameter = NULL; | - | ||||||||||||||||||
| 906 | } executed 2 times by 1 test:  end of blockExecuted by: 
 | 2 | ||||||||||||||||||
| 907 | - | |||||||||||||||||||
| 908 | if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0) 
 | 0-6 | ||||||||||||||||||
| 909 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 910 | - | |||||||||||||||||||
| 911 | penclen = CMS_SharedInfo_encode(&penc, wrap_alg, ukm, keylen); | - | ||||||||||||||||||
| 912 | - | |||||||||||||||||||
| 913 | if (!penclen) 
 | 0-6 | ||||||||||||||||||
| 914 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 915 | - | |||||||||||||||||||
| 916 | if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, penc, penclen) <= 0) 
 | 0-6 | ||||||||||||||||||
| 917 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 918 | penc = NULL; | - | ||||||||||||||||||
| 919 | - | |||||||||||||||||||
| 920 | /* | - | ||||||||||||||||||
| 921 | * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter | - | ||||||||||||||||||
| 922 | * of another AlgorithmIdentifier. | - | ||||||||||||||||||
| 923 | */ | - | ||||||||||||||||||
| 924 | penclen = i2d_X509_ALGOR(wrap_alg, &penc); | - | ||||||||||||||||||
| 925 | if (!penc || !penclen) 
 
 | 0-6 | ||||||||||||||||||
| 926 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 927 | wrap_str = ASN1_STRING_new(); | - | ||||||||||||||||||
| 928 | if (wrap_str == NULL) 
 | 0-6 | ||||||||||||||||||
| 929 | goto err; never executed:  goto err; | 0 | ||||||||||||||||||
| 930 | ASN1_STRING_set0(wrap_str, penc, penclen); | - | ||||||||||||||||||
| 931 | penc = NULL; | - | ||||||||||||||||||
| 932 | X509_ALGOR_set0(talg, OBJ_nid2obj(kdf_nid), V_ASN1_SEQUENCE, wrap_str); | - | ||||||||||||||||||
| 933 | - | |||||||||||||||||||
| 934 | rv = 1; | - | ||||||||||||||||||
| 935 | - | |||||||||||||||||||
| 936 | err: code before this statement executed 6 times by 1 test:  err:Executed by: 
 | 6 | ||||||||||||||||||
| 937 | OPENSSL_free(penc); | - | ||||||||||||||||||
| 938 | X509_ALGOR_free(wrap_alg); | - | ||||||||||||||||||
| 939 | return rv; executed 6 times by 1 test:  return rv;Executed by: 
 | 6 | ||||||||||||||||||
| 940 | } | - | ||||||||||||||||||
| 941 | - | |||||||||||||||||||
| 942 | #endif | - | ||||||||||||||||||
| Source code | Switch to Preprocessed file |