⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 multell.m

📁 vigenere密码解密的matlab实现
💻 M
字号:
function y = multell(p,M,a,b,n);% This function prints the Mth multiple of p on the elliptic%  curve with coefficients a and b mod n.z1=M;y=[inf inf];while (z1 ~=0),    while (mod(z1,2) ==0),        z1=(z1/2);        p=addell(p,p,a,b, n)        if (length(p)==0),           y=[];           disp('Multell found a factor of n and exited');           z1           return;        end;    end;  %end while    z1=z1-1;    y=addell(y,p,a,b,n)    if (length(y)==0),       disp('Multell found a factor of n and exited');       z1       return;     end; end;

⌨️ 快捷键说明

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