Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
keygenWidget.hh
1 /*===========================================================================*\
2 * *
3 * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39 * *
40 \*===========================================================================*/
41 
42 /*===========================================================================*\
43 * *
44 * $Revision$ *
45 * $LastChangedBy$ *
46 * $Date$ *
47 * *
48 \*===========================================================================*/
49 
50 
51 #ifndef KEYGENWINDOW_HH
52 #define KEYGENWINDOW_HH
53 
54 #include <ui_keygen.hh>
55 
56 class KeyGen
57 {
58  public:
59  QString name;
60  QString coreHash;
61  QString pluginHash;
62  QString cpuHash;
63  QString productHash;
64  QStringList macHashes;
65  QString requestSig;
66  public:
67  KeyGen(QString n, QString cHash, QString pHash, QString cpHash, QString prHash, QStringList mHashes, QString request);
68  //returns string containing the key
69  QString Generate(QString expiryDate) const;
70  //finds all occurrences of info in messy string
71  QString computeSignature(bool _utf8 = true) const;
72  enum ValidationResult
73  {
74  INVALID = 0,
75  UTF8 = 1,
76  LATIN1 = 2
77  };
78  // returns if the result is valid. INVALID, if invalid, UTF8 if the signature is in new utf8 encoding, latin1 if the signature is in deprecated latin1 encoding
79  ValidationResult isValid() const;
80 
81  void copyHardwareHashesFrom(const KeyGen &rhs) {
82  cpuHash = rhs.cpuHash;
83  macHashes = rhs.macHashes;
84  }
85 
86  QString generateRequest() {
87  return QString("%1\n%2\n%3\n%4\n%5\n%6\n%7\n\n")
88  .arg(name)
89  .arg(coreHash)
90  .arg(pluginHash)
91  .arg(cpuHash)
92  .arg(productHash)
93  .arg(macHashes.join("\n"))
94  .arg(computeSignature());
95  }
96 
97  static std::vector<KeyGen> CreateFromMessyString(QString info);
98 
99  static QString filterString(QString in);
100 };
101 
102 
103 class KeyGenWidget : public QMainWindow, public Ui::keyWindow
104 {
105  Q_OBJECT
106 
107 public:
108  KeyGenWidget(QMainWindow *parent);
109  virtual ~KeyGenWidget();
110 
111 public slots:
112  void slotGenerateAllButton();
113  void slotGenerateButton();
114 
115  // slot taking license duration and convert to expiration date
116  void slotDate();
117 
118  // Analyzes the current request
119  void slotAnalyze();
120 
121  // Split Code based on ;; for broken windows requests
122  void slotSplit();
123 
124  void handleSelectionChanged(const QItemSelection& selection);
125 
126  void slotMangle();
127 
128 private:
129 
130  void toFile(const KeyGen* gen);
131  void setKeyGen(const KeyGen* gen);
132 
133  std::vector<KeyGen> keygens_;
134 
135 };
136 
137  #endif // KEYGENWINDOW_HH