Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
John The Ripper 1.7.0
pts/john-the-ripper-1.7.0
- 21 June 2019 -
Update against upstream JtR 1.9.0-jumbo-1.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.8.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://www.openwall.com/john/k/john-1.9.0-jumbo-1.tar.gz, http://distro.ibiblio.org/openwall/projects/john/1.9.0/john-1.9.0-jumbo-1.tar.gz, https://download.openwall.net/pub/projects/john/1.9.0/john-1.9.0-jumbo-1.tar.gz</URL> <MD5>cbcfaa36234c43657ef1a9ea4a91b0fa</MD5> <SHA256>8b40499a20fdd66d5f651b439bf9846367182bb93e8bff3fd39ba267576dd317</SHA256> <FileName>john-1.9.0-jumbo-1.tar.gz</FileName> <FileSize>44303366</FileSize> <PlatformSpecific>Linux, Solaris, BSD, MacOSX</PlatformSpecific> </Package> <Package> <URL>https://www.openwall.com/john/k/john-1.9.0-jumbo-1-win64.zip, https://download.openwall.net/pub/projects/john/1.9.0/john-1.9.0-jumbo-1-win64.zip</URL> <MD5>7ca6572ac79ea2ffb127f26f0f12f363</MD5> <SHA256>7d59ea68d39a30a4988c9eb751a57d37d3fd90150ceeb6ee9afc2a76d13daa16</SHA256> <FileName>john-1.9.0-jumbo-1-win64.zip</FileName> <FileSize>65376163</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -zxvf john-1.9.0-jumbo-1.tar.gz cd john-1.9.0-jumbo-1/src/ CFLAGS="-O3 -march=native $CFLAGS -std=gnu89" ./configure --disable-native-tests --disable-opencl CFLAGS="-O3 -march=native $CFLAGS -std=gnu89" make -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~/ echo "#!/bin/sh cd john-1.9.0-jumbo-1/run/ ./john \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > john-the-ripper chmod +x john-the-ripper
install_bsd.sh
#!/bin/sh tar -zxvf john-1.9.0-jumbo-1.tar.gz cd john-1.9.0-jumbo-1/src/ CFLAGS="-O3 -march=native $CFLAGS -std=gnu89" ./configure --disable-native-tests --disable-opencl CFLAGS="-O3 -march=native $CFLAGS -std=gnu89" gmake -j $NUM_CPU_CORES echo $? > ~/install-exit-status cd ~/ echo "#!/bin/sh cd john-1.9.0-jumbo-1/run/ ./john \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > john-the-ripper chmod +x john-the-ripper
install_windows.sh
#!/bin/sh unzip -o john-1.9.0-jumbo-1-win64.zip echo "#!/bin/sh cd john-1.9.0-jumbo-1-win64/run/ ./john.exe \$@ > \$LOG_FILE 2>&1" > john-the-ripper chmod +x john-the-ripper
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.8.1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Raw: #_RESULT_# c/s real, 768 c/s virtual</OutputTemplate> <LineHint>Raw:</LineHint> </ResultsParser> <ResultsParser> <OutputTemplate>Many salts: #_RESULT_# c/s real, 6660K c/s virtual</OutputTemplate> <LineHint>Many salts:</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v8.8.1--> <PhoronixTestSuite> <TestInformation> <Title>John The Ripper</Title> <AppVersion>1.9.0-jumbo-1</AppVersion> <Description>This is a benchmark of John The Ripper, which is a password cracker.</Description> <ResultScale>Real C/S</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.7.0</Version> <SupportedPlatforms>Linux, Solaris, BSD, MacOSX, Windows</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, openssl-development</ExternalDependencies> <EnvironmentSize>102</EnvironmentSize> <ProjectURL>http://www.openwall.com/john/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <Arguments>--test=30 </Arguments> </Default> <Option> <DisplayName>Test</DisplayName> <Identifier>run-test</Identifier> <Menu> <Entry> <Name>MD5</Name> <Value>--format=md5crypt</Value> </Entry> <Entry> <Name>Blowfish</Name> <Value>--format=bcrypt</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>