diff --git a/public/js/bootstrap.js b/public/js/bootstrap.js
index f012f80..cfb973a 100644
--- a/public/js/bootstrap.js
+++ b/public/js/bootstrap.js
@@ -18,6 +18,11 @@ fandango.defaults({
 			exports: function () { // String (the global variable name) or a function; returning the desired variable.
 				return CryptoJS.AES;
 			}
+		},
+		md5: {
+			exports: function () {
+				return CryptoJS.MD5;
+			}
 		}
 	}
 });
@@ -31,4 +36,4 @@ require(['cryptalk'], function () {}, function (e) {
 	}
 	
 	throw e;
-});
\ No newline at end of file
+});