crypttest.m

来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 16 行

M
16
字号
% test the cryptographic example
% Copyright 1999 by Todd K. Moon

p = 7;
q = 11;
r = p*q;
phir = (p-1)*(q-1);
phiphir = 16;
s = 13;

M = 14;
E = res(M,s,r);

t = res(s,(phiphir-1),phir);

D = res(E,t,r)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?