mirror of
https://github.com/openssl/openssl.git
synced 2026-01-18 17:11:31 +01:00
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/29178)
13 lines
337 B
C
13 lines
337 B
C
#ifndef OSSL_CRYPTO_EVP_B64_AVX2_H
|
|
#define OSSL_CRYPTO_EVP_B64_AVX2_H
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#if defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
|
|
int encode_base64_avx2(EVP_ENCODE_CTX *ctx,
|
|
unsigned char *out, const unsigned char *src, int srclen,
|
|
int newlines, int *wrap_cnt);
|
|
#endif
|
|
|
|
#endif
|