Skip to content

Instantly share code, notes, and snippets.

OpenSSL 1.1.1d 10 Sep 2019
built on: Mon Apr 27 09:55:40 2020 UTC
options:bn(64,32) rc4(char) des(long) aes(partial) blowfish(ptr)
compiler: gcc -fPIC -pthread -Wa,--noexecstack -Wall -D__ARM_MAX_ARCH__=7 -Wa,--noexecstack -g -O2 -fdebug-prefix-map=/home/pi/work/new=. -fstack-protector-strong -Wformat -Werror=format-security -DOPENSSL_USE_NODELETE -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM -DAES_ASM -DBSAES_ASM -DGHASH_ASM -DECP_NISTZ256_ASM -DPOLY1305_ASM -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2
The 'numbers' are in 1000s of bytes per second processed.
type 16 bytes 64 bytes 256 bytes 1024 bytes 8192 bytes 16384 bytes
md2 0.00 0.00 0.00 0.00 0.00 0.00
mdc2 0.00 0.00 0.00 0.00 0.00 0.00
md4 20179.93k 70953.15k 199092.65k 373597.32k 493240.32k 507251.93k
md5
### Keybase proof
I hereby claim:
* I am filleokus on github.
* I am filleokus (https://keybase.io/filleokus) on keybase.
* I have a public key whose fingerprint is BD91 7D9E 0203 2321 31CC 8DC2 97A5 8CE0 4287 4958
To claim this, I am signing this object:
def get_all():
doc_index = search.Index(API_ITEMS_INDEX_NAME)
firstBatch = doc_index.get_range(start_id=None, limit=1000).results
results = firstBatch
while True:
batch = doc_index.get_range(results[-1].doc_id,1000)
if len(batch.results) == 1:
break
else:
results = results + batch.results