summaryrefslogtreecommitdiffstats
path: root/providers/implementations/ciphers/cipher_chacha20_poly1305.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/ciphers/cipher_chacha20_poly1305.c')
-rw-r--r--providers/implementations/ciphers/cipher_chacha20_poly1305.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_chacha20_poly1305.c b/providers/implementations/ciphers/cipher_chacha20_poly1305.c
index b328cdb993..46c20fd7c5 100644
--- a/providers/implementations/ciphers/cipher_chacha20_poly1305.c
+++ b/providers/implementations/ciphers/cipher_chacha20_poly1305.c
@@ -55,7 +55,7 @@ static void *chacha20_poly1305_newctx(void *provctx)
NULL);
ctx->nonce_len = CHACHA20_POLY1305_IVLEN;
ctx->tls_payload_length = NO_TLS_PAYLOAD_LENGTH;
- chacha20_initctx(&ctx->chacha);
+ ossl_chacha20_initctx(&ctx->chacha);
}
return ctx;
}