Lines Matching defs:out
34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
392 * <71755.204@CompuServe.COM> for pointing this out. */
455 * pointing this out. */
545 uint8_t *out = out_block->bytes;
553 l2c(l, out);
555 l2c(l, out);
559 void DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
581 l2c(tout0, out);
583 l2c(tout1, out);
593 l2c(tout0, out);
595 l2c(tout1, out);
611 l2c(tout0, out);
612 l2c(tout1, out);
624 l2cn(tout0, tout1, out, len);
641 uint8_t *out = output->bytes;
654 l2c(l0, out);
655 l2c(l1, out);
658 void DES_ede3_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
685 l2c(tout0, out);
686 l2c(tout1, out);
699 l2c(tout0, out);
700 l2c(tout1, out);
725 l2c(tout0, out);
726 l2c(tout1, out);
745 l2cn(tout0, tout1, out, len);
758 void DES_ede2_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
763 DES_ede3_cbc_encrypt(in, out, len, ks1, ks2, ks1, ivec, enc);