you can download it, but you can't use it. so restrictive :(
rain_worl
joined 5 months ago
once it discovers that you aren't in the sudoers list, it prints the message, and then quits. any omniscient god will know.
downvotes with no explanation?
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;
}
yeah!
with javascript
brainfuck is really simple, just hard to program in and read
"
🙂
"
.
r
e
v
e
r
s
e
(
)
=
"
🙃
"
view more: next ›
unlike the courier transform, the fourier transform is reversible