diff options
author | George Kadianakis <desnacked@gmail.com> | 2011-11-25 01:00:58 +0100 |
---|---|---|
committer | George Kadianakis <desnacked@gmail.com> | 2011-11-25 01:00:58 +0100 |
commit | 7c37a664c17f4dd9748f096ea385c3627cc323fa (patch) | |
tree | 8b9b82ce7c746f874eb913f88319e36fdbae2b29 /src/common/crypto.h | |
parent | 782c907c7cbd3bf2bb75680f5d3deb2d984052de (diff) | |
download | tor-7c37a664c17f4dd9748f096ea385c3627cc323fa.tar.gz tor-7c37a664c17f4dd9748f096ea385c3627cc323fa.zip |
Rename 'dynamic prime' to 'dynamic DH modulus'.
Diffstat (limited to 'src/common/crypto.h')
-rw-r--r-- | src/common/crypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/crypto.h b/src/common/crypto.h index 20298b3c49..504c59b1a7 100644 --- a/src/common/crypto.h +++ b/src/common/crypto.h @@ -95,8 +95,8 @@ int crypto_global_cleanup(void); crypto_pk_env_t *crypto_new_pk_env(void); void crypto_free_pk_env(crypto_pk_env_t *env); -void crypto_set_tls_dh_prime(const char *dynamic_prime_fname); -int crypto_store_dynamic_prime(const char *fname); +void crypto_set_tls_dh_prime(const char *dynamic_dh_modulus_fname); +int crypto_store_dynamic_dh_modulus(const char *fname); /* convenience function: wraps crypto_create_crypto_env, set_key, and init. */ crypto_cipher_env_t *crypto_create_init_cipher(const char *key, |