Merge branch 'master' of github.com:FreeRDP/FreeRDP

This commit is contained in:
Marc-André Moreau 2012-02-18 22:04:42 -05:00
commit c7a524aa5a
2 changed files with 5 additions and 2 deletions

View File

@ -358,6 +358,9 @@ boolean security_establish_keys(uint8* client_random, rdpRdp* rdp)
printf("FIPS Compliant encryption level.\n");
/* disable fastpath input; it doesnt handle FIPS encryption yet */
rdp->settings->fastpath_input = false;
sha1 = crypto_sha1_init();
crypto_sha1_update(sha1, client_random + 16, 16);
crypto_sha1_update(sha1, server_random + 16, 16);

View File

@ -26,8 +26,6 @@
#include <freerdp/utils/memory.h>
#include <freerdp/utils/hexdump.h>
#include <freerdp/auth/credssp.h>
#include <time.h>
#include <errno.h>
#include <fcntl.h>
@ -41,6 +39,8 @@
#include "fastpath.h"
#include "transport.h"
#include <freerdp/auth/credssp.h>
#define BUFFER_SIZE 16384
STREAM* transport_recv_stream_init(rdpTransport* transport, int size)