Move previous cryptopals work into an Erlang subfolder, start cryptopals in Python 3
[sandbox] / cryptopals-erlang / 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)).