mirror of
https://github.com/ansible/awx.git
synced 2026-04-05 01:59:25 -02:30
Add link to original gist and rename file.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
export default
|
export default
|
||||||
function md5Setup() {
|
function hashSetup() {
|
||||||
return function(params) {
|
return function(params) {
|
||||||
var scope = params.scope,
|
var scope = params.scope,
|
||||||
master = params.master,
|
master = params.master,
|
||||||
@@ -9,11 +9,12 @@ export default
|
|||||||
scope[check_field] = default_val;
|
scope[check_field] = default_val;
|
||||||
master[check_field] = default_val;
|
master[check_field] = default_val;
|
||||||
|
|
||||||
scope.genMD5 = function (fld) {
|
// Original gist here: https://gist.github.com/jed/982883
|
||||||
|
scope.genHash = function (fld) {
|
||||||
scope[fld] = ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, c =>
|
scope[fld] = ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, c =>
|
||||||
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
|
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
|
||||||
);
|
);
|
||||||
scope.$emit('NewMD5Generated');
|
scope.$emit('NewHashGenerated');
|
||||||
};
|
};
|
||||||
|
|
||||||
scope.toggleCallback = function (fld) {
|
scope.toggleCallback = function (fld) {
|
||||||
Reference in New Issue
Block a user