def generateHash(tamanho=10): gerado = "" for i in range(tamanho): gerado += chr(rand(65,90)) return gerado