$34 GRAYBYTE WORDPRESS FILE MANAGER $35

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/openssl/include/openssl/

HOME
Current File : /opt/alt/openssl/include/openssl//modes.h
/* ====================================================================
 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
 *
 * Rights for redistribution and usage in source and binary
 * forms are granted according to the OpenSSL license.
 */

#include <stddef.h>

#ifdef  __cplusplus
extern "C" {
#endif
typedef void (*block128_f) (const unsigned char in[16],
                            unsigned char out[16], const void *key);

typedef void (*cbc128_f) (const unsigned char *in, unsigned char *out,
                          size_t len, const void *key,
                          unsigned char ivec[16], int enc);

typedef void (*ctr128_f) (const unsigned char *in, unsigned char *out,
                          size_t blocks, const void *key,
                          const unsigned char ivec[16]);

typedef void (*ccm128_f) (const unsigned char *in, unsigned char *out,
                          size_t blocks, const void *key,
                          const unsigned char ivec[16],
                          unsigned char cmac[16]);

void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
                           size_t len, const void *key,
                           unsigned char ivec[16], block128_f block);
void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
                           size_t len, const void *key,
                           unsigned char ivec[16], block128_f block);

void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
                           size_t len, const void *key,
                           unsigned char ivec[16],
                           unsigned char ecount_buf[16], unsigned int *num,
                           block128_f block);

void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
                                 size_t len, const void *key,
                                 unsigned char ivec[16],
                                 unsigned char ecount_buf[16],
                                 unsigned int *num, ctr128_f ctr);

void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
                           size_t len, const void *key,
                           unsigned char ivec[16], int *num,
                           block128_f block);

void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
                           size_t len, const void *key,
                           unsigned char ivec[16], int *num,
                           int enc, block128_f block);
void CRYPTO_cfb128_8_encrypt(const unsigned char *in, unsigned char *out,
                             size_t length, const void *key,
                             unsigned char ivec[16], int *num,
                             int enc, block128_f block);
void CRYPTO_cfb128_1_encrypt(const unsigned char *in, unsigned char *out,
                             size_t bits, const void *key,
                             unsigned char ivec[16], int *num,
                             int enc, block128_f block);

size_t CRYPTO_cts128_encrypt_block(const unsigned char *in,
                                   unsigned char *out, size_t len,
                                   const void *key, unsigned char ivec[16],
                                   block128_f block);
size_t CRYPTO_cts128_encrypt(const unsigned char *in, unsigned char *out,
                             size_t len, const void *key,
                             unsigned char ivec[16], cbc128_f cbc);
size_t CRYPTO_cts128_decrypt_block(const unsigned char *in,
                                   unsigned char *out, size_t len,
                                   const void *key, unsigned char ivec[16],
                                   block128_f block);
size_t CRYPTO_cts128_decrypt(const unsigned char *in, unsigned char *out,
                             size_t len, const void *key,
                             unsigned char ivec[16], cbc128_f cbc);

size_t CRYPTO_nistcts128_encrypt_block(const unsigned char *in,
                                       unsigned char *out, size_t len,
                                       const void *key,
                                       unsigned char ivec[16],
                                       block128_f block);
size_t CRYPTO_nistcts128_encrypt(const unsigned char *in, unsigned char *out,
                                 size_t len, const void *key,
                                 unsigned char ivec[16], cbc128_f cbc);
size_t CRYPTO_nistcts128_decrypt_block(const unsigned char *in,
                                       unsigned char *out, size_t len,
                                       const void *key,
                                       unsigned char ivec[16],
                                       block128_f block);
size_t CRYPTO_nistcts128_decrypt(const unsigned char *in, unsigned char *out,
                                 size_t len, const void *key,
                                 unsigned char ivec[16], cbc128_f cbc);

typedef struct gcm128_context GCM128_CONTEXT;

GCM128_CONTEXT *CRYPTO_gcm128_new(void *key, block128_f block);
void CRYPTO_gcm128_init(GCM128_CONTEXT *ctx, void *key, block128_f block);
void CRYPTO_gcm128_setiv(GCM128_CONTEXT *ctx, const unsigned char *iv,
                         size_t len);
int CRYPTO_gcm128_aad(GCM128_CONTEXT *ctx, const unsigned char *aad,
                      size_t len);
int CRYPTO_gcm128_encrypt(GCM128_CONTEXT *ctx,
                          const unsigned char *in, unsigned char *out,
                          size_t len);
int CRYPTO_gcm128_decrypt(GCM128_CONTEXT *ctx,
                          const unsigned char *in, unsigned char *out,
                          size_t len);
int CRYPTO_gcm128_encrypt_ctr32(GCM128_CONTEXT *ctx,
                                const unsigned char *in, unsigned char *out,
                                size_t len, ctr128_f stream);
int CRYPTO_gcm128_decrypt_ctr32(GCM128_CONTEXT *ctx,
                                const unsigned char *in, unsigned char *out,
                                size_t len, ctr128_f stream);
int CRYPTO_gcm128_finish(GCM128_CONTEXT *ctx, const unsigned char *tag,
                         size_t len);
void CRYPTO_gcm128_tag(GCM128_CONTEXT *ctx, unsigned char *tag, size_t len);
void CRYPTO_gcm128_release(GCM128_CONTEXT *ctx);

typedef struct ccm128_context CCM128_CONTEXT;

void CRYPTO_ccm128_init(CCM128_CONTEXT *ctx,
                        unsigned int M, unsigned int L, void *key,
                        block128_f block);
int CRYPTO_ccm128_setiv(CCM128_CONTEXT *ctx, const unsigned char *nonce,
                        size_t nlen, size_t mlen);
void CRYPTO_ccm128_aad(CCM128_CONTEXT *ctx, const unsigned char *aad,
                       size_t alen);
int CRYPTO_ccm128_encrypt(CCM128_CONTEXT *ctx, const unsigned char *inp,
                          unsigned char *out, size_t len);
int CRYPTO_ccm128_decrypt(CCM128_CONTEXT *ctx, const unsigned char *inp,
                          unsigned char *out, size_t len);
int CRYPTO_ccm128_encrypt_ccm64(CCM128_CONTEXT *ctx, const unsigned char *inp,
                                unsigned char *out, size_t len,
                                ccm128_f stream);
int CRYPTO_ccm128_decrypt_ccm64(CCM128_CONTEXT *ctx, const unsigned char *inp,
                                unsigned char *out, size_t len,
                                ccm128_f stream);
size_t CRYPTO_ccm128_tag(CCM128_CONTEXT *ctx, unsigned char *tag, size_t len);

typedef struct xts128_context XTS128_CONTEXT;

int CRYPTO_xts128_encrypt(const XTS128_CONTEXT *ctx,
                          const unsigned char iv[16],
                          const unsigned char *inp, unsigned char *out,
                          size_t len, int enc);

size_t CRYPTO_128_wrap(void *key, const unsigned char *iv,
                       unsigned char *out,
                       const unsigned char *in, size_t inlen,
                       block128_f block);

size_t CRYPTO_128_unwrap(void *key, const unsigned char *iv,
                         unsigned char *out,
                         const unsigned char *in, size_t inlen,
                         block128_f block);
size_t CRYPTO_128_wrap_pad(void *key, const unsigned char *icv,
                           unsigned char *out, const unsigned char *in,
                           size_t inlen, block128_f block);
size_t CRYPTO_128_unwrap_pad(void *key, const unsigned char *icv,
                             unsigned char *out, const unsigned char *in,
                             size_t inlen, block128_f block);

#ifdef  __cplusplus
}
#endif


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
1 Jan 1970 12.00 AM
root / root
0
aes.h
6.002 KB
6 Oct 2022 3.43 PM
root / root
0644
asn1.h
61.907 KB
6 Oct 2022 3.43 PM
root / root
0644
asn1_mac.h
23.862 KB
6 Oct 2022 3.43 PM
root / root
0644
asn1t.h
33.667 KB
6 Oct 2022 3.43 PM
root / root
0644
bio.h
37.834 KB
6 Oct 2022 3.43 PM
root / root
0644
blowfish.h
5.226 KB
6 Oct 2022 3.43 PM
root / root
0644
bn.h
42.789 KB
6 Oct 2022 3.43 PM
root / root
0644
buffer.h
4.908 KB
6 Oct 2022 3.43 PM
root / root
0644
camellia.h
5.435 KB
6 Oct 2022 3.43 PM
root / root
0644
cast.h
4.55 KB
6 Oct 2022 3.43 PM
root / root
0644
cmac.h
3.181 KB
6 Oct 2022 3.43 PM
root / root
0644
cms.h
27.97 KB
6 Oct 2022 3.43 PM
root / root
0644
comp.h
2.319 KB
6 Oct 2022 3.43 PM
root / root
0644
conf.h
11.053 KB
6 Oct 2022 3.43 PM
root / root
0644
conf_api.h
4.05 KB
6 Oct 2022 3.43 PM
root / root
0644
crypto.h
27.232 KB
6 Oct 2022 3.43 PM
root / root
0644
des.h
11.486 KB
6 Oct 2022 3.43 PM
root / root
0644
des_old.h
20.982 KB
6 Oct 2022 3.43 PM
root / root
0644
dh.h
16.457 KB
6 Oct 2022 3.43 PM
root / root
0644
dsa.h
14.846 KB
6 Oct 2022 3.43 PM
root / root
0644
dso.h
19.736 KB
6 Oct 2022 3.43 PM
root / root
0644
dtls1.h
8.834 KB
6 Oct 2022 3.43 PM
root / root
0644
e_os2.h
10.688 KB
6 Oct 2022 3.43 PM
root / root
0644
ebcdic.h
0.602 KB
6 Oct 2022 3.43 PM
root / root
0644
ec.h
54.753 KB
6 Oct 2022 3.43 PM
root / root
0644
ecdh.h
5.069 KB
6 Oct 2022 3.43 PM
root / root
0644
ecdsa.h
13.709 KB
6 Oct 2022 3.43 PM
root / root
0644
engine.h
43.893 KB
6 Oct 2022 3.43 PM
root / root
0644
err.h
16.455 KB
6 Oct 2022 3.43 PM
root / root
0644
evp.h
71.846 KB
6 Oct 2022 3.43 PM
root / root
0644
fips.h
13.312 KB
6 Oct 2022 3.43 PM
root / root
0644
fips_rand.h
7.109 KB
6 Oct 2022 3.43 PM
root / root
0644
hmac.h
4.429 KB
6 Oct 2022 3.43 PM
root / root
0644
idea.h
4.569 KB
6 Oct 2022 3.43 PM
root / root
0644
krb5_asn.h
7.974 KB
6 Oct 2022 3.43 PM
root / root
0644
kssl.h
6.692 KB
6 Oct 2022 3.43 PM
root / root
0644
lhash.h
9.325 KB
6 Oct 2022 3.43 PM
root / root
0644
md2.h
3.893 KB
6 Oct 2022 3.43 PM
root / root
0644
md4.h
4.674 KB
6 Oct 2022 3.43 PM
root / root
0644
md5.h
4.673 KB
6 Oct 2022 3.43 PM
root / root
0644
modes.h
8.455 KB
6 Oct 2022 3.43 PM
root / root
0644
obj_mac.h
171.54 KB
6 Oct 2022 3.43 PM
root / root
0644
objects.h
46.449 KB
6 Oct 2022 3.43 PM
root / root
0644
ocsp.h
26.511 KB
6 Oct 2022 3.43 PM
root / root
0644
opensslconf-x86_64.h
7.919 KB
6 Oct 2022 3.45 PM
root / root
0644
opensslconf.h
1.544 KB
6 Oct 2022 3.45 PM
root / root
0644
opensslv.h
3.85 KB
6 Oct 2022 3.43 PM
root / root
0644
ossl_typ.h
7.648 KB
6 Oct 2022 3.43 PM
root / root
0644
pem.h
25.331 KB
6 Oct 2022 3.43 PM
root / root
0644
pem2.h
2.795 KB
6 Oct 2022 3.43 PM
root / root
0644
pkcs12.h
14.503 KB
6 Oct 2022 3.43 PM
root / root
0644
pkcs7.h
20.291 KB
6 Oct 2022 3.43 PM
root / root
0644
pqueue.h
3.587 KB
6 Oct 2022 3.43 PM
root / root
0644
rand.h
6.727 KB
6 Oct 2022 3.43 PM
root / root
0644
rc2.h
4.439 KB
6 Oct 2022 3.43 PM
root / root
0644
rc4.h
3.718 KB
6 Oct 2022 3.43 PM
root / root
0644
rc5.h
4.815 KB
6 Oct 2022 3.43 PM
root / root
0644
ripemd.h
4.269 KB
6 Oct 2022 3.43 PM
root / root
0644
rsa.h
29.685 KB
6 Oct 2022 3.43 PM
root / root
0644
safestack.h
198.147 KB
6 Oct 2022 3.43 PM
root / root
0644
seed.h
5.898 KB
6 Oct 2022 3.43 PM
root / root
0644
sha.h
7.398 KB
6 Oct 2022 3.43 PM
root / root
0644
srtp.h
6.482 KB
6 Oct 2022 3.43 PM
root / root
0644
ssl.h
145.825 KB
6 Oct 2022 3.43 PM
root / root
0644
ssl2.h
11.767 KB
6 Oct 2022 3.43 PM
root / root
0644
ssl23.h
3.7 KB
6 Oct 2022 3.43 PM
root / root
0644
ssl3.h
32.501 KB
6 Oct 2022 3.43 PM
root / root
0644
stack.h
4.426 KB
6 Oct 2022 3.43 PM
root / root
0644
symhacks.h
27.165 KB
6 Oct 2022 3.43 PM
root / root
0644
tls1.h
38.487 KB
6 Oct 2022 3.43 PM
root / root
0644
ts.h
33.75 KB
6 Oct 2022 3.43 PM
root / root
0644
txt_db.h
4.522 KB
6 Oct 2022 3.43 PM
root / root
0644
ui.h
18.249 KB
6 Oct 2022 3.43 PM
root / root
0644
ui_compat.h
3.412 KB
6 Oct 2022 3.43 PM
root / root
0644
whrlpool.h
1.058 KB
6 Oct 2022 3.43 PM
root / root
0644
x509.h
52.065 KB
6 Oct 2022 3.43 PM
root / root
0644
x509_vfy.h
28.553 KB
6 Oct 2022 3.43 PM
root / root
0644
x509v3.h
39.442 KB
6 Oct 2022 3.43 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF