]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Trivial bugfixes found during TROVE investigation.
authorGeorge Kadianakis <desnacked@riseup.net>
Mon, 10 Feb 2020 14:35:40 +0000 (16:35 +0200)
committerNick Mathewson <nickm@torproject.org>
Tue, 17 Mar 2020 15:43:03 +0000 (11:43 -0400)
src/feature/hs/hs_client.c
src/lib/crypt_ops/crypto_ed25519.c

index fd2d266453821722dbeb6736ac1d6d7e3a1ed549..0efe9fc28e7490024e79d0fee83b7de309dd907e 100644 (file)
@@ -1275,7 +1275,7 @@ hs_client_decode_descriptor(const char *desc_str,
   uint8_t subcredential[DIGEST256_LEN];
   ed25519_public_key_t blinded_pubkey;
   hs_client_service_authorization_t *client_auth = NULL;
-  curve25519_secret_key_t *client_auht_sk = NULL;
+  curve25519_secret_key_t *client_auth_sk = NULL;
 
   tor_assert(desc_str);
   tor_assert(service_identity_pk);
@@ -1284,7 +1284,7 @@ hs_client_decode_descriptor(const char *desc_str,
   /* Check if we have a client authorization for this service in the map. */
   client_auth = find_client_auth(service_identity_pk);
   if (client_auth) {
-    client_auht_sk = &client_auth->enc_seckey;
+    client_auth_sk = &client_auth->enc_seckey;
   }
 
   /* Create subcredential for this HS so that we can decrypt */
@@ -1297,7 +1297,7 @@ hs_client_decode_descriptor(const char *desc_str,
 
   /* Parse descriptor */
   ret = hs_desc_decode_descriptor(desc_str, subcredential,
-                                  client_auht_sk, desc);
+                                  client_auth_sk, desc);
   memwipe(subcredential, 0, sizeof(subcredential));
   if (ret < 0) {
     goto err;
index 400f9638983b04175e1f72b71c9214fac21ccaac..0a442bb7397af2abf2ce9a35bf3f7eb830cb39c0 100644 (file)
@@ -795,7 +795,7 @@ ed25519_point_is_identity_element(const uint8_t *point)
 int
 ed25519_validate_pubkey(const ed25519_public_key_t *pubkey)
 {
-  uint8_t result[32] = {9};
+  uint8_t result[32] = {0};
 
   /* First check that we were not given the identity element */
   if (ed25519_point_is_identity_element(pubkey->pubkey)) {