Skip to content
This repository was archived by the owner on Jun 12, 2018. It is now read-only.

Commit fcc87c5

Browse files
committed
fixed minor typo
1 parent e7e09ab commit fcc87c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crypto.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ namespace SimpleWeb {
8383
MD5_Final((unsigned char*)&hash[0], &context);
8484
}
8585
template<class type>
86-
type MD5(const type& text) {
86+
type MD5(const type& input) {
8787
type hash;
88-
MD5(text, hash);
88+
MD5(input, hash);
8989
return hash;
9090
}
9191

0 commit comments

Comments
 (0)