mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
move variable declarations to top of function
svn:r425
This commit is contained in:
parent
fd20011c26
commit
99d1e4931b
@ -135,13 +135,14 @@ tor_tls_write_certificate(char *certfile, crypto_pk_env_t *rsa, char *nickname)
|
||||
tor_tls_context *
|
||||
tor_tls_context_new(char *certfile, crypto_pk_env_t *rsa, int isServer)
|
||||
{
|
||||
assert(!rsa || rsa->type == CRYPTO_PK_RSA);
|
||||
assert((certfile && rsa) || (!certfile && !rsa));
|
||||
crypto_dh_env_t *dh = NULL;
|
||||
RSA *_rsa = NULL;
|
||||
EVP_PKEY *pkey = NULL;
|
||||
tor_tls_context *result;
|
||||
|
||||
assert(!rsa || rsa->type == CRYPTO_PK_RSA);
|
||||
assert((certfile && rsa) || (!certfile && !rsa));
|
||||
|
||||
result = tor_malloc(sizeof(tor_tls_context));
|
||||
if (!(result->ctx = SSL_CTX_new(TLSv1_method())))
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user