One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# coding: utf-8 | |
# | |
# fuckda.py - Uso de certificados de la FNMT con Python | |
# | |
# Autor: Juan Luis Cano Rodríguez <[email protected]> | |
# | |
# Instrucciones: | |
# | |
# 1. Exportar certificado (CERTIFICADO.p12) | |
# https://www.sede.fnmt.gob.es/preguntas-frecuentes/exp-imp-y-elim-de-certificados |
import random | |
import time | |
import numpy | |
from exceptions import ValueError | |
class PushID(object): | |
# Modeled after base64 web-safe chars, but ordered by ASCII. | |
PUSH_CHARS = ('-0123456789' | |
'ABCDEFGHIJKLMNOPQRSTUVWXYZ' |