Home
last modified time | relevance | path

Searched refs:mbedtls_operation_t (Results 1 – 7 of 7) sorted by relevance

/reactos/sdk/include/reactos/libs/mbedtls/
H A Dcipher_internal.h75 int (*ecb_func)( void *ctx, mbedtls_operation_t mode,
80 int (*cbc_func)( void *ctx, mbedtls_operation_t mode, size_t length,
87 int (*cfb_func)( void *ctx, mbedtls_operation_t mode, size_t length, size_t *iv_off,
109 int (*xts_func)( void *ctx, mbedtls_operation_t mode, size_t length,
H A Dcipher.h235 } mbedtls_operation_t; typedef
320 mbedtls_operation_t operation;
570 static inline mbedtls_operation_t mbedtls_cipher_get_operation( in mbedtls_cipher_get_operation()
600 const mbedtls_operation_t operation );
H A Dcompat-1.3.h2146 #define operation_t mbedtls_operation_t
/reactos/dll/3rdparty/mbedtls/
H A Dcipher_wrap.c153 static int aes_crypt_ecb_wrap( void *ctx, mbedtls_operation_t operation, in aes_crypt_ecb_wrap()
169 static int aes_crypt_cfb128_wrap( void *ctx, mbedtls_operation_t operation, in aes_crypt_cfb128_wrap()
198 static int aes_crypt_xts_wrap( void *ctx, mbedtls_operation_t operation, in aes_crypt_xts_wrap()
682 static int camellia_crypt_ecb_wrap( void *ctx, mbedtls_operation_t operation, in camellia_crypt_ecb_wrap()
690 static int camellia_crypt_cbc_wrap( void *ctx, mbedtls_operation_t operation, in camellia_crypt_cbc_wrap()
1057 static int aria_crypt_ecb_wrap( void *ctx, mbedtls_operation_t operation, in aria_crypt_ecb_wrap()
1066 static int aria_crypt_cbc_wrap( void *ctx, mbedtls_operation_t operation, in aria_crypt_cbc_wrap()
1076 static int aria_crypt_cfb128_wrap( void *ctx, mbedtls_operation_t operation, in aria_crypt_cfb128_wrap()
1433 static int des_crypt_ecb_wrap( void *ctx, mbedtls_operation_t operation, in des_crypt_ecb_wrap()
1440 static int des3_crypt_ecb_wrap( void *ctx, mbedtls_operation_t operation, in des3_crypt_ecb_wrap()
[all …]
H A Dpkcs5.c230 …if( ( ret = mbedtls_cipher_setkey( &cipher_ctx, key, 8 * keylen, (mbedtls_operation_t) mode ) ) !=… in mbedtls_pkcs5_pbes2()
H A Dpkcs12.c230 …if( ( ret = mbedtls_cipher_setkey( &cipher_ctx, key, 8 * keylen, (mbedtls_operation_t) mode ) ) !=… in mbedtls_pkcs12_pbe()
H A Dcipher.c237 const mbedtls_operation_t operation ) in mbedtls_cipher_setkey()