[openssl-commits] [openssl] master update
Dr. Stephen Henson
steve at openssl.org
Tue Aug 8 19:51:46 UTC 2017
The branch master has been updated
via 402f26e6ee56ec295e053d1f6455e910ac398149 (commit)
from 5d09b003c080d81ff6adfb6c54be5c018a2ba294 (commit)
- Log -----------------------------------------------------------------
commit 402f26e6ee56ec295e053d1f6455e910ac398149
Author: Johannes Bauer <joe at johannes-bauer.com>
Date: Tue Aug 8 18:51:41 2017 +0200
Fix building without scrypt
Building without the scrypt KDF is now possible, the OPENSSL_NO_SCRYPT
define is honored in code. Previous this lead to undefined references.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Stephen Henson <steve at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4116)
-----------------------------------------------------------------------
Summary of changes:
apps/pkcs12.c | 2 ++
crypto/kdf/scrypt.c | 4 ++++
test/pkey_meth_kdf_test.c | 4 ++++
3 files changed, 10 insertions(+)
diff --git a/apps/pkcs12.c b/apps/pkcs12.c
index e8c1c87..209aa33 100644
--- a/apps/pkcs12.c
+++ b/apps/pkcs12.c
@@ -819,6 +819,7 @@ static int alg_print(const X509_ALGOR *alg)
BIO_printf(bio_err, ", Iteration %ld, PRF %s",
ASN1_INTEGER_get(kdf->iter), OBJ_nid2sn(prfnid));
PBKDF2PARAM_free(kdf);
+#ifndef OPENSSL_NO_SCRYPT
} else if (pbenid == NID_id_scrypt) {
SCRYPT_PARAMS *kdf = NULL;
@@ -835,6 +836,7 @@ static int alg_print(const X509_ALGOR *alg)
ASN1_INTEGER_get(kdf->blockSize),
ASN1_INTEGER_get(kdf->parallelizationParameter));
SCRYPT_PARAMS_free(kdf);
+#endif
}
PBE2PARAM_free(pbe2);
} else {
diff --git a/crypto/kdf/scrypt.c b/crypto/kdf/scrypt.c
index c7aa823..3f4cf38 100644
--- a/crypto/kdf/scrypt.c
+++ b/crypto/kdf/scrypt.c
@@ -15,6 +15,8 @@
#include "internal/cryptlib.h"
#include "internal/evp_int.h"
+#ifndef OPENSSL_NO_SCRYPT
+
static int atou64(const char *nptr, uint64_t *result);
typedef struct {
@@ -256,3 +258,5 @@ const EVP_PKEY_METHOD scrypt_pkey_meth = {
pkey_scrypt_ctrl,
pkey_scrypt_ctrl_str
};
+
+#endif
diff --git a/test/pkey_meth_kdf_test.c b/test/pkey_meth_kdf_test.c
index a2ad91e..c832e8e 100644
--- a/test/pkey_meth_kdf_test.c
+++ b/test/pkey_meth_kdf_test.c
@@ -60,6 +60,7 @@ static int test_kdf_hkdf(void)
return 1;
}
+#ifndef OPENSSL_NO_SCRYPT
static int test_kdf_scrypt(void)
{
EVP_PKEY_CTX *pctx;
@@ -126,10 +127,13 @@ static int test_kdf_scrypt(void)
EVP_PKEY_CTX_free(pctx);
return 1;
}
+#endif
int setup_tests()
{
ADD_TEST(test_kdf_hkdf);
+#ifndef OPENSSL_NO_SCRYPT
ADD_TEST(test_kdf_scrypt);
+#endif
return 1;
}
More information about the openssl-commits
mailing list