diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-27 15:59:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-27 16:18:42 -0400 |
commit | 235ddb15a0f9fc322002ba39e8900634316dc333 (patch) | |
tree | 8b18c9ff270a8f2413cab4fa9408b60dade0baf0 /src/lib/crypt_ops/crypto_rsa.c | |
parent | 3cff3e825a1478fc3350bbca16f091b8f635f921 (diff) | |
download | tor-235ddb15a0f9fc322002ba39e8900634316dc333.tar.gz tor-235ddb15a0f9fc322002ba39e8900634316dc333.zip |
Move util_format into a new libtor-encoding library
libtor-encoding is about various ways to transform data to and from
character sequences.
Diffstat (limited to 'src/lib/crypt_ops/crypto_rsa.c')
-rw-r--r-- | src/lib/crypt_ops/crypto_rsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypt_ops/crypto_rsa.c b/src/lib/crypt_ops/crypto_rsa.c index 3f2f8544f7..a62c0018f9 100644 --- a/src/lib/crypt_ops/crypto_rsa.c +++ b/src/lib/crypt_ops/crypto_rsa.c @@ -35,7 +35,7 @@ ENABLE_GCC_WARNING(redundant-decls) #include "lib/log/torlog.h" #include "common/util.h" -#include "common/util_format.h" +#include "lib/encoding/binascii.h" /** Declaration for crypto_pk_t structure. */ struct crypto_pk_t |