Searched refs:now (Results 1 – 21 of 21) sorted by relevance
/mbedtls-development/library/ |
A D | timing.c | 92 LARGE_INTEGER now, hfreq; in mbedtls_timing_get_timer() local 93 QueryPerformanceCounter( &now ); in mbedtls_timing_get_timer() 95 delta = (unsigned long)( ( now.QuadPart - t->start.QuadPart ) * 1000ul in mbedtls_timing_get_timer() 115 struct timeval now; in mbedtls_timing_get_timer() local 116 gettimeofday( &now, NULL ); in mbedtls_timing_get_timer() 117 delta = ( now.tv_sec - t->start.tv_sec ) * 1000ul in mbedtls_timing_get_timer() 118 + ( now.tv_usec - t->start.tv_usec ) / 1000; in mbedtls_timing_get_timer()
|
A D | x509.c | 914 now->year = lt->tm_year + 1900; in x509_get_current_time() 915 now->mon = lt->tm_mon + 1; in x509_get_current_time() 916 now->day = lt->tm_mday; in x509_get_current_time() 917 now->hour = lt->tm_hour; in x509_get_current_time() 918 now->min = lt->tm_min; in x509_get_current_time() 919 now->sec = lt->tm_sec; in x509_get_current_time() 968 mbedtls_x509_time now; in mbedtls_x509_time_is_past() local 970 if( x509_get_current_time( &now ) != 0 ) in mbedtls_x509_time_is_past() 973 return( x509_check_time( &now, to ) ); in mbedtls_x509_time_is_past() 978 mbedtls_x509_time now; in mbedtls_x509_time_is_future() local [all …]
|
/mbedtls-development/docs/ |
A D | 3.0-migration-guide.md | 41 ### Most structure fields are now private 67 include `mbedtls/net_sockets.h` which now should be included directly. 239 relevant as the countermeasure is now always on at no cost in code size. 252 were removed; `MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED` is now used 449 ### The RNG parameter is now mandatory for all functions that accept one 475 You now need to pass a properly seeded, cryptographically secure RNG when 511 Alternative implementations of CCM (`MBEDTLS_CCM_ALT`) have now to 719 ### TLS now favors faster curves over larger curves 744 - The callback now specifies a void return type, rather than 800 enable `MBEDTLS_CIPHER_NULL_CIPHER` now. [all …]
|
/mbedtls-development/ |
A D | ChangeLog | 139 context are now connection-specific. 154 "Most structure fields are now private". 626 operations now accept the key identifier. The type psa_key_handle_t is now 713 range now fails. 1240 is now deprecated. 3075 * The following functions now return void: 3118 speed and RAM (heap only for now) usage. 3559 * Curves are now stored fully in ROM 3566 * SSL now gracefully handles missing RNG 3805 * SSL now gracefully handles missing RNG [all …]
|
A D | CMakeLists.txt | 19 # We specify a minimum requirement of 3.10.2, but for now use 3.5.1 here
|
A D | README.md | 174 You can now make the desired change:
|
/mbedtls-development/ChangeLog.d/ |
A D | psa_alg_rsa_pss.txt | 3 This algorithm now accepts only the same salt length for verification
|
A D | chunked_ccm.txt | 6 postponed until now.
|
A D | psa_crypto_api_macros.txt | 6 * The existing predicate macro name PSA_ALG_IS_HASH_AND_SIGN is now reserved
|
/mbedtls-development/tests/scripts/ |
A D | list-identifiers.sh | 64 check_names.py and is now self-complete.
|
/mbedtls-development/programs/test/cmake_package/ |
A D | CMakeLists.txt | 30 # At this point, the Mbed TLS targets should have been imported, and we can now
|
/mbedtls-development/programs/test/cmake_package_install/ |
A D | CMakeLists.txt | 33 # At this point, the Mbed TLS targets should have been imported, and we can now
|
/mbedtls-development/scripts/ |
A D | windows_msbuild.bat | 6 @rem These parameters are hard-coded for now.
|
/mbedtls-development/programs/ssl/ |
A D | CMakeLists.txt | 25 # propagate this information across the tree, for now it's only visible
|
/mbedtls-development/tests/suites/ |
A D | test_suite_psa_crypto_slot_management.function | 179 /* Test that the key is now invalid. */ 328 * Test that the key handle and identifier are now not refering to an 1011 * Check that we can now access the persistent key again.
|
A D | test_suite_hmac_drbg.function | 211 /* And now the normal entropy-based variant */
|
A D | test_suite_rsa.function | 429 /* And now with the copy */ 501 /* And now one more time with the copy */
|
A D | test_suite_mps.function | 341 * should now succeed.
|
A D | test_suite_psa_crypto.function | 5188 /* Flip a bit in the input and verify that the signature is now 5420 /* Flip a bit in the input and verify that the signature is now
|
/mbedtls-development/docs/architecture/ |
A D | tls13-experimental.md | 301 likely not to be used in prototype where we now would use them in
|
A D | mbed-crypto-storage-specification.md | 205 * The layout of a key file now has a lifetime field before the type field.
|
Completed in 30 milliseconds