Move previous cryptopals work into an Erlang subfolder, start cryptopals in Python 3
[sandbox] / cryptopals / 01.01 / hex_to_base64.erl
diff --git a/cryptopals/01.01/hex_to_base64.erl b/cryptopals/01.01/hex_to_base64.erl
deleted file mode 100644 (file)
index 57b69af..0000000
+++ /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)).