-1
I wonder if there is any encryption algorithm where it is possible to choose which key or part of it will be used to encrypt/decrypt the message
An example:
mensagem = 'string qualquer'
chave = 'chave escolhida'
mensagem_encriptada = encrypt(mensagem, key = chave)
print(mensagem_encriptada)
mensagem_recuperada = decrypt(mensagem_encriptada, key = chave)
print(mensagem_recuperada)
Expected exit would be this:
(any string like dfg1tre*vf2d3jnh&& /vfdfhgf34@@cfr%ws76z!)
any string
See if this lib help you
– Paulo Marques