open-license-manager
2014-09-15 345c7b764f0721e9bbc993a3cd7f803fd42cf943
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * CryptoHelperWindows.cpp
 *
 *  Created on: Sep 14, 2014
 *
 */
 
#include "CryptoHelperWindows.h"
// The RSA public-key key exchange algorithm
#define ENCRYPT_ALGORITHM         CALG_RSA_SIGN
// The high order WORD 0x0200 (decimal 512)
// determines the key length in bits.
#define KEYLENGTH                 0x02000000
 
namespace license {
 
CryptoHelperWindows::CryptoHelperWindows() {
    // TODO Auto-generated constructor stub
 
}
 
CryptoHelperWindows::~CryptoHelperWindows() {
    // TODO Auto-generated destructor stub
}
 
} /* namespace license */