Home
last modified time | relevance | path

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

/NetX-Duo-v6.2.1/addons/websocket/
Dnx_sha1.c314 ULONG padding_bytes; in _nx_sha1_digest_calculate() local
331padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_sha1_digest_calculate()
334 _nx_sha1_update(context, _nx_sha1_padding, padding_bytes); in _nx_sha1_digest_calculate()
/NetX-Duo-v6.2.1/addons/snmp/
Dnx_sha1.c314 ULONG padding_bytes; in _nx_sha1_digest_calculate() local
331padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_sha1_digest_calculate()
334 _nx_sha1_update(context, _nx_sha1_padding, padding_bytes); in _nx_sha1_digest_calculate()
/NetX-Duo-v6.2.1/crypto_libraries/src/
Dnx_crypto_sha1.c325 ULONG padding_bytes; in _nx_crypto_sha1_digest_calculate() local
343padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_crypto_sha1_digest_calculate()
346 _nx_crypto_sha1_update(context, (UCHAR*)_nx_crypto_sha1_padding, padding_bytes); in _nx_crypto_sha1_digest_calculate()
Dnx_crypto_sha5.c368 ULONG padding_bytes; in _nx_crypto_sha512_digest_calculate() local
395padding_bytes = (current_byte_count < 112) ? (112 - current_byte_count) : (240 - current_byte_cou… in _nx_crypto_sha512_digest_calculate()
398 _nx_crypto_sha512_update(context, (UCHAR *)_nx_crypto_sha512_padding, padding_bytes); in _nx_crypto_sha512_digest_calculate()
Dnx_crypto_md5.c343 ULONG padding_bytes; in _nx_crypto_md5_digest_calculate() local
361padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_crypto_md5_digest_calculate()
364 _nx_crypto_md5_update(context, (UCHAR*)_nx_crypto_md5_padding, padding_bytes); in _nx_crypto_md5_digest_calculate()
Dnx_crypto_sha2.c322 ULONG padding_bytes; in _nx_crypto_sha256_digest_calculate() local
335padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_crypto_sha256_digest_calculate()
338 _nx_crypto_sha256_update(context, (UCHAR*)_nx_crypto_sha256_padding, padding_bytes); in _nx_crypto_sha256_digest_calculate()
/NetX-Duo-v6.2.1/common/src/
Dnx_md5.c331 ULONG padding_bytes; in _nx_md5_digest_calculate() local
348padding_bytes = (current_byte_count < 56) ? (56 - current_byte_count) : (120 - current_byte_count… in _nx_md5_digest_calculate()
351 _nx_md5_update(context, _nx_md5_padding, padding_bytes); in _nx_md5_digest_calculate()