-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
47 lines (43 loc) · 1.51 KB
/
main.cpp
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <iostream>
#include <math.h>
#include <cmath>
#include <stdlib.h>
#include <cstdlib>
#include <sstream>
using namespace std;
int main()
{
string input;
long double dhash;
string shash = "";
int hashLaenge = 16;
while(true)
{
dhash = 0;
cout << "Hello world!" << endl;
cout << "Input: ";
cin >> input;
for(int j=0; j<hashLaenge;j++)
{
for(unsigned int i=0; i<input.size();i++)
{
dhash += sqrt(abs((int)input[i]/(int)input[i]-(int)input[i+1]*(int)input[i+1]+(int)input[i-1]*(int)input[i-1])); //Irgendeine Zahl berechnen, die sehr chaotisch auf Änderungen reagiert!
}
dhash = sin(dhash); //Davon Sinus, damit man später die länge selber bestimmen kann
ostringstream test;
test << std::dec << abs((int)(dhash*1000000000)); //Habe ich im Internet gefunden -> int to string
input = test.str(); //Damit haben wir ein neues Input und somit ein neues nächstes Hash-Zeichen
dhash = abs((int)(dhash*100));
if(dhash>=33) //33 ist der erste Ascii Wert, der ein sinnvolles Zeichen ergibt
{
shash += (char)dhash;
}
else
{
j--; //Wenn nicht, dann mit dem neuen Input eine neue Zahl berechnen und j--, damit die 16 Zeichen bleiben
}
}
cout << shash << endl << endl;
shash = "";
}
}