diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-05-09 09:06:40 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2023-06-15 02:11:46 +0200 |
commit | eb4129e12cdf7fe64b3ce352f539e3dbeb1b1321 (patch) | |
tree | 70ffce338d4927b9053db6c3b7b8e16af9e9b681 /providers | |
parent | fips: update DSA security check to fix legacy verify strengths (diff) | |
download | openssl-eb4129e12cdf7fe64b3ce352f539e3dbeb1b1321.tar.xz openssl-eb4129e12cdf7fe64b3ce352f539e3dbeb1b1321.zip |
Fix typos found by codespell
Typos in doc/man* will be fixed in a different commit.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20910)
Diffstat (limited to 'providers')
4 files changed, 4 insertions, 4 deletions
diff --git a/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c b/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c index 4d147f3bc4..1b82e0f194 100644 --- a/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c +++ b/providers/implementations/ciphers/cipher_aes_gcm_siv_polyval.c @@ -74,7 +74,7 @@ void ossl_polyval_ghash_init(u128 Htable[16], const uint64_t H[2]) ossl_gcm_init_4bit(Htable, (u64*)tmp); } -/* Implmentation of POLYVAL via existing GHASH implementation */ +/* Implementation of POLYVAL via existing GHASH implementation */ void ossl_polyval_ghash_hash(const u128 Htable[16], uint8_t *tag, const uint8_t *inp, size_t len) { uint64_t out[2]; diff --git a/providers/implementations/encode_decode/encode_key2text.c b/providers/implementations/encode_decode/encode_key2text.c index 1692c1da64..4c8ca992d3 100644 --- a/providers/implementations/encode_decode/encode_key2text.c +++ b/providers/implementations/encode_decode/encode_key2text.c @@ -109,7 +109,7 @@ static int print_labeled_bignum(BIO *out, const char *label, const BIGNUM *bn) if ((bytes % 15) == 0 && bytes > 0) { if (BIO_printf(out, ":\n%s", spaces) <= 0) goto err; - use_sep = 0; /* The first byte on the next line doesnt have a : */ + use_sep = 0; /* The first byte on the next line doesn't have a : */ } if (BIO_printf(out, "%s%c%c", use_sep ? ":" : "", tolower(p[0]), tolower(p[1])) <= 0) diff --git a/providers/implementations/kdfs/argon2.c b/providers/implementations/kdfs/argon2.c index 4a0ffc573d..ffeb810fbc 100644 --- a/providers/implementations/kdfs/argon2.c +++ b/providers/implementations/kdfs/argon2.c @@ -1034,7 +1034,7 @@ static int kdf_argon2_derive(void *vctx, unsigned char *out, size_t outlen, ctx->md = EVP_MD_fetch(ctx->libctx, "blake2b512", ctx->propq); if (ctx->md == NULL) { ERR_raise_data(ERR_LIB_PROV, PROV_R_MISSING_MESSAGE_DIGEST, - "canot fetch blake2b512"); + "cannot fetch blake2b512"); return 0; } diff --git a/providers/implementations/rands/drbg_hash.c b/providers/implementations/rands/drbg_hash.c index bad20d00fe..b2395b61c8 100644 --- a/providers/implementations/rands/drbg_hash.c +++ b/providers/implementations/rands/drbg_hash.c @@ -166,7 +166,7 @@ static int add_bytes(PROV_DRBG *drbg, unsigned char *dst, /* Add the carry to the top of the dst if inlen is not the same size */ for (i = drbg->seedlen - inlen; i > 0; --i, d--) { *d += 1; /* Carry can only be 1 */ - if (*d != 0) /* exit if carry doesnt propagate to the next byte */ + if (*d != 0) /* exit if carry doesn't propagate to the next byte */ break; } } |