Lines Matching defs:data
119 * Given a block of DER encoded X.509 certificate data and
121 * parse the cert data and return the data associated with
172 * Given a block of DER encoded X.509 certificate data and
254 * If the given certificate data (X.509 DER encoded data)
256 * data and return it in the KMF_X509EXT_BASICCONSTRAINTS
261 * KMF_ERR_BAD_PARAMETER - input data was bad.
321 * Decode the ASN.1 data for the extension.
408 * If the given certificate data (X.509 DER encoded data)
410 * data and return it in the KMF_X509EXT_BASICCONSTRAINTS
415 * KMF_ERR_BAD_PARAMETER - input data was bad.
540 * sort of data comes next.
572 * blob into the pqinfo data record.
602 * If the given certificate data (X.509 DER encoded data)
604 * data and return it in the KMF_X509EXT_CERT_POLICIES
609 * KMF_ERR_BAD_PARAMETER - input data was bad.
641 * Decode the ASN.1 data for the extension.
739 * If the given certificate data (X.509 DER encoded data)
741 * data and return it in the KMF_X509EXT_AUTHINFOACCESS
746 * KMF_ERR_BAD_PARAMETER - input data was bad.
775 * Decode the ASN.1 data for the extension.
831 * sort of data comes next.
1026 * This function retrieves the CRL Distribution Points extension data from
1028 * extension data, and returns it in the KMF_X509EXT_CRLDISTPOINTS record.
1048 /* Get the ASN.1 data for this extension. */
1057 * Decode the CRLDistributionPoints ASN.1 data. The Syntax for
1169 /* For cRLIssuer, read the data only at phase 1 */
1595 * Given a certificate (DER Encoded data) and a KMF
1598 * extension data.
1772 /* The keystore must extract the pubkey data */
1981 * for things like serialNumber and Version. The data structure
1983 * and copy here. Don't use memory from the stack since this data
1987 set_integer(KMF_DATA *data, void *value, int length)
1989 if (data == NULL || value == NULL)
1992 data->Data = malloc(length);
1993 if (data->Data == NULL)
1996 data->Length = length;
1997 (void) memcpy((void *)data->Data, (const void *)value, length);
2003 set_bigint(KMF_BIGINT *data, KMF_BIGINT *bigint)
2005 if (data == NULL || bigint == NULL || bigint->len == NULL)
2008 data->val = malloc(bigint->len);
2009 if (data->val == NULL)
2012 data->len = bigint->len;
2014 (void) memcpy((void *)data->val, bigint->val, bigint->len);
2116 /* Write the old extension data first */
2137 * just replace the BER data associated with the found extension.