]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Fix typos reported by Amos Jeffries. master
authorNiels Möller <nisse@lysator.liu.se>
Fri, 14 Nov 2025 16:20:47 +0000 (17:20 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Fri, 14 Nov 2025 16:20:47 +0000 (17:20 +0100)
ChangeLog
base64-decode.c
base64.h

index b85a37ee58f9c38a9c3650fc28840c831be309cf..53b57c303af37dc153d7f190c918562417209b0a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * rsa-sec-decrypt.c (rsa_sec_decrypt): New function.
        Fixed length side-channel silent version of rsa-decrypt.
-       * testsuite/rsa-encrypt-test.c: add tests for the new fucntion.
+       * testsuite/rsa-encrypt-test.c: add tests for the new function.
 
        * testsuite/pkcs1-sec-decrypt-test.c: Adds tests for
        _pkcs1_sec_decrypt.
        * testsuite/cbc-test.c (test_cbc_bulk): Use aes_set_encrypt_key
        and aes_set_decrypt_key.
 
-       * sparc/aes.asm (_aes_crypt): Use symbolic names for the fucntion
+       * sparc/aes.asm (_aes_crypt): Use symbolic names for the function
        arguments.
 
 2002-02-14  Niels Möller  <nisse@cuckoo.hack.org>
index 8956258f4af08060d237cb6d8043b9d1047e6f8b..0949b35b1cbac35421128d520c713c4e40adaad6 100644 (file)
@@ -1,4 +1,4 @@
-/* base64-encode.c
+/* base64-decode.c
 
    Copyright (C) 2002 Niels Möller
 
index dcf70bad4f860fed45b9ab05b415f56ea1158a50..3a31699e8ce64aeb8fa2146a1813c49f9126f2cb 100644 (file)
--- a/base64.h
+++ b/base64.h
@@ -110,7 +110,7 @@ base64_encode_final(struct base64_encode_ctx *ctx,
 /* Encodes a string in one go, including any padding at the end.
  * Generates exactly BASE64_ENCODE_RAW_LENGTH(length) bytes of output.
  * Supports overlapped operation, if src <= dst. FIXME: Use of overlap
- * is deprecated, if needed there should be a separate public fucntion
+ * is deprecated, if needed there should be a separate public function
  * to do that.*/
 void
 base64_encode_raw(char *dst, size_t length, const uint8_t *src);