1 | /*
|
---|
2 | * cipher.h - Simple wrapper to 3DES,AES128/256 CBC ciphers
|
---|
3 | * Copyright (C) 2003 Justin Karneges
|
---|
4 | *
|
---|
5 | * This library is free software; you can redistribute it and/or
|
---|
6 | * modify it under the terms of the GNU Lesser General Public
|
---|
7 | * License as published by the Free Software Foundation; either
|
---|
8 | * version 2.1 of the License, or (at your option) any later version.
|
---|
9 | *
|
---|
10 | * This library is distributed in the hope that it will be useful,
|
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
13 | * Lesser General Public License for more details.
|
---|
14 | *
|
---|
15 | * You should have received a copy of the GNU Lesser General Public
|
---|
16 | * License along with this library; if not, write to the Free Software
|
---|
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
18 | *
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef CS_CIPHER_H
|
---|
22 | #define CS_CIPHER_H
|
---|
23 |
|
---|
24 | #include<qstring.h>
|
---|
25 | #include<qcstring.h>
|
---|
26 |
|
---|
27 | namespace Cipher
|
---|
28 | {
|
---|
29 | enum Type { None, TripleDES, AES_128, AES_256 };
|
---|
30 |
|
---|
31 | class Key
|
---|
32 | {
|
---|
33 | public:
|
---|
34 | Key() { v_type = None; }
|
---|
35 |
|
---|
36 | bool isValid() const { return (v_type == None ? false: true); }
|
---|
37 | void setType(Type x) { v_type = x; }
|
---|
38 | Type type() const { return v_type; }
|
---|
39 | void setData(const QByteArray &d) { v_data = d; }
|
---|
40 | const QByteArray & data() const { return v_data; }
|
---|
41 |
|
---|
42 | private:
|
---|
43 | Type v_type;
|
---|
44 | QByteArray v_data;
|
---|
45 | };
|
---|
46 |
|
---|
47 | Key generateKey(Type);
|
---|
48 | QByteArray generateIV(Type);
|
---|
49 | int ivSize(Type);
|
---|
50 | QByteArray encrypt(const QByteArray &, const Key &, const QByteArray &iv, bool pad, bool *ok=0);
|
---|
51 | QByteArray decrypt(const QByteArray &, const Key &, const QByteArray &iv, bool pad, bool *ok=0);
|
---|
52 | }
|
---|
53 |
|
---|
54 | class RSAKey
|
---|
55 | {
|
---|
56 | public:
|
---|
57 | RSAKey();
|
---|
58 | RSAKey(const RSAKey &);
|
---|
59 | RSAKey & operator=(const RSAKey &);
|
---|
60 | ~RSAKey();
|
---|
61 |
|
---|
62 | bool isNull() const;
|
---|
63 | void *data() const;
|
---|
64 | void setData(void *);
|
---|
65 |
|
---|
66 | private:
|
---|
67 | class Private;
|
---|
68 | Private *d;
|
---|
69 |
|
---|
70 | void free();
|
---|
71 | };
|
---|
72 |
|
---|
73 | RSAKey generateRSAKey();
|
---|
74 | QByteArray encryptRSA(const QByteArray &buf, const RSAKey &key, bool *ok=0);
|
---|
75 | QByteArray decryptRSA(const QByteArray &buf, const RSAKey &key, bool *ok=0);
|
---|
76 | QByteArray encryptRSA2(const QByteArray &buf, const RSAKey &key, bool *ok=0);
|
---|
77 | QByteArray decryptRSA2(const QByteArray &buf, const RSAKey &key, bool *ok=0);
|
---|
78 |
|
---|
79 | #endif
|
---|