aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework 2/Homework2/Base64Converter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST 126/Homework 2/Homework2/Base64Converter.hpp')
-rw-r--r--CST 126/Homework 2/Homework2/Base64Converter.hpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/CST 126/Homework 2/Homework2/Base64Converter.hpp b/CST 126/Homework 2/Homework2/Base64Converter.hpp
deleted file mode 100644
index 36e55e4..0000000
--- a/CST 126/Homework 2/Homework2/Base64Converter.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef BASE64_CONVERTER_HPP
-#define BASE64_CONVERTER_HPP
-
-char characterMap[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
-'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
-'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
-'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
-'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '/', '+'};
-
-
-
-inline char* Base64Encode(char* buffer, size_t& size)
-{
-
-
-
-
-
-
-
-
-
-}
-
-#endif \ No newline at end of file