aboutsummaryrefslogtreecommitdiff
path: root/src/common/crypto.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-04-08 20:56:33 +0000
committerNick Mathewson <nickm@torproject.org>2004-04-08 20:56:33 +0000
commitaa7cfd93e53f5d2d01abbc81ce8ee6f6d27ec3c5 (patch)
tree6cee8a54f8800578928b3365d39288ee468808e5 /src/common/crypto.h
parentd23769239651df818c70f26ab88d57fd712c25bc (diff)
downloadtor-aa7cfd93e53f5d2d01abbc81ce8ee6f6d27ec3c5.tar
tor-aa7cfd93e53f5d2d01abbc81ce8ee6f6d27ec3c5.tar.gz
Fix base32 implementation; make base32 implementation follow standard; add more tests for base32
svn:r1574
Diffstat (limited to 'src/common/crypto.h')
-rw-r--r--src/common/crypto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.h b/src/common/crypto.h
index d9da82a05..f3bd0e6a8 100644
--- a/src/common/crypto.h
+++ b/src/common/crypto.h
@@ -78,7 +78,7 @@ int crypto_pk_check_fingerprint_syntax(const char *s);
int base64_encode(char *dest, int destlen, const char *src, int srclen);
int base64_decode(char *dest, int destlen, const char *src, int srclen);
-#define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz012345"
+#define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567"
int base32_encode(char *dest, int destlen, const char *src, int srclen);
/* Key negotiation */