X509_check_ca.pod 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. =pod
  2. =head1 NAME
  3. X509_check_ca - check if given certificate is CA certificate
  4. =head1 SYNOPSIS
  5. #include <openssl/x509v3.h>
  6. int X509_check_ca(X509 *cert);
  7. =head1 DESCRIPTION
  8. This function checks if given certificate is CA certificate (can be used
  9. to sign other certificates). The certificate must be a complete certificate
  10. otherwise an error is returned.
  11. =head1 RETURN VALUES
  12. Function return 0, if it is not CA certificate, 1 if it is proper X509v3
  13. CA certificate with B<basicConstraints> extension CA:TRUE,
  14. 3, if it is self-signed X509 v1 certificate, 4, if it is certificate with
  15. B<keyUsage> extension with bit B<keyCertSign> set, but without
  16. B<basicConstraints>, and 5 if it has outdated Netscape Certificate Type
  17. extension telling that it is CA certificate.
  18. This function will also return 0 on error.
  19. Actually, any nonzero value means that this certificate could have been
  20. used to sign other certificates.
  21. =head1 SEE ALSO
  22. L<X509_verify_cert(3)>,
  23. L<X509_check_issued(3)>,
  24. L<X509_check_purpose(3)>
  25. =head1 COPYRIGHT
  26. Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
  27. Licensed under the Apache License 2.0 (the "License"). You may not use
  28. this file except in compliance with the License. You can obtain a copy
  29. in the file LICENSE in the source distribution or at
  30. L<https://www.openssl.org/source/license.html>.
  31. =cut