Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 71) sorted by relevance

123

/openssl-master/test/
A Dx509_time_test.c278 time_t now = time(NULL); in test_x509_cmp_time_current() local
283 asn1_before = ASN1_TIME_adj(NULL, now, -1, 0); in test_x509_cmp_time_current()
284 asn1_after = ASN1_TIME_adj(NULL, now, 1, 0); in test_x509_cmp_time_current()
324 time_t now = time(NULL); in test_X509_cmp_timeframe() local
325 ASN1_TIME *asn1_mid = ASN1_TIME_adj(NULL, now, 0, 0); in test_X509_cmp_timeframe()
327 ASN1_TIME *asn1_before = ASN1_TIME_adj(NULL, now, -1, 0); in test_X509_cmp_timeframe()
328 ASN1_TIME *asn1_after = ASN1_TIME_adj(NULL, now, 1, 0); in test_X509_cmp_timeframe()
337 X509_VERIFY_PARAM_set_time(vpm, now); in test_X509_cmp_timeframe()
A Dcmp_hdr_test.c165 time_t hdrtime, before, after, now; in execute_HDR_update_messageTime_test() local
167 now = time(NULL); in execute_HDR_update_messageTime_test()
173 tmptm = *gmtime(&now); in execute_HDR_update_messageTime_test()
185 now = time(NULL); in execute_HDR_update_messageTime_test()
186 tmptm = *gmtime(&now); in execute_HDR_update_messageTime_test()
A Dbad_dtls_test.c470 time_t now = 0; in test_bad_dtls() local
480 now = time(NULL); in test_bad_dtls()
481 memcpy(server_random, &now, sizeof(now)); in test_bad_dtls()
/openssl-master/external/perl/Text-Template-1.56/
A DChanges62 - Minimum perl version is now 5.8.0
111 - Taint-related tests are now more comprehensive.
115 - Tests now work correctly on Windows systems and possibly on other
125 It now looks like:
138 It now looks like:
151 - You may now use a glob ref when passing a filehandle to the ->new
223 - Template TYPEs are now case-insensitive. The `new' method now diagnoses
239 - PACKAGE and HASH now work intelligently with SAFE.
240 - Fragments may now output data directly to the template, rather than
251 You can now write this instead, because $OUT is special.
[all …]
/openssl-master/
A De_os.h327 struct timeval start, now; in ossl_sleep() local
332 gettimeofday(&now, NULL); in ossl_sleep()
333 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000) in ossl_sleep()
334 + now.tv_usec - start.tv_usec) / 1000; in ossl_sleep()
A DFAQ.md4 The [Frequently Asked Questions][FAQ] are now maintained on the OpenSSL homepage.
A DCHANGES.md772 APIs. They now write PKCS#8 keys by default. These commands are now in
2351 now been removed.
3613 before trying to build now.*
7174 Most broken servers should now work.
14487 Both problems are now fixed.
15168 through syslog. The prefixes are now:
15961 * ./config recognizes MacOS X now.
17208 "off" is now the default.
17215 even the default) are now avoided.
17671 now it really counts the depth.
[all …]
A DNEWS.md24 * Subject or issuer names in X.509 objects are now displayed as UTF-8 strings
312 * "shared" builds are now the default when possible
319 * Reworked test suite, now based on perl, Test::Harness and Test::More
335 * EC revision: now operations use new EC_KEY_METHOD.
338 * Deprecated interfaces can now be disabled at build time either
1106 * Configuration: the no-err option now works properly.
1107 * SSL/TLS: now handles manual certificate chain building.
1151 Only supports MIT Kerberos for now.
1266 * MD4 now included.
1306 * TLS/SSL code now "tolerates" MS SGC
[all …]
/openssl-master/crypto/bio/
A Dbio_sock.c395 time_t now; in BIO_socket_wait() local
402 now = time(NULL); in BIO_socket_wait()
403 if (max_time <= now) in BIO_socket_wait()
409 tv.tv_sec = (long)(max_time - now); /* might overflow */ in BIO_socket_wait()
A Dbss_dgram.c1924 } now; in get_current_time() local
1927 SystemTimeToFileTime(&st, &now.ft); in get_current_time()
1929 now.ul -= 116444736000000000ULL; in get_current_time()
1931 now.ul -= 116444736000000000UI64; /* re-bias to 1/1/1970 */ in get_current_time()
1933 t->tv_sec = (long)(now.ul / 10000000); in get_current_time()
1934 t->tv_usec = ((int)(now.ul % 10000000)) / 10; in get_current_time()
/openssl-master/apps/lib/
A Dapps.c2636 FILETIME now; in app_tminterval() local
2690 struct timespec now; in app_tminterval() local
2693 unsigned long now; in app_tminterval() local
2705 tmstart = now; in app_tminterval()
2707 ret = ((now.tv_sec + now.tv_nsec * 1e-9) in app_tminterval()
2710 now = tickGet(); in app_tminterval()
2712 tmstart = now; in app_tminterval()
2733 tmstart = now; in app_tminterval()
2750 struct timeval now; in app_tminterval() local
2759 tmstart = now; in app_tminterval()
[all …]
/openssl-master/ssl/
A Dd1_lib.c417 } now; in get_current_time() local
420 SystemTimeToFileTime(&st, &now.ft); in get_current_time()
423 now.ul -= 116444736000000000ULL; in get_current_time()
426 now.ul -= 116444736000000000UI64; in get_current_time()
429 t->tv_sec = (long)(now.ul / 10000000); in get_current_time()
430 t->tv_usec = ((int)(now.ul % 10000000)) / 10; in get_current_time()
/openssl-master/crypto/engine/
A DREADME.md75 The way this is now being done is by mostly reverting back to how things used to
76 work prior to ENGINE :-). Ie. RSA now has a "RSA_METHOD" pointer again - this
99 context and so is used as the implementation. Pretty much how things work now
199 mechanism now used by RSA/DSA/..., because there's no such thing as a BIGNUM
204 one and now certainly doesn't make sense in any generalised way. Some of the
206 changes have now, as a consequence, been reverted back. This is because the
207 hooking of ENGINE is now automatic (and passive, it can internally use a NULL
210 Hell, that should be enough for now ... comments welcome.
/openssl-master/doc/man7/
A Dmigration_guide.pod263 application now supports -legacy option that restores the previous
312 This code is now always set to zero. Related functions are deprecated.
354 Smaller sizes now result in an error.
374 now correctly rejected.
533 /* This line will now generate compiler errors */
972 are now deprecated and can be replaced by using providers instead.
2234 The B<openssl> commands that read keys, certificates, and CRLs now
2257 now in maintenance mode and no new features will be added to them.
2279 SSL and SSL_CTX options are now 64 bit instead of 32 bit.
2316 Secure renegotiation is now required by default for TLS connections
[all …]
/openssl-master/crypto/ripemd/
A Dbuild.info15 # Implementations are now spread across several libraries, so the defines
/openssl-master/crypto/md5/
A Dbuild.info30 # Implementations are now spread across several libraries, so the defines
/openssl-master/crypto/poly1305/
A Dbuild.info34 # Implementations are now spread across several libraries, so the defines
/openssl-master/ssl/statem/
A Dextensions_srvr.c693 unsigned long tm, now; in tls_parse_ctos_cookie() local
803 now = (unsigned long)time(NULL); in tls_parse_ctos_cookie()
804 if (tm > now || (now - tm) > 600) { in tls_parse_ctos_cookie()
1090 uint32_t ticket_age = 0, now, agesec, agems; in tls_parse_ctos_psk() local
1130 now = (uint32_t)time(NULL); in tls_parse_ctos_psk()
1131 agesec = now - (uint32_t)sess->time; in tls_parse_ctos_psk()
A DREADME.md24 * handshake state = what handshake message are we working on now
/openssl-master/crypto/cmp/
A Dcmp_client.c139 time_t now = time(NULL); in send_receive_check() local
149 if (now >= ctx->end_time) { in send_receive_check()
158 time_left = (int)(ctx->end_time - now); in send_receive_check()
/openssl-master/providers/implementations/rands/
A Ddrbg.c664 time_t now = time(NULL); in ossl_prov_drbg_generate() local
665 if (now < drbg->reseed_time in ossl_prov_drbg_generate()
666 || now - drbg->reseed_time >= drbg->reseed_time_interval) in ossl_prov_drbg_generate()
/openssl-master/crypto/modes/
A Dbuild.info57 # Implementations are now spread across several libraries, so the defines
/openssl-master/doc/man3/
A DBIO_new.pod60 BIO_set() was removed in OpenSSL 1.1.0 as BIO type is now opaque.
A DSSL_CTX_set_tlsext_servername_callback.pod161 the client it returned the servername from the second handshake. This has now
167 servername requested in the original handshake. This has now been changed to
/openssl-master/crypto/ec/
A Dbuild.info70 # Implementations are now spread across several libraries, so the defines

Completed in 71 milliseconds

123