Home
last modified time | relevance | path

Searched refs:left (Results 1 – 20 of 20) sorted by relevance

/net-tools-2.7.6/mbedtls-2.4.0/library/
Dmd2.c113 ctx->left = 0; in mbedtls_md2_starts()
161 if( ctx->left + ilen > 16 ) in mbedtls_md2_update()
162 fill = 16 - ctx->left; in mbedtls_md2_update()
166 memcpy( ctx->buffer + ctx->left, input, fill ); in mbedtls_md2_update()
168 ctx->left += fill; in mbedtls_md2_update()
172 if( ctx->left == 16 ) in mbedtls_md2_update()
174 ctx->left = 0; in mbedtls_md2_update()
188 x = (unsigned char)( 16 - ctx->left ); in mbedtls_md2_finish()
190 for( i = ctx->left; i < 16; i++ ) in mbedtls_md2_finish()
Dmd4.c223 uint32_t left; in mbedtls_md4_update() local
228 left = ctx->total[0] & 0x3F; in mbedtls_md4_update()
229 fill = 64 - left; in mbedtls_md4_update()
237 if( left && ilen >= fill ) in mbedtls_md4_update()
239 memcpy( (void *) (ctx->buffer + left), in mbedtls_md4_update()
244 left = 0; in mbedtls_md4_update()
256 memcpy( (void *) (ctx->buffer + left), in mbedtls_md4_update()
Dmd5.c242 uint32_t left; in mbedtls_md5_update() local
247 left = ctx->total[0] & 0x3F; in mbedtls_md5_update()
248 fill = 64 - left; in mbedtls_md5_update()
256 if( left && ilen >= fill ) in mbedtls_md5_update()
258 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_md5_update()
262 left = 0; in mbedtls_md5_update()
274 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_md5_update()
Dsha256.c245 uint32_t left; in mbedtls_sha256_update() local
250 left = ctx->total[0] & 0x3F; in mbedtls_sha256_update()
251 fill = 64 - left; in mbedtls_sha256_update()
259 if( left && ilen >= fill ) in mbedtls_sha256_update()
261 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha256_update()
265 left = 0; in mbedtls_sha256_update()
276 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha256_update()
Dsha512.c276 unsigned int left; in mbedtls_sha512_update() local
281 left = (unsigned int) (ctx->total[0] & 0x7F); in mbedtls_sha512_update()
282 fill = 128 - left; in mbedtls_sha512_update()
289 if( left && ilen >= fill ) in mbedtls_sha512_update()
291 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha512_update()
295 left = 0; in mbedtls_sha512_update()
306 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha512_update()
Dhmac_drbg.c256 size_t left = out_len; in mbedtls_hmac_drbg_random_with_add() local
283 while( left != 0 ) in mbedtls_hmac_drbg_random_with_add()
285 size_t use_len = left > md_len ? md_len : left; in mbedtls_hmac_drbg_random_with_add()
293 left -= use_len; in mbedtls_hmac_drbg_random_with_add()
Dripemd160.c300 uint32_t left; in mbedtls_ripemd160_update() local
305 left = ctx->total[0] & 0x3F; in mbedtls_ripemd160_update()
306 fill = 64 - left; in mbedtls_ripemd160_update()
314 if( left && ilen >= fill ) in mbedtls_ripemd160_update()
316 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_ripemd160_update()
320 left = 0; in mbedtls_ripemd160_update()
332 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_ripemd160_update()
Dsha1.c276 uint32_t left; in mbedtls_sha1_update() local
281 left = ctx->total[0] & 0x3F; in mbedtls_sha1_update()
282 fill = 64 - left; in mbedtls_sha1_update()
290 if( left && ilen >= fill ) in mbedtls_sha1_update()
292 memcpy( (void *) (ctx->buffer + left), input, fill ); in mbedtls_sha1_update()
296 left = 0; in mbedtls_sha1_update()
307 memcpy( (void *) (ctx->buffer + left), input, ilen ); in mbedtls_sha1_update()
Dssl_ticket.c174 size_t left = buf_len; in ssl_save_session() local
179 if( left < sizeof( mbedtls_ssl_session ) ) in ssl_save_session()
184 left -= sizeof( mbedtls_ssl_session ); in ssl_save_session()
192 if( left < 3 + cert_len ) in ssl_save_session()
/net-tools-2.7.6/mbedtls-2.4.0/programs/pkey/
Dgen_key.c58 size_t ret, left = len; in dev_random_entropy_poll() local
68 while( left > 0 ) in dev_random_entropy_poll()
71 ret = fread( p, 1, left, file ); in dev_random_entropy_poll()
79 left -= ret; in dev_random_entropy_poll()
/net-tools-2.7.6/mbedtls-2.4.0/include/mbedtls/
Dmd2.h50 size_t left; /*!< amount of data in buffer */ member
/net-tools-2.7.6/mbedtls-2.4.0/tests/suites/
Dtest_suite_ecdh.function67 /* Fix rnd_buf_A by shifting it left if necessary */
83 /* Fix rnd_buf_B by shifting it left if necessary */
Dtest_suite_ecdsa.function70 /* Fix rnd_buf by shifting it left if necessary */
Dtest_suite_x509parse.data1037 X509 Certificate ASN1 (signature, data left)
/net-tools-2.7.6/libcoap/src/
Dresource.c172 size_t left, written = 0; local
266 left = bufend - p; /* calculate available space */
267 result = coap_print_link(r, p, &left, &offset);
276 written += left;
/net-tools-2.7.6/tinydtls-0.8.2/doc/
DDoxyfile.in39 # where doxygen was started. If left blank the current directory will be used.
84 # If left blank, the following values are used ("$name" is automatically
112 # only done if one of the specified strings matches the left-hand part of
114 # If left blank the directory from which doxygen is run is used as the
122 # If left blank only the name of the header file containing the class
522 # by doxygen. Possible values are YES and NO. If left blank NO is used.
527 # generated by doxygen. Possible values are YES and NO. If left blank
563 # and error messages should be written. If left blank the output is written
589 # and *.h) to filter out the source-files in the directories. If left
598 # If left blank NO is used.
[all …]
/net-tools-2.7.6/mbedtls-2.4.0/doxygen/
Dmbedtls.doxyfile55 # where doxygen was started. If left blank the current directory will be used.
100 # If left blank, the following values are used ("$name" is automatically
138 # only done if one of the specified strings matches the left-hand part of
140 # If left blank the directory from which doxygen is run is used as the
150 # If left blank only the name of the header file containing the class
612 # by doxygen. Possible values are YES and NO. If left blank NO is used.
617 # generated by doxygen. Possible values are YES and NO. If left blank
653 # and error messages should be written. If left blank the output is written
679 # and *.h) to filter out the source-files in the directories. If left
689 # If left blank NO is used.
[all …]
/net-tools-2.7.6/python-websocket-server/
DREADME.md90 The client passed to the callback is the client that left, sent the message, etc. The server might …
/net-tools-2.7.6/libcoap/doc/
DDoxyfile.in59 # left blank the current directory will be used.
116 # text. Otherwise, the brief description is used as-is. If left blank, the
146 # Stripping is only done if one of the specified strings matches the left-hand
148 # If left blank the directory from which doxygen is run is used as the path to
159 # header file to include in order to use a class. If left blank only the name of
673 # tag is left empty.
741 # messages should be written. If left blank the output is written to standard
770 # *.h) to filter out the source-files in the directories. If left blank the
830 # *.h) to filter out the source-files in the directories. If left blank all
1052 # each generated HTML page. If the tag is left blank doxygen will generate a
[all …]
/net-tools-2.7.6/libcoap/
DChangeLog211 -B to set timeout after which the main loop is left.