Home
last modified time | relevance | path

Searched refs:taglen (Results 1 – 4 of 4) sorted by relevance

/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/iptcutil/
A Diptcutil.c207 taglen; in formatIPTC() local
273 taglen = (((long) buffer[ 0 ]) << 24) | in formatIPTC()
283 taglen = x << 8; in formatIPTC()
287 taglen |= (long) x; in formatIPTC()
290 if ((taglen <= 0) || (taglen > 1048576)) in formatIPTC()
292 printf("Inappropriate IPTC tag length %ld\n",taglen); in formatIPTC()
296 str = (char *) malloc((unsigned int) (taglen+1)); in formatIPTC()
302 for (tagindx=0; tagindx<taglen; tagindx++) in formatIPTC()
312 str[ taglen ] = 0; in formatIPTC()
319 formatString( ofile, str, taglen ); in formatIPTC()
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/source/
A Dhmac.c125 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx) in tc_hmac_final() argument
130 taglen != TC_SHA256_DIGEST_SIZE || in tc_hmac_final()
/AliOS-Things-master/components/ble_host/bt_crypto/tinycrypt/include/tinycrypt/
A Dhmac.h133 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx);
/AliOS-Things-master/components/mbedtls/library/
A Dssl_tls.c813 size_t taglen, explicit_ivlen; in mbedtls_ssl_derive_keys() local
829 taglen = transform->ciphersuite_info->flags & in mbedtls_ssl_derive_keys()
835 transform->minlen = explicit_ivlen + taglen; in mbedtls_ssl_derive_keys()
1560 unsigned char taglen = transform->ciphersuite_info->flags & in ssl_encrypt_buf() local
1628 enc_msg + enc_msglen, taglen ) ) != 0 ) in ssl_encrypt_buf()
1640 ssl->out_msglen += taglen; in ssl_encrypt_buf()
1851 unsigned char taglen = transform->ciphersuite_info->flags & in ssl_decrypt_buf() local
1858 if( ssl->in_msglen < explicit_iv_len + taglen ) in ssl_decrypt_buf()
1862 explicit_iv_len, taglen ) ); in ssl_decrypt_buf()
1865 dec_msglen = ssl->in_msglen - explicit_iv_len - taglen; in ssl_decrypt_buf()
[all …]

Completed in 18 milliseconds