|
7 | 7 | * https://www.openssl.org/source/license.html
|
8 | 8 | */
|
9 | 9 |
|
10 |
| -import core.stdc.config; |
11 |
| -import core.sys.posix.sched; |
| 10 | +module deimos.openssl.x509_vfy; |
| 11 | + |
| 12 | +import core.stdc.time; |
| 13 | + |
| 14 | +import deimos.openssl._d_util; |
| 15 | +import deimos.openssl.asn1:ASN1_OBJECT, stack_st_ASN1_OBJECT; |
| 16 | + |
| 17 | +public import deimos.openssl.opensslconf; |
| 18 | +public import deimos.openssl.lhash; |
| 19 | +public import deimos.openssl.bio; |
| 20 | +public import deimos.openssl.crypto; |
| 21 | +public import deimos.openssl.symhacks; |
12 | 22 |
|
13 | 23 | extern (C):
|
| 24 | +nothrow: |
14 | 25 |
|
15 | 26 | /*
|
16 | 27 | * Protect against recursion, x509.h and x509_vfy.h each include the other.
|
@@ -449,12 +460,12 @@ X509_STORE_CTX_lookup_certs_fn X509_STORE_CTX_get_lookup_certs(X509_STORE_CTX* c
|
449 | 460 | X509_STORE_CTX_lookup_crls_fn X509_STORE_CTX_get_lookup_crls(X509_STORE_CTX* ctx);
|
450 | 461 | X509_STORE_CTX_cleanup_fn X509_STORE_CTX_get_cleanup(X509_STORE_CTX* ctx);
|
451 | 462 |
|
452 |
| -enum X509_STORE_CTX_get_chain = X509_STORE_CTX_get0_chain; |
453 |
| -enum X509_STORE_CTX_set_chain = X509_STORE_CTX_set0_untrusted; |
454 |
| -enum X509_STORE_CTX_trusted_stack = X509_STORE_CTX_set0_trusted_stack; |
455 |
| -enum X509_STORE_get_by_subject = X509_STORE_CTX_get_by_subject; |
456 |
| -enum X509_STORE_get1_cert = X509_STORE_CTX_get1_certs; |
457 |
| -enum X509_STORE_get1_crl = X509_STORE_CTX_get1_crls; |
| 463 | +alias X509_STORE_CTX_get_chain = X509_STORE_CTX_get0_chain; |
| 464 | +alias X509_STORE_CTX_set_chain = X509_STORE_CTX_set0_untrusted; |
| 465 | +alias X509_STORE_CTX_trusted_stack = X509_STORE_CTX_set0_trusted_stack; |
| 466 | +alias X509_STORE_get_by_subject = X509_STORE_CTX_get_by_subject; |
| 467 | +alias X509_STORE_get1_cert = X509_STORE_CTX_get1_certs; |
| 468 | +alias X509_STORE_get1_crl = X509_STORE_CTX_get1_crls; |
458 | 469 |
|
459 | 470 | X509_LOOKUP* X509_STORE_add_lookup(X509_STORE* v, X509_LOOKUP_METHOD* m);
|
460 | 471 | X509_LOOKUP_METHOD* X509_LOOKUP_hash_dir();
|
|
0 commit comments