Now using openssl on windows instead of ms crypto api. Can't stand all these handles for the crypto api, openssl will be required later anyway. MD5 sums will be used when transfering avatars for efficient caching - avatars are identified by their MD5 sum.

Sorry for making it even harder to compile on windows...
This commit is contained in:
lotodore
2007-09-08 11:00:46 +00:00
parent c5c6bec710
commit d0898ed336
10 changed files with 26 additions and 119 deletions
-34
View File
@@ -1,34 +0,0 @@
/***************************************************************************
* Copyright (C) 2007 by Lothar May *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifdef _WIN32
#error This source code is not for Win32.
#endif
#include <openssl/rand.h>
#include <core/rand.h>
void
RandomBytes(unsigned char *buf, unsigned size)
{
if(!RAND_bytes(buf, size))
{
RAND_pseudo_bytes(buf, size);
}
}
-7
View File
@@ -1,7 +0,0 @@
#ifndef RAND_H
#define RAND_H
void RandomBytes(unsigned char *buf, unsigned size);
#endif
-63
View File
@@ -1,63 +0,0 @@
/***************************************************************************
* Copyright (C) 2007 by Lothar May *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _WIN32
#error This source code is Win32 only.
#endif
#include <windows.h>
#include <wincrypt.h>
#include <core/rand.h>
class CryptData
{
public:
CryptData()
{
if (!::CryptAcquireContext(
&cryptProvider,
NULL,
NULL,
PROV_RSA_FULL,
CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
{
cryptProvider = 0;
}
}
~CryptData()
{
if (cryptProvider)
CryptReleaseContext(cryptProvider, 0);
}
HCRYPTPROV cryptProvider;
};
static CryptData g_cryptData;
void
RandomBytes(unsigned char *buf, unsigned size)
{
HCRYPTPROV provider = g_cryptData.cryptProvider;
if (provider)
::CryptGenRandom(provider, size, buf);
}