summaryrefslogtreecommitdiffstats
path: root/crypto/modes/gcm128.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2010-08-23 14:32:20 +0000
committerAndy Polyakov <appro@openssl.org>2010-08-23 14:32:20 +0000
commit836ea453502a51458b6278dd4665380cea9c5f5d (patch)
treeff4b8ed9f4f288dfefe6c2d4426a82bb129c55a2 /crypto/modes/gcm128.c
parent72f421934a5f04a7548ad7b3297e8ca84f466a43 (diff)
gcm128.c: fix typo in CRYPTO_gcm128_encrypt_ctr32 name.
Diffstat (limited to 'crypto/modes/gcm128.c')
-rw-r--r--crypto/modes/gcm128.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c
index ede9c7cccd..4c4b2d7f96 100644
--- a/crypto/modes/gcm128.c
+++ b/crypto/modes/gcm128.c
@@ -1092,7 +1092,7 @@ void CRYPTO_gcm128_decrypt(GCM128_CONTEXT *ctx,
ctx->res = n;
}
-void CRYPTO_gcm128_encrypt_crt32(GCM128_CONTEXT *ctx,
+void CRYPTO_gcm128_encrypt_ctr32(GCM128_CONTEXT *ctx,
const unsigned char *in, unsigned char *out,
size_t len, ctr128_f stream)
{