Lines Matching refs:input

33  void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output,
35 void DES_ecb2_encrypt(const_DES_cblock *input, DES_cblock *output,
37 void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output,
41 void DES_ncbc_encrypt(const unsigned char *input, unsigned char *output,
50 void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output,
60 void DES_xcbc_encrypt(const unsigned char *input, unsigned char *output,
64 void DES_ede2_cbc_encrypt(const unsigned char *input, unsigned char *output,
75 void DES_ede3_cbc_encrypt(const unsigned char *input, unsigned char *output,
88 DES_LONG DES_cbc_cksum(const unsigned char *input, DES_cblock *output,
91 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
138 The following routines mostly operate on an input and output stream of
143 (ECB) mode. It always transforms the input data, pointed to by
144 I<input>, into the output data, pointed to by the I<output> argument.
145 If the I<encrypt> argument is nonzero (DES_ENCRYPT), the I<input>
148 I<DES_set_key>. If I<encrypt> is zero (DES_DECRYPT), the I<input> (now
152 DES_ecb3_encrypt() encrypts/decrypts the I<input> block by using
154 the input with I<ks1>, decrypting with the key schedule I<ks2>, and
166 the I<input> argument into the ciphertext pointed to by the I<output>
191 method takes an array of characters as input and outputs an array of
202 routine will encrypt the input bytes to output and then update ivec
210 takes an array of characters as input and outputs an array of
226 DES_cbc_cksum() produces an 8 byte checksum based on the input stream
233 checksum from the input bytes. The algorithm can be iterated over the
234 input, depending on I<out_count>, 1, 2, 3 or 4 times. If I<output> is
269 DES_cfb_encrypt() and DES_ofb_encrypt() operates on input of 8 bits.
271 first 12 bits will come from the 1st input byte and the low half of
272 the second input byte. The second 12 bits will have the low 8 bits
273 taken from the 3rd input byte and the top 4 bits taken from the 4th
274 input byte. The same holds for output. This function has been
276 and because once you get into pulling bytes input bytes apart things
304 last 4 bytes of the checksum of the input.