Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wim Lewis
nettle
Commits
d36fe12f
Commit
d36fe12f
authored
Aug 26, 2017
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Update openssl configure tests.
parent
5c78bb73
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+15
-0
15 additions, 0 deletions
ChangeLog
configure.ac
+2
-2
2 additions, 2 deletions
configure.ac
with
17 additions
and
2 deletions
ChangeLog
+
15
−
0
View file @
d36fe12f
2017-08-26 Niels Möller <nisse@lysator.liu.se>
* configure.ac: Update openssl-related tests. Checks for
cipher-specific headers are replaced by a check for openssl/evp.h,
and the check for the BF_ecb_encrypt function is replaced by a
check for EVP_CIPHER_CTX_new.
2017-08-03 Daniel P. Berrange <berrange@redhat.com>
* examples/nettle-openssl.c: Rewritten to use openssl's EVP APIs.
The older cipher-specific functions always use openssl's generic
software implementation, while the EVP functions enables
platform-specific code, e.g., using the x86 AES-NI instructions.
(nettle_openssl_init): New function.
2017-07-18 Niels Möller <nisse@lysator.liu.se>
* ecc-add-eh.c (ecc_add_eh): Fix in-place operation by reordering
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
2
View file @
d36fe12f
...
...
@@ -185,7 +185,7 @@ AC_HEADER_TIME
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(size_t)
AC_CHECK_HEADERS([openssl/
blowfish.h openssl/des.h openssl/cast.h openssl/aes
.h openssl/ecdsa.h],,
AC_CHECK_HEADERS([openssl/
evp
.h openssl/ecdsa.h],,
[enable_openssl=no
break])
...
...
@@ -876,7 +876,7 @@ OPENSSL_LIBFLAGS=''
# Check for openssl's libcrypto (used only for benchmarking)
if test x$enable_openssl = xyes ; then
AC_CHECK_LIB(crypto,
BF_ecb_encrypt
,
AC_CHECK_LIB(crypto,
EVP_CIPHER_CTX_new
,
[OPENSSL_LIBFLAGS='-lcrypto'],
[enable_openssl=no])
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment