diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-02-05 21:23:54 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-02-05 21:25:50 +0100 |
commit | 0d4fb8439092ff8253af72ac6bc193e77ebbcf2f (patch) | |
tree | 37245acc0ccd68923f888ec2e206a58925b60106 /crypto/cmac/cmac.c | |
parent | RT4070: Improve struct/union regexp (diff) | |
download | openssl-0d4fb8439092ff8253af72ac6bc193e77ebbcf2f.tar.xz openssl-0d4fb8439092ff8253af72ac6bc193e77ebbcf2f.zip |
GH601: Various spelling fixes.
Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/cmac/cmac.c')
-rw-r--r-- | crypto/cmac/cmac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/cmac/cmac.c b/crypto/cmac/cmac.c index 77f4ccbdea..cb30e6d5be 100644 --- a/crypto/cmac/cmac.c +++ b/crypto/cmac/cmac.c @@ -156,7 +156,7 @@ int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen, ctx->nlast_block = 0; return 1; } - /* Initialiase context */ + /* Initialise context */ if (cipher && !EVP_EncryptInit_ex(ctx->cctx, cipher, impl, NULL, NULL)) return 0; /* Non-NULL key means initialisation complete */ @@ -257,9 +257,9 @@ int CMAC_resume(CMAC_CTX *ctx) if (ctx->nlast_block == -1) return 0; /* - * The buffer "tbl" containes the last fully encrypted block which is the + * The buffer "tbl" contains the last fully encrypted block which is the * last IV (or all zeroes if no last encrypted block). The last block has - * not been modified since CMAC_final(). So reinitliasing using the last + * not been modified since CMAC_final(). So reinitialising using the last * decrypted block will allow CMAC to continue after calling * CMAC_Final(). */ |