| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 | /** * \file x509.h * * \brief X.509 certificate and private key decoding * *  Copyright (C) 2006-2010, Brainspark B.V. * *  This file is part of PolarSSL (http://www.polarssl.org) *  Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org> * *  All rights reserved. * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License along *  with this program; if not, write to the Free Software Foundation, Inc., *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */#ifndef POLARSSL_X509_H#define POLARSSL_X509_H#include "polarssl/rsa.h"#include "polarssl/dhm.h"/**  * \addtogroup x509_module * \{  */ /** * \name ASN1 Error codes * These error codes are OR'ed to X509 error codes for * higher error granularity.  * ASN1 is a standard to specify data structures. * \{ */#define POLARSSL_ERR_ASN1_OUT_OF_DATA                      -0x0014  /**< Out of data when parsing an ASN1 data structure. */#define POLARSSL_ERR_ASN1_UNEXPECTED_TAG                   -0x0016  /**< ASN1 tag was of an unexpected value. */#define POLARSSL_ERR_ASN1_INVALID_LENGTH                   -0x0018  /**< Error when trying to determine the length or invalid length. */#define POLARSSL_ERR_ASN1_LENGTH_MISMATCH                  -0x001A  /**< Actual length differs from expected length. */#define POLARSSL_ERR_ASN1_INVALID_DATA                     -0x001C  /**< Data is invalid. (not used) *//* \} name *//**  * \name X509 Error codes * \{ */#define POLARSSL_ERR_X509_FEATURE_UNAVAILABLE              -0x2080  /**< Unavailable feature, e.g. RSA hashing/encryption combination. */#define POLARSSL_ERR_X509_CERT_INVALID_PEM                 -0x2100  /**< The PEM-encoded certificate contains invalid elements, e.g. invalid character. */ #define POLARSSL_ERR_X509_CERT_INVALID_FORMAT              -0x2180  /**< The certificate format is invalid, e.g. different type expected. */#define POLARSSL_ERR_X509_CERT_INVALID_VERSION             -0x2200  /**< The certificate version element is invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_SERIAL              -0x2280  /**< The serial tag or value is invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_ALG                 -0x2300  /**< The algorithm tag or value is invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_NAME                -0x2380  /**< The name tag or value is invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_DATE                -0x2400  /**< The date tag or value is invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_PUBKEY              -0x2480  /**< The pubkey tag or value is invalid (only RSA is supported). */#define POLARSSL_ERR_X509_CERT_INVALID_SIGNATURE           -0x2500  /**< The signature tag or value invalid. */#define POLARSSL_ERR_X509_CERT_INVALID_EXTENSIONS          -0x2580  /**< The extension tag or value is invalid. */#define POLARSSL_ERR_X509_CERT_UNKNOWN_VERSION             -0x2600  /**< Certificate or CRL has an unsupported version number. */#define POLARSSL_ERR_X509_CERT_UNKNOWN_SIG_ALG             -0x2680  /**< Signature algorithm (oid) is unsupported. */#define POLARSSL_ERR_X509_UNKNOWN_PK_ALG                   -0x2700  /**< Key algorithm is unsupported (only RSA is supported). */#define POLARSSL_ERR_X509_CERT_SIG_MISMATCH                -0x2780  /**< Certificate signature algorithms do not match. (see \c ::x509_cert sig_oid) */#define POLARSSL_ERR_X509_CERT_VERIFY_FAILED               -0x2800  /**< Certificate verification failed, e.g. CRL, CA or signature check failed. */#define POLARSSL_ERR_X509_KEY_INVALID_VERSION              -0x2880  /**< Unsupported RSA key version */#define POLARSSL_ERR_X509_KEY_INVALID_FORMAT               -0x2900  /**< Invalid RSA key tag or value. */#define POLARSSL_ERR_X509_POINT_ERROR                      -0x2980  /**< Not used. */#define POLARSSL_ERR_X509_VALUE_TO_LENGTH                  -0x2A00  /**< Not used. *//* \} name *//** * \name X509 Verify codes * \{ */#define BADCERT_EXPIRED             0x01  /**< The certificate validity has expired. */#define BADCERT_REVOKED             0x02  /**< The certificate has been revoked (is on a CRL). */#define BADCERT_CN_MISMATCH         0x04  /**< The certificate Common Name (CN) does not match with the expected CN. */#define BADCERT_NOT_TRUSTED         0x08  /**< The certificate is not correctly signed by the trusted CA. */#define BADCRL_NOT_TRUSTED          0x10  /**< CRL is not correctly signed by the trusted CA. */#define BADCRL_EXPIRED              0x20  /**< CRL is expired. */#define BADCERT_MISSING             0x40  /**< Certificate was missing. */#define BADCERT_SKIP_VERIFY         0x80  /**< Certificate verification was skipped. *//* \} name *//** * \name DER constants * These constants comply with DER encoded the ANS1 type tags. * DER encoding uses hexadecimal representation. * An example DER sequence is:\n * - 0x02 -- tag indicating INTEGER * - 0x01 -- length in octets * - 0x05 -- value * Such sequences are typically read into \c ::x509_buf. * \{ */#define ASN1_BOOLEAN                 0x01#define ASN1_INTEGER                 0x02#define ASN1_BIT_STRING              0x03#define ASN1_OCTET_STRING            0x04#define ASN1_NULL                    0x05#define ASN1_OID                     0x06#define ASN1_UTF8_STRING             0x0C#define ASN1_SEQUENCE                0x10#define ASN1_SET                     0x11#define ASN1_PRINTABLE_STRING        0x13#define ASN1_T61_STRING              0x14#define ASN1_IA5_STRING              0x16#define ASN1_UTC_TIME                0x17#define ASN1_GENERALIZED_TIME        0x18#define ASN1_UNIVERSAL_STRING        0x1C#define ASN1_BMP_STRING              0x1E#define ASN1_PRIMITIVE               0x00#define ASN1_CONSTRUCTED             0x20#define ASN1_CONTEXT_SPECIFIC        0x80/* \} name *//* \} addtogroup x509_module *//* * various object identifiers */#define X520_COMMON_NAME                3#define X520_COUNTRY                    6#define X520_LOCALITY                   7#define X520_STATE                      8#define X520_ORGANIZATION              10#define X520_ORG_UNIT                  11#define PKCS9_EMAIL                     1#define X509_OUTPUT_DER              0x01#define X509_OUTPUT_PEM              0x02#define PEM_LINE_LENGTH                72#define X509_ISSUER                  0x01#define X509_SUBJECT                 0x02/** Returns the size of the binary string, without the trailing \\0 */#define OID_SIZE(x) (sizeof(x) - 1)#define OID_X520                "\x55\x04"#define OID_CN                  OID_X520 "\x03"#define OID_PKCS1               "\x2A\x86\x48\x86\xF7\x0D\x01\x01"#define OID_PKCS1_RSA           OID_PKCS1 "\x01"#define OID_RSA_SHA_OBS         "\x2B\x0E\x03\x02\x1D"#define OID_PKCS9               "\x2A\x86\x48\x86\xF7\x0D\x01\x09"#define OID_PKCS9_EMAIL         OID_PKCS9 "\x01"/** ISO arc for standard certificate and CRL extensions */#define OID_ID_CE               "\x55\x1D" /**< id-ce OBJECT IDENTIFIER  ::=  {joint-iso-ccitt(2) ds(5) 29} *//** * Private Internet Extensions * { iso(1) identified-organization(3) dod(6) internet(1) *                      security(5) mechanisms(5) pkix(7) } */#define OID_PKIX                "\x2B\x06\x01\x05\x05\x07"/* * OIDs for standard certificate extensions */#define OID_AUTHORITY_KEY_IDENTIFIER    OID_ID_CE "\x23" /**< id-ce-authorityKeyIdentifier OBJECT IDENTIFIER ::=  { id-ce 35 } */#define OID_SUBJECT_KEY_IDENTIFIER      OID_ID_CE "\x0E" /**< id-ce-subjectKeyIdentifier OBJECT IDENTIFIER ::=  { id-ce 14 } */#define OID_KEY_USAGE                   OID_ID_CE "\x0F" /**< id-ce-keyUsage OBJECT IDENTIFIER ::=  { id-ce 15 } */#define OID_CERTIFICATE_POLICIES        OID_ID_CE "\x20" /**< id-ce-certificatePolicies OBJECT IDENTIFIER ::=  { id-ce 32 } */#define OID_POLICY_MAPPINGS             OID_ID_CE "\x21" /**< id-ce-policyMappings OBJECT IDENTIFIER ::=  { id-ce 33 } */#define OID_SUBJECT_ALT_NAME            OID_ID_CE "\x11" /**< id-ce-subjectAltName OBJECT IDENTIFIER ::=  { id-ce 17 } */#define OID_ISSUER_ALT_NAME             OID_ID_CE "\x12" /**< id-ce-issuerAltName OBJECT IDENTIFIER ::=  { id-ce 18 } */#define OID_SUBJECT_DIRECTORY_ATTRS     OID_ID_CE "\x09" /**< id-ce-subjectDirectoryAttributes OBJECT IDENTIFIER ::=  { id-ce 9 } */#define OID_BASIC_CONSTRAINTS           OID_ID_CE "\x13" /**< id-ce-basicConstraints OBJECT IDENTIFIER ::=  { id-ce 19 } */#define OID_NAME_CONSTRAINTS            OID_ID_CE "\x1E" /**< id-ce-nameConstraints OBJECT IDENTIFIER ::=  { id-ce 30 } */#define OID_POLICY_CONSTRAINTS          OID_ID_CE "\x24" /**< id-ce-policyConstraints OBJECT IDENTIFIER ::=  { id-ce 36 } */#define OID_EXTENDED_KEY_USAGE          OID_ID_CE "\x25" /**< id-ce-extKeyUsage OBJECT IDENTIFIER ::= { id-ce 37 } */#define OID_CRL_DISTRIBUTION_POINTS     OID_ID_CE "\x1F" /**< id-ce-cRLDistributionPoints OBJECT IDENTIFIER ::=  { id-ce 31 } */#define OID_INIHIBIT_ANYPOLICY          OID_ID_CE "\x36" /**< id-ce-inhibitAnyPolicy OBJECT IDENTIFIER ::=  { id-ce 54 } */#define OID_FRESHEST_CRL                OID_ID_CE "\x2E" /**< id-ce-freshestCRL OBJECT IDENTIFIER ::=  { id-ce 46 } *//* * X.509 v3 Key Usage Extension flags */#define KU_DIGITAL_SIGNATURE            (0x80)  /* bit 0 */#define KU_NON_REPUDIATION              (0x40)  /* bit 1 */#define KU_KEY_ENCIPHERMENT             (0x20)  /* bit 2 */#define KU_DATA_ENCIPHERMENT            (0x10)  /* bit 3 */#define KU_KEY_AGREEMENT                (0x08)  /* bit 4 */#define KU_KEY_CERT_SIGN                (0x04)  /* bit 5 */#define KU_CRL_SIGN                     (0x02)  /* bit 6 *//* * X.509 v3 Extended key usage OIDs */#define OID_ANY_EXTENDED_KEY_USAGE      OID_EXTENDED_KEY_USAGE "\x00" /**< anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 } */#define OID_KP                          OID_PKIX "\x03" /**< id-kp OBJECT IDENTIFIER ::= { id-pkix 3 } */#define OID_SERVER_AUTH                 OID_KP "\x01" /**< id-kp-serverAuth OBJECT IDENTIFIER ::= { id-kp 1 } */#define OID_CLIENT_AUTH                 OID_KP "\x02" /**< id-kp-clientAuth OBJECT IDENTIFIER ::= { id-kp 2 } */#define OID_CODE_SIGNING                OID_KP "\x03" /**< id-kp-codeSigning OBJECT IDENTIFIER ::= { id-kp 3 } */#define OID_EMAIL_PROTECTION            OID_KP "\x04" /**< id-kp-emailProtection OBJECT IDENTIFIER ::= { id-kp 4 } */#define OID_TIME_STAMPING               OID_KP "\x08" /**< id-kp-timeStamping OBJECT IDENTIFIER ::= { id-kp 8 } */#define OID_OCSP_SIGNING                OID_KP "\x09" /**< id-kp-OCSPSigning OBJECT IDENTIFIER ::= { id-kp 9 } */#define STRING_SERVER_AUTH              "TLS Web Server Authentication"#define STRING_CLIENT_AUTH              "TLS Web Client Authentication"#define STRING_CODE_SIGNING             "Code Signing"#define STRING_EMAIL_PROTECTION         "E-mail Protection"#define STRING_TIME_STAMPING            "Time Stamping"#define STRING_OCSP_SIGNING             "OCSP Signing"/* * OIDs for CRL extensions */#define OID_PRIVATE_KEY_USAGE_PERIOD    OID_ID_CE "\x10"#define OID_CRL_NUMBER                  OID_ID_CE "\x14" /**< id-ce-cRLNumber OBJECT IDENTIFIER ::= { id-ce 20 } *//* * Netscape certificate extensions */#define OID_NETSCAPE                "\x60\x86\x48\x01\x86\xF8\x42" /**< Netscape OID */#define OID_NS_CERT                 OID_NETSCAPE "\x01"#define OID_NS_CERT_TYPE            OID_NS_CERT  "\x01"#define OID_NS_BASE_URL             OID_NS_CERT  "\x02"#define OID_NS_REVOCATION_URL       OID_NS_CERT  "\x03"#define OID_NS_CA_REVOCATION_URL    OID_NS_CERT  "\x04"#define OID_NS_RENEWAL_URL          OID_NS_CERT  "\x07"#define OID_NS_CA_POLICY_URL        OID_NS_CERT  "\x08"#define OID_NS_SSL_SERVER_NAME      OID_NS_CERT  "\x0C"#define OID_NS_COMMENT              OID_NS_CERT  "\x0D"#define OID_NS_DATA_TYPE            OID_NETSCAPE "\x02"#define OID_NS_CERT_SEQUENCE        OID_NS_DATA_TYPE "\x05"/* * Netscape certificate types * (http://www.mozilla.org/projects/security/pki/nss/tech-notes/tn3.html) */#define NS_CERT_TYPE_SSL_CLIENT         (0x80)  /* bit 0 */#define NS_CERT_TYPE_SSL_SERVER         (0x40)  /* bit 1 */#define NS_CERT_TYPE_EMAIL              (0x20)  /* bit 2 */#define NS_CERT_TYPE_OBJECT_SIGNING     (0x10)  /* bit 3 */#define NS_CERT_TYPE_RESERVED           (0x08)  /* bit 4 */#define NS_CERT_TYPE_SSL_CA             (0x04)  /* bit 5 */#define NS_CERT_TYPE_EMAIL_CA           (0x02)  /* bit 6 */#define NS_CERT_TYPE_OBJECT_SIGNING_CA  (0x01)  /* bit 7 */#define EXT_AUTHORITY_KEY_IDENTIFIER    (1 << 0)#define EXT_SUBJECT_KEY_IDENTIFIER      (1 << 1)#define EXT_KEY_USAGE                   (1 << 2)#define EXT_CERTIFICATE_POLICIES        (1 << 3)#define EXT_POLICY_MAPPINGS             (1 << 4)#define EXT_SUBJECT_ALT_NAME            (1 << 5)#define EXT_ISSUER_ALT_NAME             (1 << 6)#define EXT_SUBJECT_DIRECTORY_ATTRS     (1 << 7)#define EXT_BASIC_CONSTRAINTS           (1 << 8)#define EXT_NAME_CONSTRAINTS            (1 << 9)#define EXT_POLICY_CONSTRAINTS          (1 << 10)#define EXT_EXTENDED_KEY_USAGE          (1 << 11)#define EXT_CRL_DISTRIBUTION_POINTS     (1 << 12)#define EXT_INIHIBIT_ANYPOLICY          (1 << 13)#define EXT_FRESHEST_CRL                (1 << 14)#define EXT_NS_CERT_TYPE                (1 << 16)/**  * \addtogroup x509_module * \{ *//** * \name Structures for parsing X.509 certificates and CRLs * \{ */ /**  * Type-length-value structure that allows for ASN1 using DER. */typedef struct _x509_buf{    int tag;                /**< ASN1 type, e.g. ASN1_UTF8_STRING. */    size_t len;             /**< ASN1 length, e.g. in octets. */    unsigned char *p;       /**< ASN1 data, e.g. in ASCII. */}x509_buf;/** * Container for ASN1 bit strings. */typedef struct _x509_bitstring{    size_t len;                 /**< ASN1 length, e.g. in octets. */    unsigned char unused_bits;  /**< Number of unused bits at the end of the string */    unsigned char *p;           /**< Raw ASN1 data for the bit string */}x509_bitstring;/** * Container for ASN1 named information objects.  * It allows for Relative Distinguished Names (e.g. cn=polarssl,ou=code,etc.). */typedef struct _x509_name{    x509_buf oid;               /**< The object identifier. */    x509_buf val;               /**< The named value. */    struct _x509_name *next;    /**< The next named information object. */}x509_name;/** * Container for a sequence of ASN.1 items */typedef struct _x509_sequence{    x509_buf buf;                   /**< Buffer containing the given ASN.1 item. */    struct _x509_sequence *next;    /**< The next entry in the sequence. */}x509_sequence;/** Container for date and time (precision in seconds). */typedef struct _x509_time{    int year, mon, day;         /**< Date. */    int hour, min, sec;         /**< Time. */}x509_time;/**  * Container for an X.509 certificate. The certificate may be chained. */typedef struct _x509_cert{    x509_buf raw;               /**< The raw certificate data (DER). */    x509_buf tbs;               /**< The raw certificate body (DER). The part that is To Be Signed. */    int version;                /**< The X.509 version. (0=v1, 1=v2, 2=v3) */    x509_buf serial;            /**< Unique id for certificate issued by a specific CA. */    x509_buf sig_oid1;          /**< Signature algorithm, e.g. sha1RSA */    x509_buf issuer_raw;        /**< The raw issuer data (DER). Used for quick comparison. */    x509_buf subject_raw;       /**< The raw subject data (DER). Used for quick comparison. */    x509_name issuer;           /**< The parsed issuer data (named information object). */    x509_name subject;          /**< The parsed subject data (named information object). */    x509_time valid_from;       /**< Start time of certificate validity. */    x509_time valid_to;         /**< End time of certificate validity. */    x509_buf pk_oid;            /**< Subject public key info. Includes the public key algorithm and the key itself. */    rsa_context rsa;            /**< Container for the RSA context. Only RSA is supported for public keys at this time. */    x509_buf issuer_id;         /**< Optional X.509 v2/v3 issuer unique identifier. */    x509_buf subject_id;        /**< Optional X.509 v2/v3 subject unique identifier. */    x509_buf v3_ext;            /**< Optional X.509 v3 extensions. Only Basic Contraints are supported at this time. */    int ext_types;              /**< Bit string containing detected and parsed extensions */    int ca_istrue;              /**< Optional Basic Constraint extension value: 1 if this certificate belongs to a CA, 0 otherwise. */    int max_pathlen;            /**< Optional Basic Constraint extension value: The maximum path length to the root certificate. */    unsigned char key_usage;    /**< Optional key usage extension value: See the values below */    x509_sequence ext_key_usage; /**< Optional list of extended key usage OIDs. */    unsigned char ns_cert_type; /**< Optional Netscape certificate type extension value: See the values below */    x509_buf sig_oid2;          /**< Signature algorithm. Must match sig_oid1. */    x509_buf sig;               /**< Signature: hash of the tbs part signed with the private key. */    int sig_alg;                /**< Internal representation of the signature algorithm, e.g. SIG_RSA_MD2 */    struct _x509_cert *next;    /**< Next certificate in the CA-chain. */ }x509_cert;/**  * Certificate revocation list entry.  * Contains the CA-specific serial numbers and revocation dates. */typedef struct _x509_crl_entry{    x509_buf raw;    x509_buf serial;    x509_time revocation_date;    x509_buf entry_ext;    struct _x509_crl_entry *next;}x509_crl_entry;/**  * Certificate revocation list structure.  * Every CRL may have multiple entries. */typedef struct _x509_crl{    x509_buf raw;           /**< The raw certificate data (DER). */    x509_buf tbs;           /**< The raw certificate body (DER). The part that is To Be Signed. */    int version;    x509_buf sig_oid1;    x509_buf issuer_raw;    /**< The raw issuer data (DER). */    x509_name issuer;       /**< The parsed issuer data (named information object). */    x509_time this_update;      x509_time next_update;    x509_crl_entry entry;   /**< The CRL entries containing the certificate revocation times for this CA. */    x509_buf crl_ext;    x509_buf sig_oid2;    x509_buf sig;    int sig_alg;    struct _x509_crl *next; }x509_crl;/** \} name Structures for parsing X.509 certificates and CRLs *//** \} addtogroup x509_module *//** * \name Structures for writing X.509 certificates. * XvP: commented out as they are not used. * - <tt>typedef struct _x509_node x509_node;</tt> * - <tt>typedef struct _x509_raw x509_raw;</tt> *//*typedef struct _x509_node{    unsigned char *data;    unsigned char *p;    unsigned char *end;    size_t len;}x509_node;typedef struct _x509_raw{    x509_node raw;    x509_node tbs;    x509_node version;    x509_node serial;    x509_node tbs_signalg;    x509_node issuer;    x509_node validity;    x509_node subject;    x509_node subpubkey;    x509_node signalg;    x509_node sign;}x509_raw;*/#ifdef __cplusplusextern "C" {#endif/** * \name Functions to read in DHM parameters, a certificate, CRL or private RSA key * \{ *//** \ingroup x509_module *//** * \brief          Parse one or more certificates and add them *                 to the chained list * * \param chain    points to the start of the chain * \param buf      buffer holding the certificate data * \param buflen   size of the buffer * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_crt( x509_cert *chain, const unsigned char *buf, size_t buflen );/** \ingroup x509_module *//** * \brief          Load one or more certificates and add them *                 to the chained list * * \param chain    points to the start of the chain * \param path     filename to read the certificates from * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_crtfile( x509_cert *chain, const char *path );/** \ingroup x509_module *//** * \brief          Parse one or more CRLs and add them *                 to the chained list * * \param chain    points to the start of the chain * \param buf      buffer holding the CRL data * \param buflen   size of the buffer * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_crl( x509_crl *chain, const unsigned char *buf, size_t buflen );/** \ingroup x509_module *//** * \brief          Load one or more CRLs and add them *                 to the chained list * * \param chain    points to the start of the chain * \param path     filename to read the CRLs from * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_crlfile( x509_crl *chain, const char *path );/** \ingroup x509_module *//** * \brief          Parse a private RSA key * * \param rsa      RSA context to be initialized * \param key      input buffer * \param keylen   size of the buffer * \param pwd      password for decryption (optional) * \param pwdlen   size of the password * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_key( rsa_context *rsa,                   const unsigned char *key, size_t keylen,                   const unsigned char *pwd, size_t pwdlen );/** \ingroup x509_module *//** * \brief          Load and parse a private RSA key * * \param rsa      RSA context to be initialized * \param path     filename to read the private key from * \param password password to decrypt the file (can be NULL) * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_keyfile( rsa_context *rsa, const char *path,                       const char *password );/** \ingroup x509_module *//** * \brief          Parse a public RSA key * * \param rsa      RSA context to be initialized * \param key      input buffer * \param keylen   size of the buffer * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_public_key( rsa_context *rsa,                   const unsigned char *key, size_t keylen );/** \ingroup x509_module *//** * \brief          Load and parse a public RSA key * * \param rsa      RSA context to be initialized * \param path     filename to read the private key from * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_public_keyfile( rsa_context *rsa, const char *path );/** \ingroup x509_module *//** * \brief          Parse DHM parameters * * \param dhm      DHM context to be initialized * \param dhmin    input buffer * \param dhminlen size of the buffer * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_dhm( dhm_context *dhm, const unsigned char *dhmin, size_t dhminlen );/** \ingroup x509_module *//** * \brief          Load and parse DHM parameters * * \param dhm      DHM context to be initialized * \param path     filename to read the DHM Parameters from * * \return         0 if successful, or a specific X509 or PEM error code */int x509parse_dhmfile( dhm_context *dhm, const char *path );/** \} name Functions to read in DHM parameters, a certificate, CRL or private RSA key *//** * \brief          Store the certificate DN in printable form into buf; *                 no more than size characters will be written. * * \param buf      Buffer to write to * \param size     Maximum size of buffer * \param dn       The X509 name to represent * * \return         The amount of data written to the buffer, or -1 in *                 case of an error. */int x509parse_dn_gets( char *buf, size_t size, const x509_name *dn );/** * \brief          Store the certificate serial in printable form into buf; *                 no more than size characters will be written. * * \param buf      Buffer to write to * \param size     Maximum size of buffer * \param serial   The X509 serial to represent * * \return         The amount of data written to the buffer, or -1 in *                 case of an error. */int x509parse_serial_gets( char *buf, size_t size, const x509_buf *serial );/** * \brief          Returns an informational string about the *                 certificate. * * \param buf      Buffer to write to * \param size     Maximum size of buffer * \param prefix   A line prefix * \param crt      The X509 certificate to represent * * \return         The amount of data written to the buffer, or -1 in *                 case of an error. */int x509parse_cert_info( char *buf, size_t size, const char *prefix,                         const x509_cert *crt );/** * \brief          Returns an informational string about the *                 CRL. * * \param buf      Buffer to write to * \param size     Maximum size of buffer * \param prefix   A line prefix * \param crl      The X509 CRL to represent * * \return         The amount of data written to the buffer, or -1 in *                 case of an error. */int x509parse_crl_info( char *buf, size_t size, const char *prefix,                        const x509_crl *crl );/** * \brief          Give an known OID, return its descriptive string. * * \param oid      buffer containing the oid * * \return         Return a string if the OID is known, *                 or NULL otherwise. */const char *x509_oid_get_description( x509_buf *oid );/* * \brief          Give an OID, return a string version of its OID number. * * \param buf      Buffer to write to * \param size     Maximum size of buffer * \param oid      Buffer containing the OID * * \return         The amount of data written to the buffer, or -1 in *                 case of an error. */int x509_oid_get_numeric_string( char *buf, size_t size, x509_buf *oid );/** * \brief          Check a given x509_time against the system time and check *                 if it is valid. * * \param time     x509_time to check * * \return         Return 0 if the x509_time is still valid, *                 or 1 otherwise. */int x509parse_time_expired( const x509_time *time );/** * \name Functions to verify a certificate * \{ *//** \ingroup x509_module *//** * \brief          Verify the certificate signature * * \param crt      a certificate to be verified * \param trust_ca the trusted CA chain * \param ca_crl   the CRL chain for trusted CA's * \param cn       expected Common Name (can be set to *                 NULL if the CN must not be verified) * \param flags    result of the verification * \param f_vrfy   verification function * \param p_vrfy   verification parameter * * \return         0 if successful or POLARSSL_ERR_X509_SIG_VERIFY_FAILED, *                 in which case *flags will have one or more of *                 the following values set: *                      BADCERT_EXPIRED -- *                      BADCERT_REVOKED -- *                      BADCERT_CN_MISMATCH -- *                      BADCERT_NOT_TRUSTED * * \note           TODO: add two arguments, depth and crl */int x509parse_verify( x509_cert *crt,                      x509_cert *trust_ca,                      x509_crl *ca_crl,                      const char *cn, int *flags,                      int (*f_vrfy)(void *, x509_cert *, int, int),                      void *p_vrfy );/** * \brief          Verify the certificate signature * * \param crt      a certificate to be verified * \param crl      the CRL to verify against * * \return         1 if the certificate is revoked, 0 otherwise * */int x509parse_revoked( const x509_cert *crt, const x509_crl *crl );/** \} name Functions to verify a certificate *//** * \name Functions to clear a certificate, CRL or private RSA key  * \{ *//** \ingroup x509_module *//** * \brief          Unallocate all certificate data * * \param crt      Certificate chain to free */void x509_free( x509_cert *crt );/** \ingroup x509_module *//** * \brief          Unallocate all CRL data * * \param crl      CRL chain to free */void x509_crl_free( x509_crl *crl );/** \} name Functions to clear a certificate, CRL or private RSA key *//** * \brief          Checkup routine * * \return         0 if successful, or 1 if the test failed */int x509_self_test( int verbose );#ifdef __cplusplus}#endif#endif /* x509.h */
 |