Add a password generator
[sandbox] / cryptopals / 01.01 / hex_to_base64.erl
1 -module(hex_to_base64).
2 -export([hex_to_base64/1]).
3
4 hex_to_base64(Hex) -> base64:encode_to_string(hex:decode(Hex)).