Home | History | Annotate | Download | only in asn1

Lines Matching full:bound

103 static int mime_bound_check(char *line, int linelen, char *bound, int blen);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
283 char bound[33], c;
299 RAND_pseudo_bytes((unsigned char *)bound, 32);
301 c = bound[i] & 0xf;
304 bound[i] = c;
306 bound[32] = 0;
313 bound, mime_eol, mime_eol);
317 BIO_printf(bio, "------%s%s", bound, mime_eol);
320 BIO_printf(bio, "%s------%s%s", mime_eol, bound, mime_eol);
332 BIO_printf(bio,"%s------%s--%s%s", mime_eol, bound,
604 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret)
613 blen = strlen(bound);
620 state = mime_bound_check(linebuf, len, bound, blen);
912 static int mime_bound_check(char *line, int linelen, char *bound, int blen)
915 if(blen == -1) blen = strlen(bound);
919 if(!strncmp(line, "--", 2) && !strncmp(line + 2, bound, blen)) {