diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-11-30 06:27:59 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-11-30 06:27:59 +0000 |
commit | 9cec3a13f510f09f328f824796676f24a99ccf35 (patch) | |
tree | 399bc151d8add56eefb4477e5cb384a848dda850 /src/common/crypto.c | |
parent | a6eb8cd2a0a206c7cc975751044723e4bcc60b7b (diff) | |
download | tor-9cec3a13f510f09f328f824796676f24a99ccf35.tar.gz tor-9cec3a13f510f09f328f824796676f24a99ccf35.zip |
remove some functions that are not used; #if0 out some files that are not likely to be used.
svn:r5471
Diffstat (limited to 'src/common/crypto.c')
-rw-r--r-- | src/common/crypto.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c index 4ebeb949e2..41ef3396a9 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -1205,15 +1205,6 @@ crypto_cipher_decrypt(crypto_cipher_env_t *env, char *to, return 0; } -/** Move the position of the cipher stream backwards by <b>delta</b> bytes. - * Return 0 on success, -1 on failure. - */ -int -crypto_cipher_rewind(crypto_cipher_env_t *env, long delta) -{ - return crypto_cipher_advance(env, -delta); -} - /** Move the position of the cipher stream forwards by <b>delta</b> bytes. * Return 0 on success, -1 on failure. */ |