java RSA加密算法,对消息m=25进行加密,生成密文c并解密。

该程序只能应用于小一点的两个素数,只是验证RSA算法。

import java.util.Scanner;

public class AddSra {
    /**
     * RSA加密算法。对消息m=25进行加密,生成密文c,并解密。
     */
    public static void main(String[] args) {
        long m,n;
        long  M,N,a,e,c,z,d;
        
        System.out.print("请输入两个素数: ");
        Scanner scan = new Scanner(System.in);
        
        m = scan.nextLong();//假设m = 5
        n = scan.nextLong();//假设n = 7
        a = 25;
        N = m * n;
        M = (m-1)*(n-1);
        e = 5;//假设3
        z = gcd(M,e);
        d = getSecret(M,e);
        c = addSra(a,e,N);
        System.out.println("公钥为("+N+","+e+")");
        System.out.println("私钥为"+d);
        System.out.println("对消息a="+a+"进行加密,生成密文c:" + c);
        System.out.println("对密文c进行解密为:" + decode(c,d,N));        
    }
    public static long gcd(long x,long y){
        if(y == 0){
            return x;
        }
        return gcd(y,x%y);
    }
    public static long getSecret(long i,long j){        
        for(int d0=1;;d0++){
            if( ( ((j*d0 - 1) % i) == 0) ){
                return d0;
            }
            d0++;
        }
    }
    public static long addSra(long x,long y,long z0){
        
        return (long)(Math.pow(x, y) % z0);
    }
    public static long decode(long x,long y, long z0){
        return (long)(Math.pow(x, y) % z0);
    }
}





  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Java生成密钥的实例    //产生单钥加密的密钥(myKey)   KeyGenerator keyGenerator = KeyGenerator.getInstance("DESede"); //采用DESede算法   keyGenerator.init(168); //选择DESede算法,密钥长度为112或168   Key myKey = keyGenerator.generateKey(); //生成密钥   System.out.println("得到单钥加密密钥");   //产生双钥的密钥对(keyPair)   KeyPairGenerator keyPairGenerator=KeyPairGenerator.getInstance("RSA"); //采用RSA算法   keyPairGenerator.initialize(1024); //指定密钥长度为1024   KeyPair keyPair = keyPairGenerator.generateKeyPair(); //生成密钥对   System.out.println("生成张三的公钥对");   //保存公钥的字节数组   File f = new File("publicKey.dat"); //保存公钥到文件publicKey.dat   FileOutputStream fout = new FileOutputStream(f);   fout.write(keyPair.getPublic().getEncoded()); //得到公钥的字节数组   fout.close(); //关闭文件输出流   System.out.println("保存公钥到文件: " f.getAbsolutePath());   //用Java对象序列化保存私钥,通常应对私钥加密后再保存   ObjectOutputStream oout = new ObjectOutputStream(new FileOutputStream("privateKey.dat")); //保存私钥到文件privateKey.dat   oout.writeObject(keyPair.getPrivate()); //序列化私钥   oout.close(); //关闭输出流   System.err.println("保存私钥到: privateKey.dat");   //从文件中得到公钥编码的字节数组   FileInputStream fin = new FileInputStream("publicKey.dat"); //打天publicKey.dat   ByteArrayOutputStream baout = new ByteArrayOutputStream(); //用于写入文件的字节流   int aByte = 0;   while ((aByte = fin.read())!= -1) //从文件读取一个字节   {    baout.write(aByte); //写入一个字节   }   fin.close(); //关闭文件输入流   byte[] keyBytes = baout.toByteArray(); //得到公钥的字节数组   baout.close(); //关闭字节数组输出流

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值