Changeset 50903 in vbox for trunk/include
- Timestamp:
- Mar 27, 2014 4:49:37 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r50888 r50903 1882 1882 * @{ */ 1883 1883 /** Error during reading a certificate in PEM format from BIO */ 1884 #define VERR_ READING_CERT_FROM_BIO (-22800)1884 #define VERR_X509_READING_CERT_FROM_BIO (-22800) 1885 1885 /** Error extract a public key from the certificate */ 1886 #define VERR_ EXTRACT_PUBKEY_FROM_CERT (-22801)1886 #define VERR_X509_EXTRACT_PUBKEY_FROM_CERT (-22801) 1887 1887 /** Error extract RSA from the public key */ 1888 #define VERR_ EXTRACT_RSA_FROM_PUBLIC_KEY (-22802)1888 #define VERR_X509_EXTRACT_RSA_FROM_PUBLIC_KEY (-22802) 1889 1889 /** Error the signature verification */ 1890 #define VERR_ RSA_VERIFICATION_FUILURE (-22803)1890 #define VERR_X509_RSA_VERIFICATION_FUILURE (-22803) 1891 1891 /** Error basic constraints were not found */ 1892 #define VERR_ NO_BASIC_CONSTARAINTS (-22804)1892 #define VERR_X509_NO_BASIC_CONSTARAINTS (-22804) 1893 1893 /** Error getting extensions from the certificate */ 1894 #define VERR_ GETTING_EXTENSION_FROM_CERT (-22805)1894 #define VERR_X509_GETTING_EXTENSION_FROM_CERT (-22805) 1895 1895 /** Error getting a data from the extension */ 1896 #define VERR_ GETTING_DATA_FROM_EXTENSION (-22806)1896 #define VERR_X509_GETTING_DATA_FROM_EXTENSION (-22806) 1897 1897 /** Error print out an extension to BIO */ 1898 #define VERR_ PRINT_EXTENSION_TO_BIO (-22807)1898 #define VERR_X509_PRINT_EXTENSION_TO_BIO (-22807) 1899 1899 /** Error X509 certificate verification */ 1900 #define VERR_X509_CERTIFICATE_VERIFICATION_FAILURE (-22808)1900 #define VERR_X509_CERTIFICATE_VERIFICATION_FAILURE (-22808) 1901 1901 /** Error X509 certificate isn't self signed */ 1902 #define VERR_ NOT_SELFSIGNED_X509_CERTIFICATE(-22809)1902 #define VERR_X509_NOT_SELFSIGNED_CERTIFICATE (-22809) 1903 1903 /** Warning X509 certificate isn't self signed */ 1904 #define VINF_ NOT_SELFSIGNED_X509_CERTIFICATE(22809)1904 #define VINF_X509_NOT_SELFSIGNED_CERTIFICATE (22809) 1905 1905 /** @} */ 1906 1906
Note:
See TracChangeset
for help on using the changeset viewer.