OpenSSL 1.1.1-pre2
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
LIBS=../../libcrypto
|
||||
SOURCE[../../libcrypto]=\
|
||||
tls1_prf.c kdf_err.c hkdf.c
|
||||
tls1_prf.c kdf_err.c hkdf.c scrypt.c
|
||||
+55
-9
@@ -34,6 +34,7 @@ static unsigned char *HKDF_Expand(const EVP_MD *evp_md,
|
||||
unsigned char *okm, size_t okm_len);
|
||||
|
||||
typedef struct {
|
||||
int mode;
|
||||
const EVP_MD *md;
|
||||
unsigned char *salt;
|
||||
size_t salt_len;
|
||||
@@ -77,6 +78,10 @@ static int pkey_hkdf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
|
||||
kctx->md = p2;
|
||||
return 1;
|
||||
|
||||
case EVP_PKEY_CTRL_HKDF_MODE:
|
||||
kctx->mode = p1;
|
||||
return 1;
|
||||
|
||||
case EVP_PKEY_CTRL_HKDF_SALT:
|
||||
if (p1 == 0 || p2 == NULL)
|
||||
return 1;
|
||||
@@ -128,8 +133,24 @@ static int pkey_hkdf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
|
||||
static int pkey_hkdf_ctrl_str(EVP_PKEY_CTX *ctx, const char *type,
|
||||
const char *value)
|
||||
{
|
||||
if (strcmp(type, "mode") == 0) {
|
||||
int mode;
|
||||
|
||||
if (strcmp(value, "EXTRACT_AND_EXPAND") == 0)
|
||||
mode = EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND;
|
||||
else if (strcmp(value, "EXTRACT_ONLY") == 0)
|
||||
mode = EVP_PKEY_HKDEF_MODE_EXTRACT_ONLY;
|
||||
else if (strcmp(value, "EXPAND_ONLY") == 0)
|
||||
mode = EVP_PKEY_HKDEF_MODE_EXPAND_ONLY;
|
||||
else
|
||||
return 0;
|
||||
|
||||
return EVP_PKEY_CTX_hkdf_mode(ctx, mode);
|
||||
}
|
||||
|
||||
if (strcmp(type, "md") == 0)
|
||||
return EVP_PKEY_CTX_set_hkdf_md(ctx, EVP_get_digestbyname(value));
|
||||
return EVP_PKEY_CTX_md(ctx, EVP_PKEY_OP_DERIVE,
|
||||
EVP_PKEY_CTRL_HKDF_MD, value);
|
||||
|
||||
if (strcmp(type, "salt") == 0)
|
||||
return EVP_PKEY_CTX_str2ctrl(ctx, EVP_PKEY_CTRL_HKDF_SALT, value);
|
||||
@@ -149,6 +170,7 @@ static int pkey_hkdf_ctrl_str(EVP_PKEY_CTX *ctx, const char *type,
|
||||
if (strcmp(type, "hexinfo") == 0)
|
||||
return EVP_PKEY_CTX_hex2ctrl(ctx, EVP_PKEY_CTRL_HKDF_INFO, value);
|
||||
|
||||
KDFerr(KDF_F_PKEY_HKDF_CTRL_STR, KDF_R_UNKNOWN_PARAMETER_TYPE);
|
||||
return -2;
|
||||
}
|
||||
|
||||
@@ -157,16 +179,36 @@ static int pkey_hkdf_derive(EVP_PKEY_CTX *ctx, unsigned char *key,
|
||||
{
|
||||
HKDF_PKEY_CTX *kctx = ctx->data;
|
||||
|
||||
if (kctx->md == NULL || kctx->key == NULL)
|
||||
if (kctx->md == NULL) {
|
||||
KDFerr(KDF_F_PKEY_HKDF_DERIVE, KDF_R_MISSING_MESSAGE_DIGEST);
|
||||
return 0;
|
||||
|
||||
if (HKDF(kctx->md, kctx->salt, kctx->salt_len, kctx->key, kctx->key_len,
|
||||
kctx->info, kctx->info_len, key, *keylen) == NULL)
|
||||
{
|
||||
}
|
||||
if (kctx->key == NULL) {
|
||||
KDFerr(KDF_F_PKEY_HKDF_DERIVE, KDF_R_MISSING_KEY);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return 1;
|
||||
switch (kctx->mode) {
|
||||
case EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND:
|
||||
return HKDF(kctx->md, kctx->salt, kctx->salt_len, kctx->key,
|
||||
kctx->key_len, kctx->info, kctx->info_len, key,
|
||||
*keylen) != NULL;
|
||||
|
||||
case EVP_PKEY_HKDEF_MODE_EXTRACT_ONLY:
|
||||
if (key == NULL) {
|
||||
*keylen = EVP_MD_size(kctx->md);
|
||||
return 1;
|
||||
}
|
||||
return HKDF_Extract(kctx->md, kctx->salt, kctx->salt_len, kctx->key,
|
||||
kctx->key_len, key, keylen) != NULL;
|
||||
|
||||
case EVP_PKEY_HKDEF_MODE_EXPAND_ONLY:
|
||||
return HKDF_Expand(kctx->md, kctx->key, kctx->key_len, kctx->info,
|
||||
kctx->info_len, key, *keylen) != NULL;
|
||||
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
const EVP_PKEY_METHOD hkdf_pkey_meth = {
|
||||
@@ -206,12 +248,16 @@ static unsigned char *HKDF(const EVP_MD *evp_md,
|
||||
unsigned char *okm, size_t okm_len)
|
||||
{
|
||||
unsigned char prk[EVP_MAX_MD_SIZE];
|
||||
unsigned char *ret;
|
||||
size_t prk_len;
|
||||
|
||||
if (!HKDF_Extract(evp_md, salt, salt_len, key, key_len, prk, &prk_len))
|
||||
return NULL;
|
||||
|
||||
return HKDF_Expand(evp_md, prk, prk_len, info, info_len, okm, okm_len);
|
||||
ret = HKDF_Expand(evp_md, prk, prk_len, info, info_len, okm, okm_len);
|
||||
OPENSSL_cleanse(prk, sizeof(prk));
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static unsigned char *HKDF_Extract(const EVP_MD *evp_md,
|
||||
@@ -245,7 +291,7 @@ static unsigned char *HKDF_Expand(const EVP_MD *evp_md,
|
||||
if (okm_len % dig_len)
|
||||
n++;
|
||||
|
||||
if (n > 255)
|
||||
if (n > 255 || okm == NULL)
|
||||
return NULL;
|
||||
|
||||
if ((hmac = HMAC_CTX_new()) == NULL)
|
||||
|
||||
+32
-17
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* Generated by util/mkerr.pl DO NOT EDIT
|
||||
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -8,26 +8,42 @@
|
||||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/kdf.h>
|
||||
#include <openssl/kdferr.h>
|
||||
|
||||
/* BEGIN ERROR CODES */
|
||||
#ifndef OPENSSL_NO_ERR
|
||||
|
||||
# define ERR_FUNC(func) ERR_PACK(ERR_LIB_KDF,func,0)
|
||||
# define ERR_REASON(reason) ERR_PACK(ERR_LIB_KDF,0,reason)
|
||||
|
||||
static ERR_STRING_DATA KDF_str_functs[] = {
|
||||
{ERR_FUNC(KDF_F_PKEY_TLS1_PRF_CTRL_STR), "pkey_tls1_prf_ctrl_str"},
|
||||
{ERR_FUNC(KDF_F_PKEY_TLS1_PRF_DERIVE), "pkey_tls1_prf_derive"},
|
||||
static const ERR_STRING_DATA KDF_str_functs[] = {
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_HKDF_CTRL_STR, 0), "pkey_hkdf_ctrl_str"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_HKDF_DERIVE, 0), "pkey_hkdf_derive"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_SCRYPT_CTRL_STR, 0),
|
||||
"pkey_scrypt_ctrl_str"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_SCRYPT_CTRL_UINT64, 0),
|
||||
"pkey_scrypt_ctrl_uint64"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_SCRYPT_DERIVE, 0), "pkey_scrypt_derive"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_TLS1_PRF_CTRL_STR, 0),
|
||||
"pkey_tls1_prf_ctrl_str"},
|
||||
{ERR_PACK(ERR_LIB_KDF, KDF_F_PKEY_TLS1_PRF_DERIVE, 0),
|
||||
"pkey_tls1_prf_derive"},
|
||||
{0, NULL}
|
||||
};
|
||||
|
||||
static ERR_STRING_DATA KDF_str_reasons[] = {
|
||||
{ERR_REASON(KDF_R_INVALID_DIGEST), "invalid digest"},
|
||||
{ERR_REASON(KDF_R_MISSING_PARAMETER), "missing parameter"},
|
||||
{ERR_REASON(KDF_R_VALUE_MISSING), "value missing"},
|
||||
static const ERR_STRING_DATA KDF_str_reasons[] = {
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_INVALID_DIGEST), "invalid digest"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_ITERATION_COUNT),
|
||||
"missing iteration count"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_KEY), "missing key"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_MESSAGE_DIGEST),
|
||||
"missing message digest"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_PARAMETER), "missing parameter"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_PASS), "missing pass"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_SALT), "missing salt"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_SECRET), "missing secret"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_MISSING_SEED), "missing seed"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_UNKNOWN_PARAMETER_TYPE),
|
||||
"unknown parameter type"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_VALUE_ERROR), "value error"},
|
||||
{ERR_PACK(ERR_LIB_KDF, 0, KDF_R_VALUE_MISSING), "value missing"},
|
||||
{0, NULL}
|
||||
};
|
||||
|
||||
@@ -36,10 +52,9 @@ static ERR_STRING_DATA KDF_str_reasons[] = {
|
||||
int ERR_load_KDF_strings(void)
|
||||
{
|
||||
#ifndef OPENSSL_NO_ERR
|
||||
|
||||
if (ERR_func_error_string(KDF_str_functs[0].error) == NULL) {
|
||||
ERR_load_strings(0, KDF_str_functs);
|
||||
ERR_load_strings(0, KDF_str_reasons);
|
||||
ERR_load_strings_const(KDF_str_functs);
|
||||
ERR_load_strings_const(KDF_str_reasons);
|
||||
}
|
||||
#endif
|
||||
return 1;
|
||||
|
||||
@@ -0,0 +1,262 @@
|
||||
/*
|
||||
* Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (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 <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <openssl/hmac.h>
|
||||
#include <openssl/kdf.h>
|
||||
#include <openssl/evp.h>
|
||||
#include "internal/cryptlib.h"
|
||||
#include "internal/evp_int.h"
|
||||
|
||||
#ifndef OPENSSL_NO_SCRYPT
|
||||
|
||||
static int atou64(const char *nptr, uint64_t *result);
|
||||
|
||||
typedef struct {
|
||||
unsigned char *pass;
|
||||
size_t pass_len;
|
||||
unsigned char *salt;
|
||||
size_t salt_len;
|
||||
uint64_t N, r, p;
|
||||
uint64_t maxmem_bytes;
|
||||
} SCRYPT_PKEY_CTX;
|
||||
|
||||
/* Custom uint64_t parser since we do not have strtoull */
|
||||
static int atou64(const char *nptr, uint64_t *result)
|
||||
{
|
||||
uint64_t value = 0;
|
||||
|
||||
while (*nptr) {
|
||||
unsigned int digit;
|
||||
uint64_t new_value;
|
||||
|
||||
if ((*nptr < '0') || (*nptr > '9')) {
|
||||
return 0;
|
||||
}
|
||||
digit = (unsigned int)(*nptr - '0');
|
||||
new_value = (value * 10) + digit;
|
||||
if ((new_value < digit) || ((new_value - digit) / 10 != value)) {
|
||||
/* Overflow */
|
||||
return 0;
|
||||
}
|
||||
value = new_value;
|
||||
nptr++;
|
||||
}
|
||||
*result = value;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int pkey_scrypt_init(EVP_PKEY_CTX *ctx)
|
||||
{
|
||||
SCRYPT_PKEY_CTX *kctx;
|
||||
|
||||
kctx = OPENSSL_zalloc(sizeof(*kctx));
|
||||
if (kctx == NULL)
|
||||
return 0;
|
||||
|
||||
/* Default values are the most conservative recommendation given in the
|
||||
* original paper of C. Percival. Derivation uses roughly 1 GiB of memory
|
||||
* for this parameter choice (approx. 128 * r * (N + p) bytes).
|
||||
*/
|
||||
kctx->N = 1 << 20;
|
||||
kctx->r = 8;
|
||||
kctx->p = 1;
|
||||
kctx->maxmem_bytes = 1025 * 1024 * 1024;
|
||||
|
||||
ctx->data = kctx;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void pkey_scrypt_cleanup(EVP_PKEY_CTX *ctx)
|
||||
{
|
||||
SCRYPT_PKEY_CTX *kctx = ctx->data;
|
||||
|
||||
OPENSSL_clear_free(kctx->salt, kctx->salt_len);
|
||||
OPENSSL_clear_free(kctx->pass, kctx->pass_len);
|
||||
OPENSSL_free(kctx);
|
||||
}
|
||||
|
||||
static int pkey_scrypt_set_membuf(unsigned char **buffer, size_t *buflen,
|
||||
const unsigned char *new_buffer,
|
||||
const int new_buflen)
|
||||
{
|
||||
if (new_buffer == NULL)
|
||||
return 1;
|
||||
|
||||
if (new_buflen < 0)
|
||||
return 0;
|
||||
|
||||
if (*buffer != NULL)
|
||||
OPENSSL_clear_free(*buffer, *buflen);
|
||||
|
||||
if (new_buflen > 0) {
|
||||
*buffer = OPENSSL_memdup(new_buffer, new_buflen);
|
||||
} else {
|
||||
*buffer = OPENSSL_malloc(1);
|
||||
}
|
||||
if (*buffer == NULL)
|
||||
return 0;
|
||||
|
||||
*buflen = new_buflen;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int is_power_of_two(uint64_t value)
|
||||
{
|
||||
return (value != 0) && ((value & (value - 1)) == 0);
|
||||
}
|
||||
|
||||
static int pkey_scrypt_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
|
||||
{
|
||||
SCRYPT_PKEY_CTX *kctx = ctx->data;
|
||||
uint64_t u64_value;
|
||||
|
||||
switch (type) {
|
||||
case EVP_PKEY_CTRL_PASS:
|
||||
return pkey_scrypt_set_membuf(&kctx->pass, &kctx->pass_len, p2, p1);
|
||||
|
||||
case EVP_PKEY_CTRL_SCRYPT_SALT:
|
||||
return pkey_scrypt_set_membuf(&kctx->salt, &kctx->salt_len, p2, p1);
|
||||
|
||||
case EVP_PKEY_CTRL_SCRYPT_N:
|
||||
u64_value = *((uint64_t *)p2);
|
||||
if ((u64_value <= 1) || !is_power_of_two(u64_value))
|
||||
return 0;
|
||||
kctx->N = u64_value;
|
||||
return 1;
|
||||
|
||||
case EVP_PKEY_CTRL_SCRYPT_R:
|
||||
u64_value = *((uint64_t *)p2);
|
||||
if (u64_value < 1)
|
||||
return 0;
|
||||
kctx->r = u64_value;
|
||||
return 1;
|
||||
|
||||
case EVP_PKEY_CTRL_SCRYPT_P:
|
||||
u64_value = *((uint64_t *)p2);
|
||||
if (u64_value < 1)
|
||||
return 0;
|
||||
kctx->p = u64_value;
|
||||
return 1;
|
||||
|
||||
case EVP_PKEY_CTRL_SCRYPT_MAXMEM_BYTES:
|
||||
u64_value = *((uint64_t *)p2);
|
||||
if (u64_value < 1)
|
||||
return 0;
|
||||
kctx->maxmem_bytes = u64_value;
|
||||
return 1;
|
||||
|
||||
default:
|
||||
return -2;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
static int pkey_scrypt_ctrl_uint64(EVP_PKEY_CTX *ctx, int type,
|
||||
const char *value)
|
||||
{
|
||||
uint64_t int_value;
|
||||
|
||||
if (!atou64(value, &int_value)) {
|
||||
KDFerr(KDF_F_PKEY_SCRYPT_CTRL_UINT64, KDF_R_VALUE_ERROR);
|
||||
return 0;
|
||||
}
|
||||
return pkey_scrypt_ctrl(ctx, type, 0, &int_value);
|
||||
}
|
||||
|
||||
static int pkey_scrypt_ctrl_str(EVP_PKEY_CTX *ctx, const char *type,
|
||||
const char *value)
|
||||
{
|
||||
if (value == NULL) {
|
||||
KDFerr(KDF_F_PKEY_SCRYPT_CTRL_STR, KDF_R_VALUE_MISSING);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (strcmp(type, "pass") == 0)
|
||||
return EVP_PKEY_CTX_str2ctrl(ctx, EVP_PKEY_CTRL_PASS, value);
|
||||
|
||||
if (strcmp(type, "hexpass") == 0)
|
||||
return EVP_PKEY_CTX_hex2ctrl(ctx, EVP_PKEY_CTRL_PASS, value);
|
||||
|
||||
if (strcmp(type, "salt") == 0)
|
||||
return EVP_PKEY_CTX_str2ctrl(ctx, EVP_PKEY_CTRL_SCRYPT_SALT, value);
|
||||
|
||||
if (strcmp(type, "hexsalt") == 0)
|
||||
return EVP_PKEY_CTX_hex2ctrl(ctx, EVP_PKEY_CTRL_SCRYPT_SALT, value);
|
||||
|
||||
if (strcmp(type, "N") == 0)
|
||||
return pkey_scrypt_ctrl_uint64(ctx, EVP_PKEY_CTRL_SCRYPT_N, value);
|
||||
|
||||
if (strcmp(type, "r") == 0)
|
||||
return pkey_scrypt_ctrl_uint64(ctx, EVP_PKEY_CTRL_SCRYPT_R, value);
|
||||
|
||||
if (strcmp(type, "p") == 0)
|
||||
return pkey_scrypt_ctrl_uint64(ctx, EVP_PKEY_CTRL_SCRYPT_P, value);
|
||||
|
||||
if (strcmp(type, "maxmem_bytes") == 0)
|
||||
return pkey_scrypt_ctrl_uint64(ctx, EVP_PKEY_CTRL_SCRYPT_MAXMEM_BYTES,
|
||||
value);
|
||||
|
||||
KDFerr(KDF_F_PKEY_SCRYPT_CTRL_STR, KDF_R_UNKNOWN_PARAMETER_TYPE);
|
||||
return -2;
|
||||
}
|
||||
|
||||
static int pkey_scrypt_derive(EVP_PKEY_CTX *ctx, unsigned char *key,
|
||||
size_t *keylen)
|
||||
{
|
||||
SCRYPT_PKEY_CTX *kctx = ctx->data;
|
||||
|
||||
if (kctx->pass == NULL) {
|
||||
KDFerr(KDF_F_PKEY_SCRYPT_DERIVE, KDF_R_MISSING_PASS);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (kctx->salt == NULL) {
|
||||
KDFerr(KDF_F_PKEY_SCRYPT_DERIVE, KDF_R_MISSING_SALT);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return EVP_PBE_scrypt((char *)kctx->pass, kctx->pass_len, kctx->salt,
|
||||
kctx->salt_len, kctx->N, kctx->r, kctx->p,
|
||||
kctx->maxmem_bytes, key, *keylen);
|
||||
}
|
||||
|
||||
const EVP_PKEY_METHOD scrypt_pkey_meth = {
|
||||
EVP_PKEY_SCRYPT,
|
||||
0,
|
||||
pkey_scrypt_init,
|
||||
0,
|
||||
pkey_scrypt_cleanup,
|
||||
|
||||
0, 0,
|
||||
0, 0,
|
||||
|
||||
0,
|
||||
0,
|
||||
|
||||
0,
|
||||
0,
|
||||
|
||||
0, 0,
|
||||
|
||||
0, 0, 0, 0,
|
||||
|
||||
0, 0,
|
||||
|
||||
0, 0,
|
||||
|
||||
0,
|
||||
pkey_scrypt_derive,
|
||||
pkey_scrypt_ctrl,
|
||||
pkey_scrypt_ctrl_str
|
||||
};
|
||||
|
||||
#endif
|
||||
+14
-3
@@ -115,6 +115,8 @@ static int pkey_tls1_prf_ctrl_str(EVP_PKEY_CTX *ctx,
|
||||
return EVP_PKEY_CTX_str2ctrl(ctx, EVP_PKEY_CTRL_TLS_SEED, value);
|
||||
if (strcmp(type, "hexseed") == 0)
|
||||
return EVP_PKEY_CTX_hex2ctrl(ctx, EVP_PKEY_CTRL_TLS_SEED, value);
|
||||
|
||||
KDFerr(KDF_F_PKEY_TLS1_PRF_CTRL_STR, KDF_R_UNKNOWN_PARAMETER_TYPE);
|
||||
return -2;
|
||||
}
|
||||
|
||||
@@ -122,8 +124,16 @@ static int pkey_tls1_prf_derive(EVP_PKEY_CTX *ctx, unsigned char *key,
|
||||
size_t *keylen)
|
||||
{
|
||||
TLS1_PRF_PKEY_CTX *kctx = ctx->data;
|
||||
if (kctx->md == NULL || kctx->sec == NULL || kctx->seedlen == 0) {
|
||||
KDFerr(KDF_F_PKEY_TLS1_PRF_DERIVE, KDF_R_MISSING_PARAMETER);
|
||||
if (kctx->md == NULL) {
|
||||
KDFerr(KDF_F_PKEY_TLS1_PRF_DERIVE, KDF_R_MISSING_MESSAGE_DIGEST);
|
||||
return 0;
|
||||
}
|
||||
if (kctx->sec == NULL) {
|
||||
KDFerr(KDF_F_PKEY_TLS1_PRF_DERIVE, KDF_R_MISSING_SECRET);
|
||||
return 0;
|
||||
}
|
||||
if (kctx->seedlen == 0) {
|
||||
KDFerr(KDF_F_PKEY_TLS1_PRF_DERIVE, KDF_R_MISSING_SEED);
|
||||
return 0;
|
||||
}
|
||||
return tls1_prf_alg(kctx->md, kctx->sec, kctx->seclen,
|
||||
@@ -174,7 +184,8 @@ static int tls1_prf_P_hash(const EVP_MD *md,
|
||||
int ret = 0;
|
||||
|
||||
chunk = EVP_MD_size(md);
|
||||
OPENSSL_assert(chunk >= 0);
|
||||
if (!ossl_assert(chunk > 0))
|
||||
goto err;
|
||||
|
||||
ctx = EVP_MD_CTX_new();
|
||||
ctx_tmp = EVP_MD_CTX_new();
|
||||
|
||||
Reference in New Issue
Block a user