Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2023-11-14 10:11:16 +01:00
parent 02a4c8cfa9
commit 14bd0bc743
14 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -322,7 +322,7 @@ struct crypto_tester_t {
*
* @param ke key exchange method to test
* @param create constructor function for the key exchange method
* @param speed speeed test result, NULL to omit
* @param speed speed test result, NULL to omit
* @return TRUE if test passed
*/
bool (*test_ke)(crypto_tester_t *this, key_exchange_method_t ke,
@@ -59,7 +59,7 @@ bool openssl_fingerprint(EVP_PKEY *key, cred_encoding_type_t type, chunk_t *fp);
/**
* Concatenates two bignums into a chunk, thereby enforcing the length of
* a single BIGNUM, if necessary, by pre-pending it with zeros.
* a single BIGNUM, if necessary, by prepending it with zeros.
*
* Note: this function allocates memory for the chunk
*
@@ -65,7 +65,7 @@ bool wolfssl_mp_split(chunk_t chunk, mp_int *a, mp_int *b);
/**
* Concatenates two integers into a chunk, thereby enforcing the length of
* a single integer, if necessary, by pre-pending it with zeros.
* a single integer, if necessary, by prepending it with zeros.
*
* Note: this function allocates memory for the chunk
*
@@ -43,7 +43,7 @@ struct x509_ocsp_response_t {
* Generate a X.509 OCSP response.
*
* The resulting builder accepts:
* BUILD_OCSP_STATUS: status from OCSP respnder
* BUILD_OCSP_STATUS: status from OCSP responder
* BUILD_OCSP_RESPONSES: enumerator over the list of OCSP single responses
* BUILD_NONCE: nonce extracted from the OCSP request
* BUILD_SIGNING_CERT: certificate to create OCSP response signature
+2 -2
View File
@@ -133,7 +133,7 @@ chunk_t *chunk_map(char *path, bool wr);
/**
* munmap() a chunk previously mapped with chunk_map().
*
* When unmapping a writeable map, the return value should be checked to
* When unmapping a writable map, the return value should be checked to
* ensure changes landed on disk.
*
* @param chunk pointer returned from chunk_map()
@@ -146,7 +146,7 @@ bool chunk_unmap(chunk_t *chunk);
*
* @note Writable maps (i.e. created with wr = TRUE) are NOT cleared.
*
* When unmapping a writeable map, the return value should be checked to
* When unmapping a writable map, the return value should be checked to
* ensure changes landed on disk.
*
* @param chunk pointer returned from chunk_map()
+1 -1
View File
@@ -120,7 +120,7 @@ void utils_deinit();
#endif
/**
* Address santizer support
* Address sanitizer support
*/
#if __has_feature(address_sanitizer) || \
(defined(__GNUC__) && defined(__SANITIZE_ADDRESS__))