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.5.0
pts/john-the-ripper-1.5.0
- 10 January 2014 -
Update against upstream John The Ripper 1.8.0.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v5.0.0m0 (Plavsk)--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://www.openwall.com/john/j/john-1.8.0.tar.gz, http://download.openwall.net/pub/projects/john/1.8.0/john-1.8.0.tar.gz, http://distro.ibiblio.org/openwall/projects/john/1.8.0/john-1.8.0.tar.gz</URL> <MD5>f73cb34f35f300535f9f77213f4199a9</MD5> <SHA256>1222738c7829ce3014177ca9bd26c41573426f883c6b22527ee9bde363d84bda</SHA256> <FileSize>5450412</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -zxvf john-1.8.0.tar.gz cd john-1.8.0/src/ case $OS_TYPE in "MacOSX") make OMPFLAGS=-fopenmp macosx-x86-64 ;; "Solaris") if [ $OS_ARCH = "x86_64" ] then make OMPFLAGS=-fopenmp solaris-x86-64-gcc else make OMPFLAGS=-fopenmp solaris-x86-sse2-gcc fi ;; "BSD") if [ $OS_ARCH = "x86_64" ] then make OMPFLAGS=-fopenmp freebsd-x86-64 else make OMPFLAGS=-fopenmp freebsd-x86-sse2 fi ;; *) if [ $OS_ARCH = "x86_64" ] then make OMPFLAGS=-fopenmp linux-x86-64 else make OMPFLAGS=-fopenmp linux-x86-sse2 fi ;; esac cd ~/ echo "#!/bin/sh cd john-1.8.0/run/ ./john --test > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status" > john-the-ripper chmod +x john-the-ripper
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v5.0.0m0 (Plavsk)--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Benchmarking: descrypt, traditional crypt(3) [DES 128/128 SSE2-16]... DONE Many salts: #_RESULT_# c/s real, 1260K c/s virtual Only one salt: 9227K c/s real, 1172K c/s virtual</OutputTemplate> <MatchToTestArguments>TRADITIONAL_DES_MANY_SALTS</MatchToTestArguments> <LineBeforeHint>traditional crypt</LineBeforeHint> <StripResultPostfix>K</StripResultPostfix> <MultiplyResultBy>1000</MultiplyResultBy> </ResultsParser> <ResultsParser> <OutputTemplate>Benchmarking: md5crypt [MD5 32/64 X2]... DONE Raw: #_RESULT_# c/s real, 10323 c/s virtual</OutputTemplate> <MatchToTestArguments>MD5</MatchToTestArguments> <LineBeforeHint>md5crypt</LineBeforeHint> </ResultsParser> <ResultsParser> <OutputTemplate>Benchmarking: bcrypt ("$2a$05", 32 iterations) [Blowfish 32/64 X2]... DONE Raw: #_RESULT_# c/s real, 768 c/s virtual </OutputTemplate> <MatchToTestArguments>BLOWFISH</MatchToTestArguments> <LineBeforeHint>Blowfish</LineBeforeHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v5.0.0m0 (Plavsk)--> <PhoronixTestSuite> <TestInformation> <Title>John The Ripper</Title> <AppVersion>1.8.0</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.5.0</Version> <SupportedPlatforms>Linux, Solaris, BSD, MacOSX</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>Processor</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, openssl-development</ExternalDependencies> <EnvironmentSize>5</EnvironmentSize> <ProjectURL>http://www.openwall.com/john/</ProjectURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>run-test</Identifier> <Menu> <Entry> <Name>Traditional DES</Name> <Value>TRADITIONAL_DES_MANY_SALTS</Value> </Entry> <Entry> <Name>MD5</Name> <Value>MD5</Value> </Entry> <Entry> <Name>Blowfish</Name> <Value>BLOWFISH</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>