26 #ifndef MBEDTLS_ARC4_H 27 #define MBEDTLS_ARC4_H 29 #if !defined(MBEDTLS_CONFIG_FILE) 32 #include MBEDTLS_CONFIG_FILE 39 #define MBEDTLS_ERR_ARC4_HW_ACCEL_FAILED -0x0019 45 #if !defined(MBEDTLS_ARC4_ALT) 105 unsigned int keylen );
123 unsigned char *output );
125 #if defined(MBEDTLS_SELF_TEST) int mbedtls_arc4_crypt(mbedtls_arc4_context *ctx, size_t length, const unsigned char *input, unsigned char *output)
ARC4 cipher function.
Configuration options (set of defines)
void mbedtls_arc4_init(mbedtls_arc4_context *ctx)
Initialize ARC4 context.
struct mbedtls_arc4_context mbedtls_arc4_context
ARC4 context structure.
void mbedtls_arc4_free(mbedtls_arc4_context *ctx)
Clear ARC4 context.
void mbedtls_arc4_setup(mbedtls_arc4_context *ctx, const unsigned char *key, unsigned int keylen)
ARC4 key schedule.
int mbedtls_arc4_self_test(int verbose)
Checkup routine.