Developer Documentation
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 #pragma once
43 
44 #include <ui_keygen.h>
45 
46 class KeyGen
47 {
48  public:
49  QString name;
50  QString coreHash;
51  QString pluginHash;
52  QString cpuHash;
53  QString productHash;
54  QStringList macHashes;
55  QString requestSig;
56  public:
57  KeyGen(QString n, QString cHash, QString pHash, QString cpHash, QString prHash, QStringList mHashes, QString request);
58  //returns string containing the key
59  QString Generate(QString expiryDate) const;
60  //finds all occurrences of info in messy string
61  QString computeSignature(bool _utf8 = true) const;
62  enum ValidationResult
63  {
64  INVALID = 0,
65  UTF8 = 1,
66  LATIN1 = 2
67  };
68  // 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
69  ValidationResult isValid() const;
70 
71  void copyHardwareHashesFrom(const KeyGen &rhs) {
72  cpuHash = rhs.cpuHash;
73  macHashes = rhs.macHashes;
74  }
75 
76  QString generateRequest() {
77  return QString("%1\n%2\n%3\n%4\n%5\n%6\n%7\n\n")
78  .arg(name)
79  .arg(coreHash)
80  .arg(pluginHash)
81  .arg(cpuHash)
82  .arg(productHash)
83  .arg(macHashes.join("\n"))
84  .arg(computeSignature());
85  }
86 
87  static std::vector<KeyGen> CreateFromMessyString(QString info);
88 
89  static QString filterString(QString in);
90 };
91 
92 
93 class KeyGenWidget : public QMainWindow, public Ui::keyWindow
94 {
95  Q_OBJECT
96 
97 public:
98  explicit KeyGenWidget(QMainWindow *parent);
99  virtual ~KeyGenWidget();
100 
101 public slots:
102  void slotGenerateAllButton();
103  void slotGenerateButton();
104 
105  // slot taking license duration and convert to expiration date
106  void slotDate();
107 
108  // Analyzes the current request
109  void slotAnalyze();
110 
111  // Split Code based on ;; for broken windows requests
112  void slotSplit();
113 
114  void handleSelectionChanged(const QItemSelection& selection);
115 
116  void slotMangle();
117 
118 private:
119 
120  void toFile(const KeyGen* gen);
121  void setKeyGen(const KeyGen* gen);
122 
123  std::vector<KeyGen> keygens_;
124 
125 };
126 
127