Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 52) sorted by relevance

123

/mbedtls-development/doxygen/
A Dmbedtls.doxyfile35 # if some version control system is used.
99 # used as the annotated text. Otherwise, the brief description is used as-is.
618 # NO is used.
689 # If left blank NO is used.
824 # called/used by that function will be listed.
914 # style sheet that is used by each HTML page. It can be used to
1327 # The PAPER_TYPE tag can be used to set the paper type that is used
1329 # executive. If left blank a4 will be used.
1490 # The XML_DTD tag can be used to specify an XML DTD,
1508 # that can be used to generate PDF.
[all …]
/mbedtls-development/library/
A Dsha512.c355 unsigned used; in mbedtls_sha512_finish() local
364 used = ctx->total[0] & 0x7F; in mbedtls_sha512_finish()
366 ctx->buffer[used++] = 0x80; in mbedtls_sha512_finish()
368 if( used <= 112 ) in mbedtls_sha512_finish()
371 memset( ctx->buffer + used, 0, 112 - used ); in mbedtls_sha512_finish()
376 memset( ctx->buffer + used, 0, 128 - used ); in mbedtls_sha512_finish()
A Dmd5.c277 uint32_t used; in mbedtls_md5_finish() local
283 used = ctx->total[0] & 0x3F; in mbedtls_md5_finish()
285 ctx->buffer[used++] = 0x80; in mbedtls_md5_finish()
287 if( used <= 56 ) in mbedtls_md5_finish()
290 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_md5_finish()
295 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_md5_finish()
A Dsha256.c322 uint32_t used; in mbedtls_sha256_finish() local
331 used = ctx->total[0] & 0x3F; in mbedtls_sha256_finish()
333 ctx->buffer[used++] = 0x80; in mbedtls_sha256_finish()
335 if( used <= 56 ) in mbedtls_sha256_finish()
338 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha256_finish()
343 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha256_finish()
A Dssl_tls.c4704 used += 8; in ssl_session_save_tls12()
4782 used += 2; in ssl_session_save_tls12()
4819 used += 1; in ssl_session_save_tls12()
4826 used += 1; in ssl_session_save_tls12()
4864 used += 1; in ssl_session_save()
4886 *olen = used; in ssl_session_save()
5815 used += 4; in mbedtls_ssl_context_save()
5823 used += 16; in mbedtls_ssl_context_save()
5835 used += 1; in mbedtls_ssl_context_save()
5850 used += 2; in mbedtls_ssl_context_save()
[all …]
A Dsha1.c329 uint32_t used; in mbedtls_sha1_finish() local
338 used = ctx->total[0] & 0x3F; in mbedtls_sha1_finish()
340 ctx->buffer[used++] = 0x80; in mbedtls_sha1_finish()
342 if( used <= 56 ) in mbedtls_sha1_finish()
345 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha1_finish()
350 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha1_finish()
/mbedtls-development/programs/fuzz/
A DREADME.md6 They are used with a so-called fuzz driver, which will generate inputs, try to process them with th…
8 These targets were meant to be used with oss-fuzz but can be used in other contexts.
56 Here is an example of dummy.py for extracting payload from client to server (if we used `tcp.dstpor…
/mbedtls-development/
A D.gitignore10 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
35 # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
A DChangeLog41 key type used, as well as the key bit-size in the case of
45 as well as other functions and constants only used by
76 * The getter and setter API of the SSL session cache (used for
416 unsupported extension used by the server.
434 should be used.
1321 and the used tls-prf.
1344 and the used tls-prf.
1975 underlying transport in case event-driven IO is used.
2619 when GCM is used. Found by udf2457. #441
2884 be always used (found by dcb314) (#235)
[all …]
/mbedtls-development/docs/proposed/
A Dpsa-driver-developer-guide.md20used for hardware **accelerators**. When a transparent driver is available for a particular combin…
21 * **Opaque** drivers implement cryptographic operations on keys that can only be used inside a prot…
/mbedtls-development/tests/data_files/dir-maxpath/
A DReadme.txt1 These certificates form a very long chain, used to test the
/mbedtls-development/.github/ISSUE_TEMPLATE/
A Dbug_report.md19 Compiler and options (if you used a pre-built binary, please indicate how you obtained it):
/mbedtls-development/ChangeLog.d/
A Dpsa_crypto_api_macros.txt10 all algorithms that can be used with psa_{sign,verify}_hash(), including
/mbedtls-development/tests/scripts/
A Dlist-identifiers.sh63 check-names.sh, which used to depend on this script, has been replaced with
A Dgenerate_psa_tests.py78 used = set()
80 used.update(re.findall(r'PSA_(?:ALG|ECC_FAMILY|KEY_TYPE)_\w+', expr))
81 used.difference_update(SYMBOLS_WITHOUT_DEPENDENCY)
82 return sorted(psa_want_symbol(name) for name in used)
/mbedtls-development/docs/
A D3.0-migration-guide.md37 used by the Mbed TLS release whose `MBEDTLS_VERSION_NUMBER` has the same
90 not used in X.509, TLS or in PSA crypto, and it was not implemented in all
252 were removed; `MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED` is now used
255 were removed; `MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED` is now used instead.
424 the hash algorithm used when signing a hash. (The requirements when signing
476 calling these functions. It is used for blinding, a countermeasure against
593 If you used to rely on this module in order to store your private keys
608 surface, even if the code is supposedly not used.
694 This feature had been broken for a while so we doubt anyone still used it.
754 Users which require access to the raw keys used to secure application
[all …]
A Duse-psa-crypto.md40 There is a new API function `mbedtls_pk_setup_opaque()` that can be used to
41 wrap a PSA keypair into a PK context. The key can be used for private-key
76 Limitations: the key can only be used with "pure"
105 used. There are two such places: in `ssl_tls.c` for record protection, and in
/mbedtls-development/configs/
A DREADME.txt5 this target. They can be used as a basis for custom configurations.
/mbedtls-development/tests/git-scripts/
A DREADME.md16 These scripts can also be used independently.
/mbedtls-development/tests/data_files/
A DReadme-x509.txt1 This documents the X.509 CAs, certificates, and CRLS used for testing.
13 variants used to test the keyUsage extension
60 - cli-rsa.key, cli-rsa-*.crt: RSA key used for test clients, signed by
/mbedtls-development/programs/test/
A DCMakeLists.txt47 # this file will also be used in another directory, so create a target, see
/mbedtls-development/docs/architecture/
A Dtls13-experimental.md265 - Use `<vector name>_len` for the name of a variable used to compute the
301 likely not to be used in prototype where we now would use them in
327 name `p` has been chosen as it was already widely used in TLS code.
353 - Use macros for constants that are used in different functions, different
354 places in the code. When a constant is used only locally in a function
/mbedtls-development/programs/
A DREADME.md20 …ed public-key algorithms (RSA or ECC) and writes it to a file that can be used by the other pk sam…
36 …y/rsa_genkey.c): generates an RSA key and writes it to a file that can be used with the other RSA …
99 * [`test/zeroize.c`](test/zeroize.c): a test program for `mbedtls_platform_zeroize`, used by [`test…
/mbedtls-development/tests/
A DCMakeLists.txt124 # files (used by some invasive tests) from ../library. Public header
138 # Enable definition of various functions used throughout the testsuite
/mbedtls-development/tests/suites/
A Dtest_suite_ssl.function260 * Errors used in the message transport mock tests
564 /* Errors used in the message socket mocks */
877 * \p input_queue - used only in case of DTLS.
878 * \p output_queue - used only in case of DTLS.
1300 * are being used by the transform). */
4465 /* The goto below is used to avoid an "unused label" warning.*/
4483 /* The goto below is used to avoid an "unused label" warning.*/
4493 /* The goto below is used to avoid an "unused label" warning.*/
4514 /* The goto below is used to avoid an "unused label" warning.*/
4526 /* The goto below is used to avoid an "unused label" warning.*/
[all …]

Completed in 47 milliseconds

123