This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Blob size 64 bytes, DB size 12291072 bytes, performance boost 0.981000x | |
| Blob size 128 bytes, DB size 11110400 bytes, performance boost 0.973000x | |
| Blob size 256 bytes, DB size 12290048 bytes, performance boost 0.961000x | |
| Blob size 512 bytes, DB size 19343360 bytes, performance boost 0.964000x | |
| Blob size 1024 bytes, DB size 9975808 bytes, performance boost 1.941000x | |
| Blob size 2048 bytes, DB size 9315328 bytes, performance boost 2.816000x | |
| Blob size 4096 bytes, DB size 8983552 bytes, performance boost 4.490000x | |
| Blob size 8192 bytes, DB size 8817664 bytes, performance boost 9.133000x | |
| Blob size 16384 bytes, DB size 8731648 bytes, performance boost 16.921000x | |
| Blob size 32768 bytes, DB size 8705024 bytes, performance boost 31.446000x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.3 | |
| import QtQuick.Controls 1.2 | |
| Column { | |
| width: 640 | |
| height: 480 | |
| SpinBox { | |
| id: spin | |
| value: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Start [...]/qmlscene... | |
| qml: SpinBox1: max=4 | |
| qml: SpinBox1: min=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./configure.py --with-build-dir=../build-botan --link-method=copy --cc=clang | |
| make -f ../build-botan/Makefile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| macx { | |
| QMAKE_MAC_SDK = macosx10.9 | |
| QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| win32 { | |
| message(win32) | |
| } | |
| win64 { | |
| message(win64) | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "bar.h" | |
| namespace Foo { | |
| Bar::Bar(QObject *parent) : QObject(parent) | |
| { | |
| } | |
| Bar *Bar::run() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| createDownload($_REQUEST['csr']); | |
| function createDownload($csr_content) | |
| { | |
| # Write CSR content into csr.pem | |
| file_put_contents("csr.pem", $csr_content) | |
| or die("PEM file could not be written. Write permissions set?\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Process: botan-test [99217] | |
| Path: /Users/USER/*/botan-test | |
| Identifier: botan-test | |
| Version: 0 | |
| Code Type: X86-64 (Native) | |
| Parent Process: bash [98726] | |
| Responsible: Terminal [98708] | |
| User ID: 501 | |
| Date/Time: 2015-03-12 11:22:49.528 +0100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| suites=(block modes aead ocb stream hash mac pbkdf kdf keywrap transform rngs passhash9 bcrypt cryptobox tss rfc6979 bigint rsa rw dsa nr dh dlies elgamal ecc_pointmul ecdsa gost_3410 curve25519 mceliece ecc_unit ecdsa_unit ecdh_unit pk_keygen cvc x509 nist_x509 tls) | |
| for suite in "${suites[@]}"; do | |
| echo "Run test '$suite' ..." | |
| ./botan-test "$suite" | |
| retval=$? | |
| if [[ $retval != 0 ]]; then | |
| echo "Error in last test! Return value: $retval" |