Difference between revisions of "Encryption"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
<div class='qu'> | <div class='qu'> | ||
<pre class='usr'> | <pre class='usr'> | ||
document.body.append( | |||
addInput('p','101'), | |||
addInput('m','3'), | |||
$m('button',{onclick:function(){ | |||
document.getElementById('result').value = | |||
pow(getbig('m'),getbig('p'),getbig('p')); | |||
}},`m<sup>p</sup> mod p`), | |||
$m('input',{id:'result'}) | |||
); | |||
//Utility functions | |||
function pow(n,e,m){ | |||
if (e<=0) return 1n; | |||
let h = e/2n; | |||
let r = pow(n,h,m); | |||
r = (r*r) % m; | |||
if (e % 2n === 1n){ | |||
return (n * r) % m; | |||
} | |||
return r; | |||
} | |||
function $m(tag,prop,children){ | |||
let ret = document.createElement(tag); | |||
for(let k in prop) | |||
ret[k] = prop[k]; | |||
if (typeof(children)==='string') | |||
ret.innerHTML = children; | |||
if (Array.isArray(children)) | |||
for(let c of children) | |||
ret.append(c); | |||
return ret; | |||
} | |||
function getbig(id){return BigInt(document.getElementById(id).value)} | |||
function addInput(id,value){ | |||
return $m('div',{},[$m('label',{},id),$m('input',{id,value})]); | |||
} | |||
</pre> | |||
</div> | |||
<div class=qu> | |||
<pre class=usr> | |||
function pow(n,e,m){ | function pow(n,e,m){ | ||
if (e<=0) return 1n; | if (e<=0) return 1n; | ||
Line 42: | Line 84: | ||
} | } | ||
document.body.append(addInput('p','101'),addInput('q','103')); | document.body.append(addInput('p','101'),addInput('q','103')); | ||
</pre> | |||
</div> | </div> |
Revision as of 10:04, 19 September 2021
Fermat's Little Theorem
document.body.append( addInput('p','101'), addInput('m','3'), $m('button',{onclick:function(){ document.getElementById('result').value = pow(getbig('m'),getbig('p'),getbig('p')); }},`m<sup>p</sup> mod p`), $m('input',{id:'result'}) ); //Utility functions function pow(n,e,m){ if (e<=0) return 1n; let h = e/2n; let r = pow(n,h,m); r = (r*r) % m; if (e % 2n === 1n){ return (n * r) % m; } return r; } function $m(tag,prop,children){ let ret = document.createElement(tag); for(let k in prop) ret[k] = prop[k]; if (typeof(children)==='string') ret.innerHTML = children; if (Array.isArray(children)) for(let c of children) ret.append(c); return ret; } function getbig(id){return BigInt(document.getElementById(id).value)} function addInput(id,value){ return $m('div',{},[$m('label',{},id),$m('input',{id,value})]); }
function pow(n,e,m){ if (e<=0) return 1n; let h = e/2n; let r = pow(n,h,m); r = (r*r) % m; if (e % 2n === 1n){ return (n * r) % m; } return r; } function modInverse(a, m){ a = (a % m + m) % m if (!a || m < 2n) { return NaN // invalid input } // find the gcd const s = [] let b = m while(b) { [a, b] = [b, a % b] s.push({a, b}) } if (a !== 1n) { return NaN // inverse does not exists } // find the inverse let x = 1n let y = 0n for(let i = s.length - 2; i >= 0; --i) { [x, y] = [y, x - y * (s[i].a / s[i].b)] } return (y % m + m) % m } let getbig = id => BigInt(document.getElementById(id).value); let addInput = (id,value) => { return $m('div',{},[$m('label',{},id),$m('input',{id,value})]); } document.body.append(addInput('p','101'),addInput('q','103'));