X-Git-Url: https://code.kerkeslager.com/?p=sandbox;a=blobdiff_plain;f=cryptopals%2F01.01%2Fhex_to_base64.erl;fp=cryptopals%2F01.01%2Fhex_to_base64.erl;h=0000000000000000000000000000000000000000;hp=57b69af00490195cd720b5f8d3c4028ec5af97f8;hb=b37c633b0ba51e497920762fa2eb4d732ebca291;hpb=545381e1397107d4ab00d2e54d85d3e11d98e4f1 diff --git a/cryptopals/01.01/hex_to_base64.erl b/cryptopals/01.01/hex_to_base64.erl deleted file mode 100644 index 57b69af..0000000 --- a/cryptopals/01.01/hex_to_base64.erl +++ /dev/null @@ -1,4 +0,0 @@ --module(hex_to_base64). --export([hex_to_base64/1]). - -hex_to_base64(Hex) -> base64:encode_to_string(hex:decode(Hex)).