java 对证书文件以及秘钥.key的解析

java解析证书具有两种方式,

1.为证书的标准格式,java通过jdk进行对标准证书进行base64解密转换、解析,由于网上对于该方式的描述较多,本文不做过多描述。

2.第二种方式为java去除了开头的“-----BEGIN CERTIFICATE-----”以及中间的“/n”末尾的“-----END CERTIFICATE-----”

备注:第一种方式可通过代码处理去除证书文件的分隔符以及开头结尾标识转为第二种情况

只剩下了内容。

  public static PublicKey verify_cert(String caPath,String userBase64,String userName) throws InvalidKeyException, CertificateException, NoSuchAlgorithmException, NoSuchProviderException, IOException {
        Security.addProvider(new BouncyCastleProvider());
        // 读取 ca 证书 文件,获取证书的 公钥
        String certString = readFile(new File(caPath));
        String replace = certString.replace("-----BEGIN CERTIFICATE-----", "")
                .replaceAll(System.lineSeparator(), "")
                .replace("-----END CERTIFICATE-----", "");
        BASE64Decoder decoder = new BASE64Decoder();
        byte[] cetba = decoder.decodeBuffer(replace);
        InputStream inStream = new ByteArrayInputStream(cetba);
        CertificateFactory cf = CertificateFactory.getInstance("X.509","BC");
        X509Certificate ca_52_cert =  (X509Certificate)cf.generateCertificate(inStream);
        PublicKey ca_52_publicKey = ca_52_cert.getPublicKey();
        // 读取个人证书,获取证书,以及公钥
        byte[] userByte = decoder.decodeBuffer(userBase64);
        ByteArrayInputStream fis_ra = new ByteArrayInputStream(userByte);
        X509Certificate user_52_cert = (X509Certificate)cf.generateCertificate(fis_ra);
        PublicKey user_52_certPublicKey = user_52_cert.getPublicKey();
        return user_52_certPublicKey;
    }

java支持pksc8格式的私钥文件读取,把拿到的pksc1格式私钥转换为pksc8格式

证书私钥文件转换

1.openssl

2.pkcs8 -topk8 -inform PEM -in ca.key -outform pem -nocrypt -out pkcs8_ca_test.key

读取私钥获得转为私钥对象


    /**
     * 从私钥文件当中读取私钥文件
     * @param file
     * @return
     * @throws IOException
     */
    public static String readFile(File file) throws IOException {
        InputStream in = null;
        ByteArrayOutputStream out = null;
        try {
            in = new FileInputStream(file);
            out = new ByteArrayOutputStream();
            byte[] buf = new byte[1024];
            int len = -1;
            while ((len = in.read(buf)) != -1) {
                out.write(buf, 0, len);
            }
            out.flush();
            byte[] data = out.toByteArray();
            return new String(data);
        } finally {
            out.close();
            in.close();
        }
    }


    /**
     * 通过私钥文件读取加载为私钥对象
     * @param replace 去除私钥格式后的cks8字符串
     */
    public static PrivateKey get( String replace) throws Exception {
//        byte[] keyBytes = Files.readAllBytes(Paths.get(filename));
        BASE64Decoder decoder = new BASE64Decoder();
        byte[] cetba = decoder.decodeBuffer(replace);
        PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(cetba);
        KeyFactory kf = KeyFactory.getInstance("RSA");
        return kf.generatePrivate(spec);
    }

    /**
     * 用公钥解密
     * @param privateDataBase64      密文
     * @param publicKey 公钥
     * @return
     * @throws Exception
     */
    public static byte[] decryptByPublicKey(String privateDataBase64, PublicKey publicKey) throws Exception {
        byte[] privateDataBytes = decryptBASE64(privateDataBase64);
        KeyFactory keyFactory = KeyFactory.getInstance("RSA");
        Cipher cipher = Cipher.getInstance(keyFactory.getAlgorithm());
        cipher.init(Cipher.DECRYPT_MODE, publicKey);
        return cipher.doFinal(privateDataBytes);
    }

    /**
     * 用私钥加密
     * @param data       明文
     * @param privateKey 私钥
     * @return
     * @throws Exception
     */
    public static byte[] encryptByPrivateKey(byte[] data, PrivateKey privateKey) throws Exception {
        KeyFactory keyFactory = KeyFactory.getInstance("RSA");
        Cipher cipher = Cipher.getInstance(keyFactory.getAlgorithm());
        cipher.init(Cipher.ENCRYPT_MODE, privateKey);
        return cipher.doFinal(data);
    }
    public static byte[] decryptBASE64(String key) throws Exception {
        return (new BASE64Decoder()).decodeBuffer(key);
    }

    public static String encryptBASE64(byte[] key) throws Exception {
        return (new BASE64Encoder()).encodeBuffer(key);
    }

Java 中使用 SFTP 秘钥登录时,可以使用 JSch 库来完成。JSch 是一个纯 Java 实现的 SSH2 客户端,可以通过它来连接远程服务器并执行相应的操作。 对于使用秘钥登录时,需要提供私钥和远程服务器的公钥。远程服务器的公钥一般是以 OpenSSH 格式存储的,可以使用以下方式来解析: 1. 打开公钥文件读取其中的内容: ```java String publicKey = ""; try(BufferedReader br = new BufferedReader(new FileReader("path/to/public/key"))) { String line; while ((line = br.readLine()) != null) { publicKey += line + "\n"; } } ``` 2. 创建一个 `JSch` 对象,并使用 `JSch.addIdentity()` 方法加载私钥: ```java JSch jsch = new JSch(); jsch.addIdentity("path/to/private/key"); ``` 3. 将远程服务器的公钥添加到 `JSch` 的 `known_hosts` 文件中: ```java JSch.setConfig("StrictHostKeyChecking", "no"); JSch.setKnownHosts("path/to/known_hosts"); ``` 在这里,我们将 `StrictHostKeyChecking` 设置为 `no`,表示不对主机的公钥进行验证(不建议在生产环境中使用)。也可以将 `known_hosts` 文件中的内容读取出来,和远程服务器的公钥进行比较,从而实现公钥的验证。 4. 使用 `Session.connect()` 方法连接远程服务器: ```java Session session = jsch.getSession("username", "remote-host", 22); session.connect(); ``` 在这里,需要提供远程服务器的用户名和地址以及 SSH 端口号。 5. 连接成功后,可以使用 `ChannelSftp` 对象进行 SFTP 操作: ```java ChannelSftp sftpChannel = (ChannelSftp) session.openChannel("sftp"); sftpChannel.connect(); ``` 在这里,我们将 `Channel` 类型设置为 `sftp`,表示要进行 SFTP 操作。 以上就是在 Java 中使用 SFTP 秘钥登录时解析 OpenSSH 格式公钥的方法。需要注意的是,在实际开发中还需要考虑到安全性和异常情况的处理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值