Skip to content
Snippets Groups Projects
Select Git revision
  • 77d0ef05e2360bba2e1201eaff3c899e349c2a25
  • master default protected
2 results

hmac-sha1.js

Blame
  • Forked from Développement Web Avancé / 2019_TP2
    Source project has a limited visibility.
    hmac-sha1.js 425 B
    ;(function (root, factory, undef) {
    	if (typeof exports === "object") {
    		// CommonJS
    		module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac"));
    	}
    	else if (typeof define === "function" && define.amd) {
    		// AMD
    		define(["./core", "./sha1", "./hmac"], factory);
    	}
    	else {
    		// Global (browser)
    		factory(root.CryptoJS);
    	}
    }(this, function (CryptoJS) {
    
    	return CryptoJS.HmacSHA1;
    
    }));