txform             62 crypto/cryptodev.c 	struct enc_xform *txform;
txform            146 crypto/cryptodev.c 	struct enc_xform *txform = NULL;
txform            159 crypto/cryptodev.c 			txform = &enc_xform_des;
txform            162 crypto/cryptodev.c 			txform = &enc_xform_3des;
txform            165 crypto/cryptodev.c 			txform = &enc_xform_blf;
txform            168 crypto/cryptodev.c 			txform = &enc_xform_cast5;
txform            171 crypto/cryptodev.c 			txform = &enc_xform_skipjack;
txform            174 crypto/cryptodev.c 			txform = &enc_xform_rijndael128;
txform            177 crypto/cryptodev.c 			txform = &enc_xform_aes_ctr;
txform            180 crypto/cryptodev.c 			txform = &enc_xform_arc4;
txform            183 crypto/cryptodev.c 			txform = &enc_xform_null;
txform            216 crypto/cryptodev.c 		if (txform) {
txform            217 crypto/cryptodev.c 			crie.cri_alg = txform->type;
txform            219 crypto/cryptodev.c 			if (sop->keylen > txform->maxkey ||
txform            220 crypto/cryptodev.c 			    sop->keylen < txform->minkey) {
txform            251 crypto/cryptodev.c 		error = crypto_newsession(&sid, (txform ? &crie : &cria),
txform            258 crypto/cryptodev.c 		    cria.cri_key, cria.cri_klen, sop->cipher, sop->mac, txform,
txform            314 crypto/cryptodev.c 	if (cse->txform) {
txform            315 crypto/cryptodev.c 		if (cop->len == 0 || (cop->len % cse->txform->blocksize) != 0)
txform            333 crypto/cryptodev.c 	crp = crypto_getreq((cse->txform != NULL) + (cse->thash != NULL));
txform            341 crypto/cryptodev.c 		if (cse->txform)
txform            344 crypto/cryptodev.c 		if (cse->txform)
txform            393 crypto/cryptodev.c 		if ((error = copyin(cop->iv, cse->tmp_iv, cse->txform->blocksize)))
txform            395 crypto/cryptodev.c 		bcopy(cse->tmp_iv, crde->crd_iv, cse->txform->blocksize);
txform            402 crypto/cryptodev.c 		crde->crd_skip = cse->txform->blocksize;
txform            403 crypto/cryptodev.c 		crde->crd_len -= cse->txform->blocksize;
txform            741 crypto/cryptodev.c     struct enc_xform *txform, struct auth_hash *thash)
txform            756 crypto/cryptodev.c 	cse->txform = txform;
txform            102 netinet/ip_esp.c 	struct enc_xform *txform = NULL;
txform            115 netinet/ip_esp.c 			txform = &enc_xform_null;
txform            119 netinet/ip_esp.c 			txform = &enc_xform_des;
txform            123 netinet/ip_esp.c 			txform = &enc_xform_3des;
txform            127 netinet/ip_esp.c 			txform = &enc_xform_rijndael128;
txform            131 netinet/ip_esp.c 			txform = &enc_xform_aes_ctr;
txform            135 netinet/ip_esp.c 			txform = &enc_xform_blf;
txform            139 netinet/ip_esp.c 			txform = &enc_xform_cast5;
txform            143 netinet/ip_esp.c 			txform = &enc_xform_skipjack;
txform            151 netinet/ip_esp.c 		if (ii->ii_enckeylen < txform->minkey) {
txform            152 netinet/ip_esp.c 			DPRINTF(("esp_init(): keylength %d too small (min length is %d) for algorithm %s\n", ii->ii_enckeylen, txform->minkey, txform->name));
txform            156 netinet/ip_esp.c 		if (ii->ii_enckeylen > txform->maxkey) {
txform            157 netinet/ip_esp.c 			DPRINTF(("esp_init(): keylength %d too large (max length is %d) for algorithm %s\n", ii->ii_enckeylen, txform->maxkey, txform->name));
txform            161 netinet/ip_esp.c 		tdbp->tdb_encalgxform = txform;
txform            164 netinet/ip_esp.c 		    txform->name));
txform            166 netinet/ip_esp.c 		tdbp->tdb_ivlen = txform->ivsize;