diff options
author | Wolfgang Bumiller <w.bumiller@proxmox.com> | 2015-07-14 14:51:40 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-07-14 15:33:48 +0200 |
commit | a16951375f7669b7faf27f72ca753e25325c5179 (patch) | |
tree | 1306e2afab1b86e3d204d7f2a928d7e72a5359b2 /ui | |
parent | 6169b60285fe1ff730d840a49527e721bfb30899 (diff) | |
download | qemu-a16951375f7669b7faf27f72ca753e25325c5179.zip |
vnc: fix vnc client authentication
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: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/vnc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2551,7 +2551,7 @@ static int protocol_client_auth_vnc(VncState *vs, uint8_t *data, size_t len) goto reject; } - if (qcrypto_cipher_decrypt(cipher, + if (qcrypto_cipher_encrypt(cipher, vs->challenge, response, VNC_AUTH_CHALLENGE_SIZE, |