31577e8d351d28aaa0acf6fb6ec5c888bc43cc0115f45d78d271b9abe54b483b3e5714cdb6a9a065e00e40b8b35163503abe42b7ade1f095d8225d832a1346 440 B

123456789101112131415161718
  1. ;(function (root, factory, undef) {
  2. if (typeof exports === "object") {
  3. // CommonJS
  4. module.exports = exports = factory(require("./core"), require("./ripemd160"), require("./hmac"));
  5. }
  6. else if (typeof define === "function" && define.amd) {
  7. // AMD
  8. define(["./core", "./ripemd160", "./hmac"], factory);
  9. }
  10. else {
  11. // Global (browser)
  12. factory(root.CryptoJS);
  13. }
  14. }(this, function (CryptoJS) {
  15. return CryptoJS.HmacRIPEMD160;
  16. }));