Lines Matching refs:R
47 int R; member
468 int N, R, i, r; in anubis_setkey() local
483 ctx->R = R = 8 + N; in anubis_setkey()
492 for (r = 0; r <= R; r++) { in anubis_setkey()
532 if (r == R) in anubis_setkey()
557 ctx->D[0][i] = ctx->E[R][i]; in anubis_setkey()
558 ctx->D[R][i] = ctx->E[0][i]; in anubis_setkey()
560 for (r = 1; r < R; r++) { in anubis_setkey()
562 u32 v = ctx->E[R - r][i]; in anubis_setkey()
575 u8 *ciphertext, const u8 *plaintext, const int R) in anubis_crypt() argument
594 for (r = 1; r < R; r++) { in anubis_crypt()
634 roundKey[R][0]; in anubis_crypt()
640 roundKey[R][1]; in anubis_crypt()
646 roundKey[R][2]; in anubis_crypt()
652 roundKey[R][3]; in anubis_crypt()
665 anubis_crypt(ctx->E, dst, src, ctx->R); in anubis_encrypt()
671 anubis_crypt(ctx->D, dst, src, ctx->R); in anubis_decrypt()