]> git.sesse.net Git - freerainbowtables/blobdiff - Client Applications/converti2/Public.cpp
Merge branch 'master' of git@gitorious.org:freerainbowtables-applications/freerainbow...
[freerainbowtables] / Client Applications / converti2 / Public.cpp
diff --git a/Client Applications/converti2/Public.cpp b/Client Applications/converti2/Public.cpp
deleted file mode 100644 (file)
index e279c56..0000000
+++ /dev/null
@@ -1,222 +0,0 @@
-/*
-   RainbowCrack - a general propose implementation of Philippe Oechslin's faster time-memory trade-off technique.
-
-   Copyright (C) Zhu Shuanglei <shuanglei@hotmail.com>
-*/
-
-#ifdef _WIN32
-       #pragma warning(disable : 4786)
-#endif
-
-#ifdef _WIN32
-
-#else
-#include <cstdio>
-#include <cctype>
-#include <ctime>
-#include <cstring>
-#include <cstdlib>
-#include <csignal>
-#include <unistd.h>
-
-#endif
-
-#include "Public.h"
-
-#ifdef _WIN32
-       #include <windows.h>
-#else
-       #include <sys/sysinfo.h>
-#endif
-
-//////////////////////////////////////////////////////////////////////
-
-unsigned int GetFileLen(FILE* file)
-{
-       unsigned int pos = ftell(file);
-       fseek(file, 0, SEEK_END);
-       unsigned int len = ftell(file);
-       fseek(file, pos, SEEK_SET);
-
-       return len;
-}
-
-string TrimString(string s)
-{
-       while (s.size() > 0)
-       {
-               if (s[0] == ' ' || s[0] == '\t')
-                       s = s.substr(1);
-               else
-                       break;
-       }
-
-       while (s.size() > 0)
-       {
-               if (s[s.size() - 1] == ' ' || s[s.size() - 1] == '\t')
-                       s = s.substr(0, s.size() - 1);
-               else
-                       break;
-       }
-
-       return s;
-}
-bool GetHybridCharsets(string sCharset, vector<tCharset>& vCharset)
-{
-       // Example: hybrid(mixalpha-numeric-all-space#1-6,numeric#1-4)
-       if(sCharset.substr(0, 6) != "hybrid") // Not hybrid charset
-               return false;
-       size_t nEnd = sCharset.rfind(')');
-       size_t nStart = sCharset.rfind('(');
-       string sChar = sCharset.substr(nStart + 1, nEnd - nStart - 1);
-       vector<string> vParts;
-       SeperateString(sChar, ",", vParts);
-       for(int i = 0; i < vParts.size(); i++)
-       {
-               tCharset stCharset;
-               vector<string> vParts2;
-               SeperateString(vParts[i], "#", vParts2);
-               stCharset.sName = vParts2[0];
-               vector<string> vParts3;
-               SeperateString(vParts2[1], "-", vParts3);
-               stCharset.nPlainLenMin = atoi(vParts3[0].c_str());
-               stCharset.nPlainLenMax = atoi(vParts3[1].c_str());
-               vCharset.push_back(stCharset);
-       }
-       return true;
-}
-bool ReadLinesFromFile(string sPathName, vector<string>& vLine)
-{
-       vLine.clear();
-    FILE *file = fopen(sPathName.c_str(), "rb");
-       if (file != NULL)
-       {
-               unsigned int len = GetFileLen(file);
-               char* data = new char[len + 1];
-               fread(data, 1, len, file);
-               data[len] = '\0';
-               string content = data;
-               content += "\n";
-               delete data;
-
-               unsigned int i;
-               for (i = 0; i < content.size(); i++)
-               {
-                       if (content[i] == '\r')
-                               content[i] = '\n';
-               }
-
-               int n;
-               while ((n = content.find("\n", 0)) != -1)
-               {
-                       string line = content.substr(0, n);
-                       line = TrimString(line);
-                       if (line != "")
-                               vLine.push_back(line);
-                       content = content.substr(n + 1);
-               }
-
-               fclose(file);
-       }
-       else
-               return false;
-
-       return true;
-}
-
-bool SeperateString(string s, string sSeperator, vector<string>& vPart)
-{
-       vPart.clear();
-
-       unsigned int i;
-       for (i = 0; i < sSeperator.size(); i++)
-       {
-               int n = s.find(sSeperator[i]);
-               if (n != -1)
-               {
-                       vPart.push_back(s.substr(0, n));
-                       s = s.substr(n + 1);
-               }
-               else
-                       return false;
-       }
-       vPart.push_back(s);
-
-       return true;
-}
-
-string uint64tostr(uint64 n)
-{
-       char str[32];
-
-#ifdef _WIN32
-       sprintf(str, "%I64u", n);
-#else
-       sprintf(str, "%llu", n);
-#endif
-
-       return str;
-}
-
-string uint64tohexstr(uint64 n)
-{
-       char str[32];
-
-#ifdef _WIN32
-       sprintf(str, "%016I64x", n);
-#else
-       sprintf(str, "%016llx", n);
-#endif
-
-       return str;
-}
-
-string HexToStr(const unsigned char* pData, int nLen)
-{
-       string sRet;
-       int i;
-       for (i = 0; i < nLen; i++)
-       {
-               char szByte[3];
-               sprintf(szByte, "%02x", pData[i]);
-               sRet += szByte;
-       }
-
-       return sRet;
-}
-
-unsigned int GetAvailPhysMemorySize()
-{
-#ifdef _WIN32
-               MEMORYSTATUS ms;
-               GlobalMemoryStatus(&ms);
-               return ms.dwAvailPhys;
-#else
-       struct sysinfo info;
-       sysinfo(&info);                 // This function is Linux-specific
-       return info.freeram;
-#endif
-}
-
-void ParseHash(string sHash, unsigned char* pHash, int& nHashLen)
-{
-       int i;
-       for (i = 0; i < sHash.size() / 2; i++)
-       {
-               string sSub = sHash.substr(i * 2, 2);
-               int nValue;
-               sscanf(sSub.c_str(), "%02x", &nValue);
-               pHash[i] = (unsigned char)nValue;
-       }
-
-       nHashLen = sHash.size() / 2;
-}
-
-void Logo()
-{
-       printf("RainbowCrack (improved) 2.0 - Making a Faster Cryptanalytic Time-Memory Trade-Off\n");
-       printf("by Martin Westergaard <martinwj2005@gmail.com>\n");
-       printf("http://www.freerainbowtables.com/\n");
-       printf("original code by Zhu Shuanglei <shuanglei@hotmail.com>\n");
-       printf("http://www.antsight.com/zsl/rainbowcrack/\n\n");
-}