Timesheets-Server
Timesheets server
Načítám...
Vyhledávám...
Nebylo nic nalezeno
hash.cpp
1#include "hash.h"
2
3using namespace Security;
4
5QString hash(const QString& x) {
6 int32_t h = 0;
7 for (int i=0; i<x.length(); i++) {
8 h = (h<<6) + (h<<16) - h + x[i].unicode();
9 }
10 long long int hx = h;
11 hx = hx + 4294967296LL;
12 return QString::number(hx,36).toUpper();
13}
14
15
Jmenný prostor pro správu oprávnění, role, klíče a náhodná volání
Definition guard.h:21