Archivo de la categoría: cryptography

What I’m reading?

1 comentario

Archivado bajo criptografia, criptonomicon, cryptography, hackers, hackers and painters, Paul Graham

Criptonomicon II

I finished the first part of Criptonomicon in the Spanshi Edition. It’s one of the best novel I read ! I started to read the second part “Criptonomicon – El codigo Pontifex”.

Dejar un comentario

Archivado bajo criptonomicon, cryptography, turing

Random MD5 hash in python

I’ve been working generating MD5 hashes. I wrote a python module called RandomMD5: import hashlib import random def new(): m = hashlib.md5() m.update(str(random.random())) return m.hexdigest() This module generate a new md5 hash randomically, it’s to useful for any kind of … Sigue leyendo

3 comentarios

Archivado bajo cryptography, hash, md5, python