Lines Matching full:bytes
175 unsigned char *bytes, int len, int loc, int set)
179 ne = X509_NAME_ENTRY_create_by_OBJ(NULL, obj, type, bytes, len);
187 unsigned char *bytes, int len, int loc, int set)
191 ne = X509_NAME_ENTRY_create_by_NID(NULL, nid, type, bytes, len);
199 const unsigned char *bytes, int len, int loc, int set)
203 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len);
276 const char *field, int type, const unsigned char *bytes, int len)
289 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len);
295 int type, unsigned char *bytes, int len)
306 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len);
312 ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len)
326 if (!X509_NAME_ENTRY_set_data(ret,type,bytes,len))
350 const unsigned char *bytes, int len)
354 if ((ne == NULL) || ((bytes == NULL) && (len != 0))) return(0);
356 return ASN1_STRING_set_by_NID(&ne->value, bytes,
359 if (len < 0) len=strlen((const char *)bytes);
360 i=ASN1_STRING_set(ne->value,bytes,len);
365 ne->value->type=ASN1_PRINTABLE_type(bytes,len);