2015-08-28 00:28:08 +08:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
X509_check_ca - check if given certificate is CA certificate
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2017-01-21 02:58:49 +08:00
|
|
|
#include <openssl/x509v3.h>
|
2015-08-28 00:28:08 +08:00
|
|
|
|
2017-01-21 02:58:49 +08:00
|
|
|
int X509_check_ca(X509 *cert);
|
2015-08-28 00:28:08 +08:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This function checks if given certificate is CA certificate (can be used
|
2021-07-13 23:59:37 +08:00
|
|
|
to sign other certificates). The certificate must be a complete certificate
|
|
|
|
otherwise an error is returned.
|
2015-08-28 00:28:08 +08:00
|
|
|
|
2017-12-25 17:50:39 +08:00
|
|
|
=head1 RETURN VALUES
|
2015-08-28 00:28:08 +08:00
|
|
|
|
|
|
|
Function return 0, if it is not CA certificate, 1 if it is proper X509v3
|
|
|
|
CA certificate with B<basicConstraints> extension CA:TRUE,
|
2016-06-15 05:02:16 +08:00
|
|
|
3, if it is self-signed X509 v1 certificate, 4, if it is certificate with
|
2015-08-28 00:28:08 +08:00
|
|
|
B<keyUsage> extension with bit B<keyCertSign> set, but without
|
|
|
|
B<basicConstraints>, and 5 if it has outdated Netscape Certificate Type
|
|
|
|
extension telling that it is CA certificate.
|
|
|
|
|
2020-03-20 19:52:07 +08:00
|
|
|
This function will also return 0 on error.
|
|
|
|
|
2019-09-28 01:17:09 +08:00
|
|
|
Actually, any nonzero value means that this certificate could have been
|
2015-08-28 00:28:08 +08:00
|
|
|
used to sign other certificates.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
L<X509_verify_cert(3)>,
|
|
|
|
L<X509_check_issued(3)>,
|
|
|
|
L<X509_check_purpose(3)>
|
|
|
|
|
2016-05-18 23:44:05 +08:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2021-07-29 22:41:35 +08:00
|
|
|
Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 23:44:05 +08:00
|
|
|
|
2018-12-06 21:04:44 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 23:44:05 +08:00
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|