Searched refs:mbedtls_arc4_crypt (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/mbedtls/library/ |
A D | arc4.c | 97 int mbedtls_arc4_crypt( mbedtls_arc4_context *ctx, size_t length, const unsigned char *input, in mbedtls_arc4_crypt() function 175 mbedtls_arc4_crypt( &ctx, 8, ibuf, obuf ); in mbedtls_arc4_self_test()
|
A D | pkcs12.c | 163 if( ( ret = mbedtls_arc4_crypt( &ctx, len, data, output ) ) != 0 ) in mbedtls_pkcs12_pbe_sha1_rc4_128()
|
A D | cipher_wrap.c | 1825 return( mbedtls_arc4_crypt( (mbedtls_arc4_context *) ctx, length, input, output ) ); in arc4_crypt_stream_wrap()
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | arc4.h | 123 int mbedtls_arc4_crypt( mbedtls_arc4_context *ctx, size_t length, const unsigned char *input,
|
A D | compat-1.3.h | 1728 #define arc4_crypt mbedtls_arc4_crypt
|
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/lwip/src/include/netif/ppp/ |
A D | pppcrypt.h | 127 #define lwip_arc4_crypt(context, buffer, length) mbedtls_arc4_crypt(context, length, buffer, buffer)
|
/AliOS-Things-master/components/lwip/lwip2.0.0/include/netif/ppp/ |
A D | pppcrypt.h | 127 #define lwip_arc4_crypt(context, buffer, length) mbedtls_arc4_crypt(context, length, buffer, buffer)
|
/AliOS-Things-master/components/mbedtls/programs/test/ |
A D | benchmark.c | 401 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) ); in main()
|
Completed in 23 milliseconds