Lines Matching defs:operation

163 static int aes_crypt_ecb_wrap(void *ctx, mbedtls_operation_t operation,
166 return mbedtls_aes_crypt_ecb((mbedtls_aes_context *) ctx, operation, input, output);
170 static int aes_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation, size_t length,
173 return mbedtls_aes_crypt_cbc((mbedtls_aes_context *) ctx, operation, length, iv, input,
179 static int aes_crypt_cfb128_wrap(void *ctx, mbedtls_operation_t operation,
183 return mbedtls_aes_crypt_cfb128((mbedtls_aes_context *) ctx, operation, length, iv_off, iv,
208 static int aes_crypt_xts_wrap(void *ctx, mbedtls_operation_t operation,
217 switch (operation) {
777 static int camellia_crypt_ecb_wrap(void *ctx, mbedtls_operation_t operation,
780 return mbedtls_camellia_crypt_ecb((mbedtls_camellia_context *) ctx, operation, input,
785 static int camellia_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation,
789 return mbedtls_camellia_crypt_cbc((mbedtls_camellia_context *) ctx, operation, length, iv,
795 static int camellia_crypt_cfb128_wrap(void *ctx, mbedtls_operation_t operation,
799 return mbedtls_camellia_crypt_cfb128((mbedtls_camellia_context *) ctx, operation, length,
1194 static int aria_crypt_ecb_wrap(void *ctx, mbedtls_operation_t operation,
1197 (void) operation;
1203 static int aria_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation,
1207 return mbedtls_aria_crypt_cbc((mbedtls_aria_context *) ctx, operation, length, iv,
1213 static int aria_crypt_cfb128_wrap(void *ctx, mbedtls_operation_t operation,
1217 return mbedtls_aria_crypt_cfb128((mbedtls_aria_context *) ctx, operation, length,
1612 static int des_crypt_ecb_wrap(void *ctx, mbedtls_operation_t operation,
1615 ((void) operation);
1619 static int des3_crypt_ecb_wrap(void *ctx, mbedtls_operation_t operation,
1622 ((void) operation);
1627 static int des_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation, size_t length,
1630 return mbedtls_des_crypt_cbc((mbedtls_des_context *) ctx, operation, length, iv, input,
1636 static int des3_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation, size_t length,
1639 return mbedtls_des3_crypt_cbc((mbedtls_des3_context *) ctx, operation, length, iv, input,