• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/rxrpc/

Lines Matching defs:desc

116 	struct blkcipher_desc desc;
131 desc.tfm = conn->cipher;
132 desc.info = iv.x;
133 desc.flags = 0;
142 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
159 struct blkcipher_desc desc;
180 desc.tfm = call->conn->cipher;
181 desc.info = iv.x;
182 desc.flags = 0;
186 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
206 struct blkcipher_desc desc;
226 desc.tfm = call->conn->cipher;
227 desc.info = iv.x;
228 desc.flags = 0;
232 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(rxkhdr));
244 crypto_blkcipher_encrypt_iv(&desc, sg, sg, len);
259 struct blkcipher_desc desc;
284 desc.tfm = call->conn->cipher;
285 desc.info = iv.x;
286 desc.flags = 0;
296 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
333 struct blkcipher_desc desc;
355 desc.tfm = call->conn->cipher;
356 desc.info = iv.x;
357 desc.flags = 0;
359 crypto_blkcipher_decrypt_iv(&desc, sg, sg, 8);
408 struct blkcipher_desc desc;
438 desc.tfm = call->conn->cipher;
439 desc.info = iv.x;
440 desc.flags = 0;
442 crypto_blkcipher_decrypt_iv(&desc, sg, sg, skb->len);
490 struct blkcipher_desc desc;
519 desc.tfm = call->conn->cipher;
520 desc.info = iv.x;
521 desc.flags = 0;
531 crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
721 struct blkcipher_desc desc;
727 desc.tfm = conn->cipher;
728 desc.info = iv.x;
729 desc.flags = 0;
732 crypto_blkcipher_encrypt_iv(&desc, sg, sg, sizeof(resp->encrypted));
825 struct blkcipher_desc desc;
856 desc.tfm = conn->server_key->payload.data;
857 desc.info = iv.x;
858 desc.flags = 0;
861 crypto_blkcipher_decrypt_iv(&desc, sg, sg, ticket_len);
969 struct blkcipher_desc desc;
984 desc.tfm = rxkad_ci;
985 desc.info = iv.x;
986 desc.flags = 0;
989 crypto_blkcipher_decrypt_iv(&desc, sg, sg, sizeof(resp->encrypted));