Home | History | Annotate | Download | only in rc2

Lines Matching defs:out

35  *    The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
109 unsigned char out[80];
111 char *text="Hello to all people out there";
186 idea_cbc_encrypt((unsigned char *)text,out,strlen(text)+1,&key,iv,1);
188 idea_cbc_encrypt(out,out,8,&dkey,iv,0);
189 idea_cbc_encrypt(&(out[8]),&(out[8]),strlen(text)+1-8,&dkey,iv,0);
190 if (memcmp(text,out,strlen(text)+1) != 0)