From 836ea453502a51458b6278dd4665380cea9c5f5d Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 23 Aug 2010 14:32:20 +0000 Subject: [PATCH] gcm128.c: fix typo in CRYPTO_gcm128_encrypt_ctr32 name. --- crypto/modes/gcm128.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.34.1