Lines Matching defs:from
35 * The word 'cryptographic' can be left out if the rouines from the library
37 * 4. If you include any Windows specific code (or a derivative thereof) from
220 /* Allow CMS to be read from PKCS#7 headers */
348 * NOT taken from the BytesToKey function */
504 char *from;
506 from= *fromp;
511 if ((*from >= '0') && (*from <= '9'))
512 v= *from-'0';
513 else if ((*from >= 'A') && (*from <= 'F'))
514 v= *from-'A'+10;
515 else if ((*from >= 'a') && (*from <= 'f'))
516 v= *from-'a'+10;
522 from++;
526 *fromp=from;