?? bench.h
字號:
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-98 by Solar Designer *//* * Cracking algorithm benchmark. */#ifndef _JOHN_BENCH_H#define _JOHN_BENCH_H#include <time.h>#include "arch.h"#include "formats.h"/* * Structure used to return benchmark results. */struct bench_results {/* Elapsed real and processor time */ clock_t real, virtual;/* Number of passwords tried */ unsigned ARCH_WORD count;};/* * Benchmarks the supplied cracking algorithm. Returns zero on success, a * positive value if the self test fails or there's no self test for this * algorithm, or a negative value if aborted. */extern int benchmark_format(struct fmt_main *format, int salts, struct bench_results *results);/* * Converts benchmarked c/s into an ASCII string. */extern void benchmark_cps(unsigned ARCH_WORD count, clock_t time, char *buffer);/* * Benchmarks all the registered cracking algorithms and prints the results * to stdout. */extern void benchmark_all();#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -