summaryrefslogtreecommitdiffstats
path: root/crypto/kdf
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2019-07-08 09:49:33 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2019-07-09 14:03:44 +0200
commit7a228c391e0a35e1dc1223e3af3371968376857b (patch)
treede06fe313b221776664c889e35067b59701b6512 /crypto/kdf
parent1aec7716c1c5fccf605a46252a46ea468e684454 (diff)
Replace long dash characters with normal ascii minus
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9321)
Diffstat (limited to 'crypto/kdf')
-rw-r--r--crypto/kdf/sskdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/kdf/sskdf.c b/crypto/kdf/sskdf.c
index 31a1c1044e..62372a50ed 100644
--- a/crypto/kdf/sskdf.c
+++ b/crypto/kdf/sskdf.c
@@ -17,7 +17,7 @@
* Result(0) = empty bit string (i.e., the null string).
* For i = 1 to reps, do the following:
* Increment counter by 1.
- * Result(i) = Result(i – 1) || H(counter || Z || FixedInfo).
+ * Result(i) = Result(i - 1) || H(counter || Z || FixedInfo).
* DKM = LeftmostBits(Result(reps), L))
*
* NOTES: