Home | History | Annotate | Download | only in rsa

Lines Matching refs:to

7  * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 int RSA_padding_add_none(unsigned char *to, int tlen,
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen,
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);