He knows when you’re sleeping, he knows when you’re awake, he’s copied on mail/var/spool/mail/root, so be good for godness sake.
You must log in or register to comment.
on RedStarOS, sudo reports to Kim Jong Un
on temple os, it reports directly to God
best distro ever
Put crypto on it and watch it disappear
type in some code for rsa, scroll down, scroll up, it’s gone
RSA_encrypt(val, key) { return val; } RSA_decrypt(val, key) { return val; }
ohoho, this is pernicious (following the wikipedia article on rsa, to the letter >:), mostly c):
struct KeyPair generate_RSA_keypair() { struct KeyPair keypair; bigint p = generate_prime(); bigint q = generate_prime(); bigint n = p*q; bigint totient = (p-1) * (q-1); bigint e = 1; while (gcd(e, totient) != 1) { e++; } bigint d = modular_inverse(e, totient); keypair.n = n; keypair.e = e; keypair.d = d; return keypair; }