[tor-commits] [tor/master] crypto_format: Remove outdated comments

asn at torproject.org asn at torproject.org
Fri Apr 12 10:48:08 UTC 2019


commit 0d136a12bbc498991bcb364098021d0532d85ab0
Author: teor <teor at torproject.org>
Date:   Fri Apr 5 13:58:23 2019 +1000

    crypto_format: Remove outdated comments
    
    (These functions look pretty unified to me.)
    
    Part of 29660.
---
 src/lib/crypt_ops/crypto_format.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/lib/crypt_ops/crypto_format.c b/src/lib/crypt_ops/crypto_format.c
index 84f73e527..f37ec1046 100644
--- a/src/lib/crypt_ops/crypto_format.c
+++ b/src/lib/crypt_ops/crypto_format.c
@@ -253,7 +253,6 @@ ed25519_signature_from_base64(ed25519_signature_t *sig,
 /** Base64 encode DIGEST_LINE bytes from <b>digest</b>, remove the trailing =
  * characters, and store the nul-terminated result in the first
  * BASE64_DIGEST_LEN+1 bytes of <b>d64</b>.  */
-/* XXXX unify with crypto_format.c code */
 int
 digest_to_base64(char *d64, const char *digest)
 {
@@ -267,7 +266,6 @@ digest_to_base64(char *d64, const char *digest)
 /** Given a base64 encoded, nul-terminated digest in <b>d64</b> (without
  * trailing newline or = characters), decode it and store the result in the
  * first DIGEST_LEN bytes at <b>digest</b>. */
-/* XXXX unify with crypto_format.c code */
 int
 digest_from_base64(char *digest, const char *d64)
 {
@@ -280,7 +278,6 @@ digest_from_base64(char *digest, const char *d64)
 /** Base64 encode DIGEST256_LINE bytes from <b>digest</b>, remove the
  * trailing = characters, and store the nul-terminated result in the first
  * BASE64_DIGEST256_LEN+1 bytes of <b>d64</b>. */
- /* XXXX unify with crypto_format.c code */
 int
 digest256_to_base64(char *d64, const char *digest)
 {
@@ -294,7 +291,6 @@ digest256_to_base64(char *d64, const char *digest)
 /** Given a base64 encoded, nul-terminated digest in <b>d64</b> (without
  * trailing newline or = characters), decode it and store the result in the
  * first DIGEST256_LEN bytes at <b>digest</b>. */
-/* XXXX unify with crypto_format.c code */
 int
 digest256_from_base64(char *digest, const char *d64)
 {





More information about the tor-commits mailing list