I hereby claim:
- I am stribika on github.
- I am stribika (https://keybase.io/stribika) on keybase.
- I have a public key whose fingerprint is 3E97 B86C F08C BA60 38D5 4FD8 6700 09C5 8D4D 6CAF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python3 -O | |
from math import floor, log | |
def montgomery_ladder(x, n, op, select): | |
k = floor(log(n, 2)) + 1 | |
x1 = x | |
x2 = op(x, x) | |
for i in range(k - 2, -1, -1): | |
bit = 1 if n & (1 << i) else 0 |
#!/usr/bin/python3 -O | |
from Crypto.Random import get_random_bytes | |
from math import ceil, log2 | |
from struct import unpack | |
from sys import argv, exit | |
if __name__ == "__main__": | |
with open("/usr/share/dict/cracklib-small") as wordlist: | |
words = wordlist.readlines() |
#include <cstdio> | |
#include <cstdlib> | |
#include <cstring> | |
#include <fcntl.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#include <unistd.h> |
I hereby claim:
To claim this, I am signing this object: