Re: [Qemu-devel] [PATCH] vnc: fix vnc client authentication

2015-07-17 Thread Daniel P. Berrange
On Tue, Jul 14, 2015 at 02:51:40PM +0200, Wolfgang Bumiller wrote: > Commit 800567a61 updated the code to the generic crypto API > and mixed up encrypt and decrypt functions in > procotol_client_auth_vnc. > (Used to be: deskey(key, EN0) which encrypts, and was > changed to qcrypto_cipher_decrypt in

[Qemu-devel] [PATCH] vnc: fix vnc client authentication

2015-07-14 Thread Wolfgang Bumiller
Commit 800567a61 updated the code to the generic crypto API and mixed up encrypt and decrypt functions in procotol_client_auth_vnc. (Used to be: deskey(key, EN0) which encrypts, and was changed to qcrypto_cipher_decrypt in 800567a61.) Changed it to qcrypto_cipher_encrypt now. Signed-off-by: Wolfga