Home
last modified time | relevance | path

Searched refs:NX_CRYPTO_3DES (Results 1 – 3 of 3) sorted by relevance

/NetX-Duo-v6.3.0/crypto_libraries/src/
Dnx_crypto_3des.c72 NX_CRYPTO_KEEP UINT _nx_crypto_3des_key_set(NX_CRYPTO_3DES *context, UCHAR key[24]) in _nx_crypto_3des_key_set()
134 NX_CRYPTO_KEEP UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES *context, UCHAR source[8], in _nx_crypto_3des_encrypt()
200 NX_CRYPTO_KEEP UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES *context, UCHAR source[8], in _nx_crypto_3des_decrypt()
278 NX_CRYPTO_3DES *triple_des_context_ptr; in _nx_crypto_method_3des_init()
296 if(crypto_metadata_size < sizeof(NX_CRYPTO_3DES)) in _nx_crypto_method_3des_init()
307 triple_des_context_ptr = (NX_CRYPTO_3DES *)(crypto_metadata); in _nx_crypto_method_3des_init()
365 NX_CRYPTO_MEMSET(crypto_metadata, 0, sizeof(NX_CRYPTO_3DES)); in _nx_crypto_method_3des_cleanup()
450 NX_CRYPTO_3DES *context; in _nx_crypto_method_3des_operation()
478 if(crypto_metadata_size < sizeof(NX_CRYPTO_3DES)) in _nx_crypto_method_3des_operation()
489 context = (NX_CRYPTO_3DES *)crypto_metadata; in _nx_crypto_method_3des_operation()
Dnx_crypto_methods.c798 sizeof(NX_CRYPTO_3DES), /* Metadata size in bytes */
/NetX-Duo-v6.3.0/crypto_libraries/inc/
Dnx_crypto_3des.h104 } NX_CRYPTO_3DES; typedef
109 UINT _nx_crypto_3des_key_set(NX_CRYPTO_3DES * context, UCHAR key[24]);
110 UINT _nx_crypto_3des_encrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT …
111 UINT _nx_crypto_3des_decrypt(NX_CRYPTO_3DES * context, UCHAR source[8], UCHAR destination[8], UINT …