
数字安全
介绍一些安全加解密算法方面的知识,以及开源的OpenSSL库的基本用法。
开心乐源
十余年的c/c++语言程序开发经验,从事过证券行情软件开发,人工智能项目工程化,区块链智能合约开发。熟悉多种开发环境,熟悉常见的网络协议,热衷于区块链/人工智能/互联网金融等领域产品开发,希望计算机技术可以更好的服务社会,如果有机会也愿意从事计算机项目管理类工作。乐于学习新知识新技术,不局限于使用一项技术,更注重了解技术背后的原理。
展开
-
Wireshark分析https流量
wireshark分析https流量原创 2022-09-13 10:55:38 · 1854 阅读 · 1 评论 -
smtp&pop3认证邮件发送接收
smtp演示http://www.faqs.org/rfcs/rfc821.html WSADATA wsa; WSAStartup(MAKEWORD(2,2), &wsa); SOCKET sock = socket(AF_INET, SOCK_STREAM, 0); if (sock == INVALID_SOCKET) { return -1; }原创 2011-03-29 20:25:00 · 1918 阅读 · 0 评论 -
makecert 制作数字证书
在MS的SDK6.0中有个证书生成工具makecert.exe, 你可以使用这个工具来生成测试用的证书。 第一步,生成一个自签名的根证书(issuer,签发者)。>makecert -n "CN=Root" -r -sv RootIssuer.pvk RootIssuer.cer 这个时候,会弹出提示框,首先给RootIssuer.pvk文件设置私钥保护口令; 然原创 2009-06-03 20:51:00 · 22852 阅读 · 14 评论 -
文件加密工具
一个集成在Windows资源管理器右键菜单里面的工具,类似于WinRAR,可以对选中的文件或者文件夹进行加密。加密算法,由Windows的CryptoAPI提供。另外还附带了一个hash菜单,可以对选中的文件计算hash值,hash算法使用openssl的MD5-128。 下面的地址可以下载这个工具:http://sourceforge.net/projects/easycrypt原创 2009-06-08 09:18:00 · 1733 阅读 · 2 评论 -
非对称加解密基础 - RSA算法
公钥和私钥的产生N = 17 * 53 = 901m = (17-1)*(53-1)=832let e=17 // by random d = 49 // because ( d * e ) % m = 1 , that is ( d * 17 ) % 832 = 1公钥(901,17) 私钥(901,49)加密过程int text = 123 (注意,消息原创 2012-01-20 15:08:41 · 4472 阅读 · 0 评论 -
循环冗余校验算法CRC32
uint32 crc32_tab[] = { 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cb原创 2012-11-23 10:49:23 · 1617 阅读 · 0 评论 -
x509证书
http://en.wikipedia.org/wiki/X.509http://blog.youkuaiyun.com/wuzh1230/article/details/4240238http://blog.youkuaiyun.com/wuzh1230/article/details/7211997证书文件的编码二进制编码 - DER按照x509定义的结构编码结果直接写入二进制文件原创 2013-04-02 14:44:08 · 3351 阅读 · 0 评论 -
【OpenSSL】为Android系统构建OpenSSL
参考Wiki:http://wiki.openssl.org/index.php/AndroidWhile the Executive Summary provided the whirlwind instructions for building and installing the OpenSSL library, this sections provides detail原创 2015-02-10 13:18:30 · 6056 阅读 · 1 评论 -
【OpenSSL】创建证书
1)生成根证书1.1) 生成RSA私钥openssl genrsa -out cakey.pem 20481.2) 生成证书请求openssl req -new -key cakey.pem -out cacsr.pem1.3) 签发自签名证书openssl x509 -in cacsr.pem -req -signkey cakey.pem -da原创 2015-02-15 14:18:10 · 5086 阅读 · 1 评论 -
【OpenSSL】使用证书和私钥导出P12格式个人证书
参考上文【OpenSSL】创建证书1, 产生CA证书1.1, 生成ca的私钥openssl genrsa -out cakey.pem 20481.2, 生成ca的自签名证书请求openssl req -new -key cakey.pem -subj "/CN=Example Root CA" -out cacsr.pem 1.3, 自签名ca的证书openssl x509 -req -in ...原创 2015-02-16 11:27:21 · 16871 阅读 · 0 评论 -
【OpenSSL】使用SMIME发送签名和加密邮件
1,通信双方的证书生成openssl genrsa -out cakey.pem 2048openssl req -new -key cakey.pem -subj "/CN=rootca.bitbaba.com" -out cacsr.pemopenssl x509 -req -in cacsr.pem -days 999 -signkey cakey.pem -out cacert原创 2015-02-25 15:48:52 · 10102 阅读 · 1 评论 -
【OpenSSL】内存BIO
代码头文件 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <openssl/buffer.h> #include <openssl/bio.h>#记得包含openssl/buffer.h,否则BUF_MEM定义未知测试代码int main(int argc, char *原创 2015-02-25 17:36:10 · 1103 阅读 · 0 评论 -
【OpenSSL】Generation of RSA key pair
1. RSA密钥生成1. 测试代码#include <stdio.h>#include <stdlib.h>#include <string.h># include <openssl/bio.h># include <openssl/err.h># include <openssl/bn.h># include <openssl/rsa.h># include <openssl/evp.原创 2015-02-27 15:11:56 · 1758 阅读 · 0 评论 -
【OpenSSL】Sign & Verify
Prepare Test dataecho -n "hello world" > msg.txtsign means that encrypt a little data (usually digest of message, not the message itself) with private key. so do NOT sign with a large input, which ma原创 2015-03-26 16:37:38 · 5439 阅读 · 0 评论 -
【OpenSSL】Access PEM
Test code#include <stdio.h>#include <stdlib.h>#include <string.h># include <openssl/e_os2.h># include <openssl/bio.h># include <openssl/err.h># include <openssl/bn.h># include <openssl/rsa.h># i原创 2015-04-21 18:10:55 · 1509 阅读 · 3 评论 -
【OpenSSL】Memory BIO
Test code#include <stdio.h>#include <stdlib.h>#include <string.h># include <openssl/e_os2.h># include <openssl/bio.h># include <openssl/err.h># include <openssl/bn.h># include <openssl/rsa.h># i原创 2015-04-21 18:12:53 · 1773 阅读 · 0 评论 -
【OpenSSL】ssl client
practice of s_client from openssl原创 2015-10-23 14:33:00 · 1376 阅读 · 0 评论 -
【OpenSSL】base64 with BIO filter
IntroductionThere are many ways to do base64 encoding/decoding in OpenSSL, Here are some demos code with BIO filter. Other ways, e.g. EVP_* will be introduced later Base64 with EVP.Encodestd::string原创 2016-04-28 09:18:02 · 814 阅读 · 0 评论 -
【OpenSSL】base64 with EVP codecs
IntroductionHere are some deoms code of Base64 encoding/decoding with EVP_Encode/EVP_Decode.Encodebool Base64Encode(const std::vector<unsigned char > & vchInput, std::string & b64str){ EVP_ENCOD原创 2016-04-28 09:25:05 · 1804 阅读 · 0 评论 -
【OpenSSL】SMIME Group Message
IntroductionHere GroupMessage means that a message is sent to a group of recipients.原创 2016-04-28 10:07:01 · 898 阅读 · 0 评论