X509_digest.pod 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. =pod
  2. =head1 NAME
  3. X509_digest,
  4. X509_digest_sig,
  5. X509_CRL_digest,
  6. X509_pubkey_digest,
  7. X509_NAME_digest,
  8. X509_REQ_digest,
  9. PKCS7_ISSUER_AND_SERIAL_digest
  10. - get digest of various objects
  11. =head1 SYNOPSIS
  12. #include <openssl/x509.h>
  13. int X509_digest(const X509 *data, const EVP_MD *type, unsigned char *md,
  14. unsigned int *len);
  15. ASN1_OCTET_STRING *X509_digest_sig(const X509 *cert);
  16. int X509_CRL_digest(const X509_CRL *data, const EVP_MD *type, unsigned char *md,
  17. unsigned int *len);
  18. int X509_pubkey_digest(const X509 *data, const EVP_MD *type,
  19. unsigned char *md, unsigned int *len);
  20. int X509_REQ_digest(const X509_REQ *data, const EVP_MD *type,
  21. unsigned char *md, unsigned int *len);
  22. int X509_NAME_digest(const X509_NAME *data, const EVP_MD *type,
  23. unsigned char *md, unsigned int *len);
  24. #include <openssl/pkcs7.h>
  25. int PKCS7_ISSUER_AND_SERIAL_digest(PKCS7_ISSUER_AND_SERIAL *data,
  26. const EVP_MD *type, unsigned char *md,
  27. unsigned int *len);
  28. =head1 DESCRIPTION
  29. X509_digest_sig() calculates a digest of the given certificate
  30. using the same hash algorithm as in its signature.
  31. X509_pubkey_digest() returns a digest of the DER representation of the public
  32. key in the specified X509 B<data> object.
  33. All other functions described here return a digest of the DER representation
  34. of their entire B<data> objects.
  35. The B<type> parameter specifies the digest to
  36. be used, such as EVP_sha1(). The B<md> is a pointer to the buffer where the
  37. digest will be copied and is assumed to be large enough; the constant
  38. B<EVP_MAX_MD_SIZE> is suggested. The B<len> parameter, if not NULL, points
  39. to a place where the digest size will be stored.
  40. =head1 RETURN VALUES
  41. X509_digest_sig() returns an ASN1_OCTET_STRING on success, else NULL.
  42. All other functions described here return 1 for success and 0 for failure.
  43. =head1 SEE ALSO
  44. L<EVP_sha1(3)>
  45. =head1 HISTORY
  46. The X509_digest_sig() function was added in OpenSSL 3.0.
  47. =head1 COPYRIGHT
  48. Copyright 2017-2020 The OpenSSL Project Authors. All Rights Reserved.
  49. Licensed under the Apache License 2.0 (the "License"). You may not use
  50. this file except in compliance with the License. You can obtain a copy
  51. in the file LICENSE in the source distribution or at
  52. L<https://www.openssl.org/source/license.html>.
  53. =cut