diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2016-03-10 21:34:48 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-04-04 21:06:32 +0200 |
commit | 620d540bd47a96fb6905fbbdd8ea5167a8841a3e (patch) | |
tree | f1686eadbd85f953a44d0527774fd6d4007d4c3e /crypto/poly1305 | |
parent | Fix a possible leak on NETSCAPE_SPKI_verify failure. (diff) | |
download | openssl-620d540bd47a96fb6905fbbdd8ea5167a8841a3e.tar.xz openssl-620d540bd47a96fb6905fbbdd8ea5167a8841a3e.zip |
various spelling fixes
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/poly1305')
-rw-r--r-- | crypto/poly1305/poly1305.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/poly1305/poly1305.c b/crypto/poly1305/poly1305.c index 6bec8b30f8..8d069b97d0 100644 --- a/crypto/poly1305/poly1305.c +++ b/crypto/poly1305/poly1305.c @@ -94,7 +94,7 @@ typedef unsigned int u32; * POLY1305_BLOCK_SIZE and |padbit| to 0. In all other cases |padbit| * should be set to 1 to perform implicit padding with 128th bit. * poly1305_blocks does not actually check for this constraint though, - * it's caller(*)'s resposibility to comply. + * it's caller(*)'s responsibility to comply. * * (*) In the context "caller" is not application code, but higher * level Poly1305_* from this very module, so that quirks are |