Home
last modified time | relevance | path

Searched refs:additional (Results 1 – 22 of 22) sorted by relevance

/mbedtls-development/library/
A Dhmac_drbg.c63 const unsigned char *additional, in mbedtls_hmac_drbg_update() argument
67 unsigned char rounds = ( additional != NULL && add_len != 0 ) ? 2 : 1; in mbedtls_hmac_drbg_update()
86 additional, add_len ) ) != 0 ) in mbedtls_hmac_drbg_update()
145 const unsigned char *additional, size_t len, in hmac_drbg_reseed_core() argument
201 if( additional != NULL && len != 0 ) in hmac_drbg_reseed_core()
203 memcpy( seed + seedlen, additional, len ); in hmac_drbg_reseed_core()
224 const unsigned char *additional, size_t len ) in mbedtls_hmac_drbg_reseed() argument
226 return( hmac_drbg_reseed_core( ctx, additional, len, 0 ) ); in mbedtls_hmac_drbg_reseed()
321 const unsigned char *additional, size_t add_len ) in mbedtls_hmac_drbg_random_with_add() argument
349 if( additional != NULL && add_len != 0 ) in mbedtls_hmac_drbg_random_with_add()
[all …]
A Dctr_drbg.c316 const unsigned char *additional, in mbedtls_ctr_drbg_update() argument
325 if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_update()
349 const unsigned char *additional, in mbedtls_ctr_drbg_reseed_internal() argument
384 if( additional != NULL && len != 0 ) in mbedtls_ctr_drbg_reseed_internal()
386 memcpy( seed + seedlen, additional, len ); in mbedtls_ctr_drbg_reseed_internal()
405 const unsigned char *additional, size_t len ) in mbedtls_ctr_drbg_reseed() argument
407 return( mbedtls_ctr_drbg_reseed_internal( ctx, additional, len, 0 ) ); in mbedtls_ctr_drbg_reseed()
503 const unsigned char *additional, size_t add_len ) in mbedtls_ctr_drbg_random_with_add() argument
524 if( ( ret = mbedtls_ctr_drbg_reseed( ctx, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_random_with_add()
533 if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) in mbedtls_ctr_drbg_random_with_add()
/mbedtls-development/include/mbedtls/
A Dhmac_drbg.h299 const unsigned char *additional, size_t add_len );
326 const unsigned char *additional, size_t len );
361 const unsigned char *additional,
A Dctr_drbg.h444 const unsigned char *additional, size_t len );
467 const unsigned char *additional,
503 const unsigned char *additional, size_t add_len );
/mbedtls-development/docs/proposed/
A Dpsa-driver-integration-guide.md6 This document describes how to build Mbed TLS with additional cryptoprocessor drivers that follow t…
12 The PSA cryptography driver interface provides a way to build Mbed TLS with additional code that im…
16 …in the build. The driver code can either be provided in binary form as additional object file to l…
45 <!-- TODO: what about additional include files? -->
A Dpsa-driver-developer-guide.md16 The PSA cryptography driver interface provides a way to build Mbed TLS with additional code that im…
A Dpsa-conditional-inclusion-c.md75 * In application code that provides additional features based on cryptographic capabilities, for ex…
A Dpsa-driver-interface.md333 size_t *bits); // additional parameter, see below
472 …for the key types that the entry point is declared for. It may support additional formats as speci…
495 …py. This value is also a hint for the size to supply if the core makes additional calls to `"add_e…
527 … sources are mixed into the random generator state. The driver may mix additional entropy of its o…
548 Random generator drivers should have the capability to inject additional entropy through the `"add_…
576 * `PSA_ERROR_INSUFFICIENT_ENTROPY`: the core must supply additional entropy by calling the `"add_en…
611 …key context includes space for the public key. If omitted or false, no additional space is added f…
/mbedtls-development/tests/suites/
A Dtest_suite_ctr_drbg.function108 unsigned char additional[512];
112 memset( additional, 0, sizeof( additional ) );
116 additional, 16 ) ==
120 additional, MBEDTLS_CTR_DRBG_MAX_INPUT + 1 ) ==
123 TEST_ASSERT( mbedtls_ctr_drbg_reseed( &ctx, additional,
128 TEST_ASSERT( mbedtls_ctr_drbg_reseed( &ctx, additional,
A Dtest_suite_psa_crypto.function302 * feed additional data in to be encrypted /
442 /* Pass additional data in parts */
470 /* Pass additional data in one go. */
4820 /* Test for not sending any additional data or data after setting non zero
4839 /* Test for not sending any additional data or data after setting non-zero
4858 /* Test for not sending any additional data after setting a non-zero length
4896 /* Test for sending too much additional data after setting lengths. */
4967 /* Test sending additional data after data. */
5996 /* state of operation shouldn't allow additional generation */
A Dtest_suite_ssl.function3208 * 1) It determines the AEAD additional data
3566 /* MAC with additional data */
4663 /* TLS additional data is 13 bytes (hence the "lucky 13" name) */
/mbedtls-development/3rdparty/everest/
A DREADME.md5 …do not provide a 128-bit integer type and KreMLin therefore has to use additional (also verified) …
/mbedtls-development/.github/
A Dpull_request_template.md26 Any additional information that could be of interest
/mbedtls-development/
A DLICENSE121 that such additional attribution notices cannot be construed
125 may provide additional or different license terms and conditions
134 this License, without any additional terms or conditions.
175 of your accepting any such warranty or additional liability.
A DCONTRIBUTING.md42 … only security fixes and fixes for other defects, without encountering additional features or API …
48 … or enhancement, no backporting is required. Exceptions to this may be additional test cases or qu…
66 [A Knowledge Base article describing how to add additional tests is available on the Mbed TLS websi…
A DREADME.md235 For machines with a Unix shell and OpenSSL (and optionally GnuTLS) installed, additional test scrip…
263 …y, which allows the library to be implemented in an isolated space for additional security. Librar…
A DCMakeLists.txt288 # additional convenience targets for Unix only
A DChangeLog135 Further, callbacks now receive an additional parameter
474 in bits rather than bytes, with an additional flag to indicate if the
699 * Fix an off-by-one error in the additional data length check for
932 * Add additional bounds checks in ssl_write_client_hello() preventing
1396 at the cost of additional lifetime constraints on the input
1484 disabled by default. See its API documentation in config.h for additional
1884 * Add additional block mode, OFB (Output Feedback), to the AES module and
2953 additional callback for read-with-timeout).
2985 * ecdsa_write_signature() gained an additional md_alg argument and
4235 * Added additional Cipher Block Modes to symmetric ciphers
/mbedtls-development/docs/architecture/testing/
A Dinvasive-testing.md154 | Portability | ++ Ideal; the additional interfaces may be useful for portability beyond testing |
169 | Portability | ++ Ideal; the additional interfaces may be useful for portability beyond testing |
184 | Coverage | ~ Many useful tests require additional internal interfaces |
243 | Maintainability | ~ Depending on the instrumentation, this may require additional builds and scri…
/mbedtls-development/doxygen/
A Dmbedtls.doxyfile922 # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional
989 # If the GENERATE_DOCSET tag is set to YES, additional index files
1026 # If the GENERATE_HTMLHELP tag is set to YES, additional index files
1071 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated
1123 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files
1461 # then it will generate one additional man file for each entity
1462 # documented in the real man page(s). These additional files
/mbedtls-development/tests/scripts/
A Dall.sh261 --no-memory No additional memory tests (default).
/mbedtls-development/docs/
A D3.0-migration-guide.md512 implement those additional five API functions.

Completed in 47 milliseconds