Lines Matching defs:keyid_str
247 * keyid_str- A byte string with the localkeyid to set
262 sunw_set_localkeyid(const char *keyid_str, int keyid_len, EVP_PKEY *pkey,
272 if (X509_keyid_set1(cert, (uchar_t *)keyid_str, keyid_len)
281 M_ASN1_OCTET_STRING_set(str, keyid_str, keyid_len) == 0 ||
337 * keyid_str- Points to a location which will receive the pointer to
340 * keyid_len- Length of keyid_str.
350 char **keyid_str, int *keyid_len)
358 if (keyid_str != NULL)
359 *keyid_str = NULL;
386 if ((*keyid_str = malloc(len)) == NULL) {
391 (void) memcpy(*keyid_str, str->data, len);
472 * keyid_str- A byte string with the localkeyid to match
494 sunw_find_localkeyid(char *keyid_str, int len, STACK_OF(EVP_PKEY) *pkeys,
503 if (keyid_str == NULL ||
518 M_ASN1_OCTET_STRING_set(cmpstr, keyid_str, len) == 0) {