summaryrefslogtreecommitdiffstats
path: root/crypto/modes/gcm128.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-02-03 11:20:56 -0500
committerRich Salz <rsalz@openssl.org>2015-02-03 11:20:56 -0500
commitdfb56425b68314b2b57e17c82c1df42e7a015132 (patch)
tree0f727a8bfd00e1ca5bccc77cc0f25ef27f911f0f /crypto/modes/gcm128.c
parent156a872233b56558c72561789b8f33ff71a88fa7 (diff)
Dead code: crypto/dh,modes,pkcs12,ripemd,rsa,srp
And an uncompiled C++ test file. Also remove srp_lcl.h, with help from Richard. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/modes/gcm128.c')
-rw-r--r--crypto/modes/gcm128.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c
index 5c75c91f82..1d1b0d9b16 100644
--- a/crypto/modes/gcm128.c
+++ b/crypto/modes/gcm128.c
@@ -1036,9 +1036,6 @@ int CRYPTO_gcm128_encrypt(GCM128_CONTEXT *ctx,
# endif
#endif
-#if 0
- n = (unsigned int)mlen % 16; /* alternative to ctx->mres */
-#endif
mlen += len;
if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len))
return -1;