~ubuntu-branches/ubuntu/saucy/ophcrack/saucy

« back to all changes in this revision

Viewing changes to src/probaTable/tableInfo.h

  • Committer: Package Import Robot
  • Author(s): Daniel Echeverry
  • Date: 2013-06-08 09:50:42 UTC
  • mfrom: (1.1.9) (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20130608095042-duhd3t9y4p3nlljm
Tags: 3.6.0-1
* New upstream release.
* debian/patches
  + Remove 00_validate_sysinfo.diff patch.
    + Merge with upstream.
  + Remove 01_fix_spelling_error.diff patch.
    + Merge with upstream.
* Update desktop file.
  + Remove extension from icon name.
  + Add keywords field.
* Extend debian copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *   
3
 
 *   Ophcrack is a Lanmanager/NTLM hash cracker based on the faster time-memory
4
 
 *   trade-off using rainbow tables. 
5
 
 *   
6
 
 *   Created with the help of: Maxime Mueller, Luca Wullschleger, Claude
7
 
 *   Hochreutiner, Andreas Huber and Etienne Dysli.
8
 
 *   
9
 
 *   Copyright (c) 2013 Philippe Oechslin, Cedric Tissieres, 
10
 
 *                      Bertrand Mesot, Pierre Lestringant
11
 
 *   
12
 
 *   Ophcrack is free software; you can redistribute it and/or modify
13
 
 *   it under the terms of the GNU General Public License as published by
14
 
 *   the Free Software Foundation; either version 2 of the License, or
15
 
 *   (at your option) any later version.
16
 
 *   
17
 
 *   Ophcrack is distributed in the hope that it will be useful,
18
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 
 *   GNU General Public License for more details.
21
 
 *   
22
 
 *   You should have received a copy of the GNU General Public License
23
 
 *   along with Ophcrack; if not, write to the Free Software
24
 
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
 
 *   
26
 
 *   This program is released under the GPL with the additional exemption 
27
 
 *   that compiling, linking, and/or using OpenSSL is allowed.
28
 
 *   
29
 
 *   
30
 
 *   $Rev: 167 $
31
 
 *   $Date: 2013-05-02 12:42:33 +0200 (Thu, 02 May 2013) $
32
 
 *   
33
 
 *   
34
 
*/
35
 
/* This file is a copy from implCPU/v6 */
36
 
 
37
 
#ifndef TABLEINFO_H
38
 
#define TABLEINFO_H
39
 
 
40
 
#include <stdint.h>
41
 
 
42
 
typedef struct tableInfo tableInfo;
43
 
struct tableInfo{
44
 
        unsigned int    nbColumn;
45
 
        uint64_t                nbChain0;
46
 
        uint64_t                nbChainGen;
47
 
        uint64_t                nbChain;
48
 
        unsigned int    power2;
49
 
};
50
 
 
51
 
#endif