summaryrefslogtreecommitdiff
path: root/src/basic/hmac.h
diff options
context:
space:
mode:
authorDimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>2021-10-20 09:38:57 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-10-20 22:20:18 +0900
commitba669952b2b706833ce00d1d1eb26ddc4118b578 (patch)
tree7cd83ae11a107dc76199c706973e6f8b2727a732 /src/basic/hmac.h
parent231c7645ca761f0347c98fa48c68b3fde00fbc15 (diff)
downloadsystemd-ba669952b2b706833ce00d1d1eb26ddc4118b578.tar.gz
Typos found by codespell
Diffstat (limited to 'src/basic/hmac.h')
-rw-r--r--src/basic/hmac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/hmac.h b/src/basic/hmac.h
index 12b594c09b..a5682c439f 100644
--- a/src/basic/hmac.h
+++ b/src/basic/hmac.h
@@ -8,5 +8,5 @@
/* Unoptimized implementation based on FIPS 198. 'res' has to be allocated by
* the caller. Prefer external OpenSSL functions, and use this only when
- * linking to OpenSSL is not desireable (eg: libsystemd.so). */
+ * linking to OpenSSL is not desirable (eg: libsystemd.so). */
void hmac_sha256(const void *key, size_t key_size, const void *input, size_t input_size, uint8_t res[static SHA256_DIGEST_SIZE]);