A simple Recaptcha2 Vue component using TypeScript.
Just drop it in your source and it loads everything needed.
You'll need to create a grecaptcha site key:
A simple Recaptcha2 Vue component using TypeScript.
Just drop it in your source and it loads everything needed.
You'll need to create a grecaptcha site key:
A "numeronym" is a "number-based word" (https://en.wikipedia.org/wiki/Numeronym).
The short python script generates these in the same style as "i18n", i.e. taking the first and last letter and showing the length (minus 2) in-between.
Use it either with arguments, like this:
#!/usr/bin/env python | |
"""Extract the public key from the private key and write to a file. | |
""" | |
from Crypto.Hash import SHA256 | |
from Crypto.Signature import PKCS1_v1_5 | |
from Crypto.PublicKey import RSA | |
with open("private_key.pem", "r") as src: | |
private_key = RSA.importKey(src.read()) |