上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 查PEM格式证 openssl x509 -in ${NAME_FILE} -text -noout 查DER格式证书 openssl x509 -in ${NAME_FILE} -inform der -text -noout DER格式转PEM openssl x509 -inform DER 阅读全文
posted @ 2022-05-26 16:15 bert_qin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Tips:Java jre /lib/security/cacert的默认密码为changeit 查看keystore中的内容 keytool -list -v -keystore ${file} PKCS#12格式转jks格式 keytool -importkeystore -srckeystor 阅读全文
posted @ 2022-05-26 16:08 bert_qin 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 示例代码 点击查看代码 public static SSLContext getSslContext(){ try { String keystorePath = Paths.get("stores","keystore.p12").toString(); String truststorePath 阅读全文
posted @ 2022-05-26 15:58 bert_qin 阅读(485) 评论(0) 推荐(0) 编辑
摘要: public static byte[] byteMerge(byte[] bt1, byte[] bt2) { byte[] bt3 = new byte[bt1.length + bt2.length]; System.arraycopy(bt1, 0, bt3, 0, bt1.length); 阅读全文
posted @ 2022-04-29 16:21 bert_qin 阅读(726) 评论(0) 推荐(0) 编辑
摘要: //Tribute to python public static byte[] bytesFromHex(String hexStr) { int len = hexStr.length()/2; byte[] result = new byte[len]; for (int i = 0; i < 阅读全文
posted @ 2022-04-29 15:31 bert_qin 阅读(692) 评论(0) 推荐(0) 编辑
摘要: 1.生成自签证书 #!/bin/sh # # Copied from ima-evm-utils. # # This program is free software; you can redistribute it and/or # modify it under the terms of the 阅读全文
posted @ 2022-04-22 16:21 bert_qin 阅读(543) 评论(0) 推荐(0) 编辑
摘要: RSA签名验证的一般流程 发行者 对被签名文件(假设为App.txt)计算hash,一般用SHA256 用RSA私钥(假设为RSA.key)对hash值签名,得到二进制签名文件(假设为App.sig.bin),对其结果进行base64编码,保存到签名文件(假设为App.sig) 将App.txt,公 阅读全文
posted @ 2022-04-13 18:09 bert_qin 阅读(7596) 评论(1) 推荐(0) 编辑
摘要: 防止resolv.conf被修改,删除 chattr +i /etc/resolv.conf 让resolv.conf只能被追加 chattr +a /etc/resolv.conf 查看resolv.conf的属性 lsattr /etc/resolv.conf 得到的结果为 i /etc/res 阅读全文
posted @ 2022-03-15 09:07 bert_qin 阅读(428) 评论(0) 推荐(0) 编辑
摘要: public static boolean writeObject(String filePath, Object object){ try{ File file = new File(filePath); file.createNewFile();//noly create when the fi 阅读全文
posted @ 2022-03-14 23:09 bert_qin 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 1. 嵌套打开的流只需关闭最后打开的流,先打开的会自动关闭; 2. 打开的流可以多次关闭不会出错; 3. 后面尝试打开流时可能会发生异常,此时要考虑关闭前面已经打开的流。 下面是一种可行的方法: public static Object read(String filePath){ File fil 阅读全文
posted @ 2022-03-14 21:11 bert_qin 阅读(1224) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页