Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benjamin J. Thompson
Tor
Commits
6b479b3c
Commit
6b479b3c
authored
19 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Only do openssl accel stuff if version is at least 0.9.7
svn:r4973
parent
09d83c56
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/crypto.c
+12
-1
12 additions, 1 deletion
src/common/crypto.c
with
12 additions
and
1 deletion
src/common/crypto.c
+
12
−
1
View file @
6b479b3c
...
...
@@ -22,7 +22,6 @@ const char crypto_c_id[] = "$Id$";
#include
<string.h>
#include
<openssl/engine.h>
#include
<openssl/err.h>
#include
<openssl/rsa.h>
#include
<openssl/pem.h>
...
...
@@ -65,6 +64,12 @@ const char crypto_c_id[] = "$Id$";
#define OPENSSL_095
#endif
#if OPENSSL_VERSION_NUMBER < 0x00907000l
#define NO_ENGINES
#else
#include
<openssl/engine.h>
#endif
/* Certain functions that return a success code in OpenSSL 0.9.6 return void
* (and don't indicate errors) in OpenSSL version 0.9.5.
*
...
...
@@ -161,6 +166,7 @@ crypto_log_errors(int severity, const char *doing)
}
}
#ifndef NO_ENGINES
static
void
log_engine
(
const
char
*
fn
,
ENGINE
*
e
)
{
...
...
@@ -174,6 +180,7 @@ log_engine(const char *fn, ENGINE *e)
log
(
LOG_INFO
,
"Using default implementation for %s"
,
fn
);
}
}
#endif
/** Initialize the crypto library. Return 0 on success, -1 on failure.
*/
...
...
@@ -185,6 +192,7 @@ crypto_global_init(int useAccel)
OpenSSL_add_all_algorithms
();
_crypto_global_initialized
=
1
;
setup_openssl_threading
();
#ifndef NO_ENGINES
if
(
useAccel
)
{
if
(
useAccel
<
0
)
log_fn
(
LOG_WARN
,
"Initializing OpenSSL via tor_tls_init()."
);
...
...
@@ -201,6 +209,7 @@ crypto_global_init(int useAccel)
log_engine
(
"3DES"
,
ENGINE_get_cipher_engine
(
NID_des_ede3_ecb
));
log_engine
(
"AES"
,
ENGINE_get_cipher_engine
(
NID_aes_128_ecb
));
}
#endif
}
return
0
;
}
...
...
@@ -210,7 +219,9 @@ crypto_global_init(int useAccel)
int
crypto_global_cleanup
()
{
ERR_free_strings
();
#ifndef NO_ENGINES
ENGINE_cleanup
();
#endif
#ifdef TOR_IS_MULTITHREADED
if
(
_n_openssl_mutexes
)
{
int
n
=
_n_openssl_mutexes
;
...
...
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