angular-md5
angular-md5 copied to clipboard
md5 for Angular.js and Gravatar filter
GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1
Would seem to be a cut'n'paste error from the gravatar filter, that does require the text to be strTolower before being hashed. Fixes #13
hi,i use the lib to encrypt my request param to server ,but when it come to chinese ,the result is not the same with the backend use java md5
The embedded version number in the released js files is incorrect for the branch. So, I'm looking at https://github.com/gdi2290/angular-md5/blob/v0.1.10/angular-md5.js#L2 and seeing v0.1.8. Which is a little bit of a pain.
how to integrate angular-md5 in angular 2 typscript plz i need so much
But npm & bower install git@... all files downloaded I am using Linux Mint 17.1
The md5.createHash function generates wrong hashes for special charaters like üäöÜÄÖ.
This code will throw some js errors: ``` var currentId = 1; FormIDProvider.getCurrentId = function (raw) { if (raw) { return currentId; } return 'form-field-' + md5.createHash(currentId); }; ``` The...