Home | History | Annotate | Download | only in crypto

Lines Matching full:ctx

26 	void *ctx;
31 ctx = aes_encrypt_init(key, 16);
32 if (ctx == NULL)
40 aes_encrypt(ctx, cbc, cbc);
44 aes_encrypt_deinit(ctx);
59 void *ctx;
64 ctx = aes_decrypt_init(key, 16);
65 if (ctx == NULL)
72 aes_decrypt(ctx, pos, pos);
78 aes_decrypt_deinit(ctx);