Lines Matching defs:ctx
48 void arc4_setup( arc4_context *ctx, unsigned char *key, int keylen )53 ctx->x = 0;54 ctx->y = 0;55 m = ctx->m;76 void arc4_crypt( arc4_context *ctx, unsigned char *buf, int buflen )81 x = ctx->x;82 y = ctx->y;83 m = ctx->m;97 ctx->x = x;98 ctx->y = y;