Lines Matching defs:bytes
142 const unsigned char *bytes, int len, int loc,
148 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len);
157 const unsigned char *bytes, int len, int loc,
162 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len);
171 const unsigned char *bytes, int len, int loc,
176 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len);
244 const unsigned char *bytes,
256 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len);
263 const unsigned char *bytes,
274 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len);
281 const unsigned char *bytes,
294 if (!X509_NAME_ENTRY_set_data(ret, type, bytes, len))
318 const unsigned char *bytes, int len)
322 if ((ne == NULL) || ((bytes == NULL) && (len != 0)))
325 return ASN1_STRING_set_by_NID(&ne->value, bytes,
329 len = strlen((const char *)bytes);
330 i = ASN1_STRING_set(ne->value, bytes, len);
335 ne->value->type = ASN1_PRINTABLE_type(bytes, len);