Lines Matching defs:to
6 * The implementation was written so as to conform with Netscapes SSL.
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
16 * the code are not to be removed.
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
119 * form and caches encodings so we have to process the internal form and convert
120 * to the external form.
220 /* Convert internal representation to X509_NAME structure */
319 * In it all strings are converted to UTF8, leading, trailing and
320 * multiple spaces collapsed, converted to lower case and the leading
415 unsigned char *to, *from;
431 to = out->data;
432 from = to;
436 /* Convert string in place to canonical form.
437 * Ultimately we may need to handle a wider range of characters
449 to = from + len - 1;
452 while ((len > 0) && !(*to & 0x80) && isspace(*to))
454 to--;
458 to = out->data;
466 *to++ = *from++;
473 *to++ = ' ';
474 /* Ignore subsequent spaces. Note: don't need to
487 *to++ = tolower(*from);
493 out->length = to - out->data;