Lines Matching refs:outmp
2539 mblk_t *outmp; in do_decrypt() local
2543 outmp = des_cfb_decrypt(q, tmi, mp); in do_decrypt()
2546 outmp = mp; in do_decrypt()
2549 outmp = des_cbc_decrypt(q, tmi, mp, &null_hash); in do_decrypt()
2552 outmp = des_cbc_decrypt(q, tmi, mp, &md5_hash); in do_decrypt()
2555 outmp = des_cbc_decrypt(q, tmi, mp, &crc32_hash); in do_decrypt()
2558 outmp = des_cbc_decrypt(q, tmi, mp, &sha1_hash); in do_decrypt()
2562 outmp = arcfour_hmac_md5_decrypt(q, tmi, mp, &md5_hash); in do_decrypt()
2566 outmp = aes_decrypt(q, tmi, mp, &sha1_hash); in do_decrypt()
2569 return (outmp); in do_decrypt()
2584 mblk_t *outmp; in do_encrypt() local
2588 outmp = des_cfb_encrypt(q, tmi, mp); in do_encrypt()
2591 outmp = des_cbc_encrypt(q, tmi, mp, &null_hash); in do_encrypt()
2594 outmp = des_cbc_encrypt(q, tmi, mp, &md5_hash); in do_encrypt()
2597 outmp = des_cbc_encrypt(q, tmi, mp, &crc32_hash); in do_encrypt()
2600 outmp = des_cbc_encrypt(q, tmi, mp, &sha1_hash); in do_encrypt()
2604 outmp = arcfour_hmac_md5_encrypt(q, tmi, mp, &md5_hash); in do_encrypt()
2608 outmp = aes_encrypt(q, tmi, mp, &sha1_hash); in do_encrypt()
2611 outmp = mp; in do_encrypt()
2614 return (outmp); in do_encrypt()