Home
last modified time | relevance | path

Searched refs:time (Results 1 – 25 of 54) sorted by relevance

123

/mbedtls-development/include/mbedtls/
A Dplatform_time.h54 extern mbedtls_time_t (*mbedtls_time)( mbedtls_time_t* time );
63 int mbedtls_platform_set_time( mbedtls_time_t (*time_func)( mbedtls_time_t* time ) );
68 #define mbedtls_time time
A Dplatform.h96 #define MBEDTLS_PLATFORM_STD_TIME time /**< The default \c time function to use. */
/mbedtls-development/tests/suites/
A Dtest_suite_timing.function22 struct mbedtls_timing_hr_time time;
23 (void) mbedtls_timing_get_timer( &time, 1 );
24 (void) mbedtls_timing_get_timer( &time, 0 );
A Dmain_test.function158 * DISPATCH_UNSUPPORTED_SUITE if not compile time enabled.
193 * \brief Checks if test function is supported in this build-time
200 * DISPATCH_UNSUPPORTED_SUITE if not compile time enabled.
A Dtest_suite_x509parse.function1214 mbedtls_x509_time time;
1219 memset( &time, 0x00, sizeof( time ) );
1227 TEST_ASSERT( mbedtls_x509_get_time( &start, end, &time ) == ret );
1230 TEST_ASSERT( year == time.year );
1231 TEST_ASSERT( mon == time.mon );
1232 TEST_ASSERT( day == time.day );
1233 TEST_ASSERT( hour == time.hour );
1234 TEST_ASSERT( min == time.min );
1235 TEST_ASSERT( sec == time.sec );
A Dtest_suite_x509parse.data2595 X509 Get time (UTC no issues)
2619 X509 Get time (UTC invalid hour)
2623 X509 Get time (UTC invalid min)
2627 X509 Get time (UTC invalid sec)
2631 X509 Get time (UTC without time zone)
2635 X509 Get time (UTC with invalid time zone #1)
2639 X509 Get time (UTC with invalid time zone #2)
2647 X509 Get time (UTC, truncated)
2655 X509 Get time (UTC without seconds)
2659 X509 Get time (UTC without seconds and with invalid time zone #1)
[all …]
/mbedtls-development/ChangeLog.d/
A Dissue5065.txt2 * Fix compile-time or run-time errors in PSA
A Dtls_ext_cid-config.txt3 MBEDTLS_TLS_EXT_CID at compile time.
/mbedtls-development/programs/fuzz/
A Dcommon.c7 mbedtls_time_t dummy_constant_time( mbedtls_time_t* time ) in dummy_constant_time() argument
9 (void) time; in dummy_constant_time()
A Dcommon.h11 mbedtls_time_t dummy_constant_time( mbedtls_time_t* time );
/mbedtls-development/programs/ssl/
A Dssl_test_lib.h32 #define mbedtls_time time
133 mbedtls_time_t dummy_constant_time( mbedtls_time_t* time );
A Dssl_test_lib.c49 mbedtls_time_t dummy_constant_time( mbedtls_time_t* time ) in dummy_constant_time() argument
51 (void) time; in dummy_constant_time()
A Dssl_client1.c27 #define mbedtls_time time
/mbedtls-development/docs/architecture/
A Dalternative-implementations.md4 This document describes how parts of the Mbed TLS functionality can be replaced at compile time to …
34 You can replace the code of some modules of Mbed TLS at compile time by a custom implementation. Th…
37 * Enable `MBEDTLS_XXX_ALT` in the compile-time configuration where XXX is the module name. For exam…
72 …the function will not be compiled, and you must provide an alternative implementation at link time.
74 For example, enable `MBEDTLS_AES_ENCRYPT_ALT` at compile time and provide your own implementation o…
84 * Define the symbol `MBEDTLS_PLATFORM_XXX_ALT` at compile time.
87 …, to provide a custom `printf` function at run time, enable `MBEDTLS_PLATFORM_PRINTF_ALT` at compi…
/mbedtls-development/docs/architecture/testing/
A Dinvasive-testing.md36 … depend on `MBEDTLS_TEST_HOOKS` (see [“rules for compile-time options”](#rules-for-compile-time-op…
49 > # and not expected to be raised any time soon) is less than the maximum
53 ### Rules for compile-time options
67 … can be replaced at compile time to support alternative platforms, the test code should be compati…
180 …tation is that the test-only interfaces must not be hidden at link time (but link-time hiding is n…
207 ### Compile-time options
221 #### Guidelines for compile-time options
223 * **Minimize the number of compile-time options.**<br>
225 * **Merely enabling the compile-time option should not change the behavior.**<br>
235 * We can inject external libraries at link time. This can be a way to make system functions fail.
[all …]
/mbedtls-development/docs/proposed/
A Dpsa-conditional-inclusion-c.md4 This document is a proposed interface for deciding at build time which cryptographic mechanisms to …
89 …is an error to require an ECC key type but no curve, and Mbed TLS will reject this at compile time.
97 …y particular group, so reducing the number of available groups at compile time only saves a little…
160 #### Compile-time checks
186 At the time of writing, the preferred configuration mechanism for a PSA service is in JSON syntax. …
222 Is it realistic to mandate a compile-time error if a key type is required, but no matching algorith…
238 time-stamp-line-limit: 40
239 time-stamp-start: "Time-stamp: *\""
240 time-stamp-end: "\""
241 time-stamp-format: "%04Y/%02m/%02d %02H:%02M:%02S %Z"
[all …]
/mbedtls-development/library/
A Dssl_cookie.c124 const unsigned char time[4], in ssl_cookie_hmac()
133 mbedtls_md_hmac_update( hmac_ctx, time, 4 ) != 0 || in ssl_cookie_hmac()
/mbedtls-development/
A DBRANCHES.md3 At any point in time, we have a number of maintained branches consisting of:
15 - One or more long-time support (LTS) branches:
53 ## Long-time support branches
A DBUGS.md11 or a long-time support branch.
A D.travis.yml44 # Logs appear out of sequence on Windows. Give time to catch up.
/mbedtls-development/3rdparty/everest/include/everest/kremlin/internal/
A Dtarget.h53 return (int32_t)time(NULL); in krml_time()
/mbedtls-development/tests/include/test/
A Dhelpers.h49 #define mbedtls_time time
A Dmacros.h40 #define mbedtls_time time
/mbedtls-development/programs/x509/
A Dload_roots.c54 #define mbedtls_time time
/mbedtls-development/docs/
A Duse-psa-crypto.md1 This document describes the compile-time configuration option
11 Compile-time: enabling `MBEDTLS_USE_PSA_CRYPTO` requires
21 time. Said otherwise, these APIs are explicitly excluded from the usual API

Completed in 30 milliseconds

123