Searched refs:cword (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/crypto/
H A Dpadlock-aes.c63 struct cword { struct
75 * and cword aligned on 16 Bytes boundaries!!! */
78 struct cword encrypt;
79 struct cword decrypt;
80 } cword; member in struct:aes_ctx
350 memset(&ctx->cword, 0, sizeof(ctx->cword));
352 ctx->cword.decrypt.encdec = 1;
353 ctx->cword.encrypt.rounds = 10 + (key_len - 16) / 4;
354 ctx->cword
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_padlock.c268 } cword; /* Control word */ member in struct:padlock_cipher_data
790 cdata->cword.b.encdec = 0;
792 cdata->cword.b.encdec = (ctx->encrypt == 0);
793 cdata->cword.b.rounds = 10 + (key_len - 128) / 32;
794 cdata->cword.b.ksize = (key_len - 128) / 64;
801 cdata->cword.b.keygen = 0;
822 cdata->cword.b.keygen = 1;
1077 if (cdata->cword.b.encdec) {
1078 cdata->cword.b.encdec=0;
1081 cdata->cword
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Drijndael.c656 unsigned int cword[4] __attribute__ ((aligned (16)));
661 cword[0] = (ctx->rounds & 15); /* (The mask is just a safeguard.) */
662 cword[1] = 0;
663 cword[2] = 0;
664 cword[3] = 0;
666 cword[0] |= 0x00000200;
678 : "S" (a), "D" (b), "d" (cword), "r" (ctx->padlockkey)
652 unsigned int cword[4] __attribute__ ((aligned (16))); local

Completed in 55 milliseconds