/* $OpenBSD: x509_verify.h,v 1.1 2020/09/13 15:06:17 beck Exp $ */ /* * Copyright (c) 2020 Bob Beck <beck@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ module libressl_d.openssl.x509_verify; private static import libressl_d.openssl.ossl_typ; private static import libressl_d.openssl.x509; version (LIBRESSL_INTERNAL): extern (C): nothrow @nogc: struct x509_verify_ctx; alias X509_VERIFY_CTX = .x509_verify_ctx; .X509_VERIFY_CTX* x509_verify_ctx_new(libressl_d.openssl.x509.stack_st_X509 * roots); void x509_verify_ctx_free(.x509_verify_ctx* ctx); int x509_verify_ctx_set_max_depth(.X509_VERIFY_CTX* ctx, size_t max); int x509_verify_ctx_set_max_chains(.X509_VERIFY_CTX* ctx, size_t max); int x509_verify_ctx_set_max_signatures(.X509_VERIFY_CTX* ctx, size_t max); int x509_verify_ctx_set_purpose(.X509_VERIFY_CTX* ctx, int purpose_id); int x509_verify_ctx_set_intermediates(.X509_VERIFY_CTX* ctx, libressl_d.openssl.x509.stack_st_X509* intermediates); const (char)* x509_verify_ctx_error_string(.X509_VERIFY_CTX* ctx); size_t x509_verify_ctx_error_depth(.X509_VERIFY_CTX* ctx); libressl_d.openssl.x509.stack_st_X509* x509_verify_ctx_chain(.X509_VERIFY_CTX* ctx, size_t chain); size_t x509_verify(.X509_VERIFY_CTX* ctx, libressl_d.openssl.ossl_typ.X509* leaf, char* name);