i.MX交叉编译openssl

freescale的i.MX采用了yocto的框架编译。提取toolchain并安装后,在toolchain的安装目录有一个脚本可以用来设置交叉编译的环境变量。 ISSUE 但是当使用此环境变量编译openssl后,会出现以下问题: [crayon-6a14916f8381a941312126/] FIXes 此时可以通过手动配置编译环境解决: 重新开一个shell 设置交叉编译器目录到PATH [crayon-6a14916f8381f914688691/] 采用通用32位配置Autoconf [crayon-6a14916f83820357347092/] 修改Makefile中的CC为交叉编译器的GCC,注意不要忘了后面的参数 [crayon-6a14916f83821040144471/] 编译 [crayon-6a14916f83822841139092/] 参考 http://berniechenopenvpn.blogspot.com/2015/10/wpasupplicant-am335x.html

HOWTO Cross Compile and Configurate net-snmp

Precondition Hardware platform: ATMEL SAM9X5 Series Cross-compile tool: denx eldk-4.2 CrossCompile openssl denx的eldk-4.2版本的arm编译器自带的openssl库版本为0.9.8b,在编译net-snmp的时候configure会出错: checking for BIO_dgram_get_peer... configure: error: DTLS support requires a newer version of OpenSSL 所以需要使用高版本的openssl。 $ git clone git://git.openssl.org/openssl.git…

How to Cross Compile openssl

下载 [crayon-6a14916f83a87622637411/] 编译 openssl-0.9.7a [crayon-6a14916f83a8a035593918/] openssl-1.0.0 and later 查看支持的平台 [crayon-6a14916f83a8b790717240/] 配置参数&编译 [crayon-6a14916f83a8c640750231/] Status of different versions: OpenSSL 1.0.1 through 1.0.1f (inclusive) are vulnerable OpenSSL 1.0.1g is NOT vulnerable OpenSSL 1.0.0…

OpenSSL RSA

genrsa - generate an RSA private key [crayon-6a14916f83b63909970280/] 产生私钥 [crayon-6a14916f83b66353702390/] rsa - RSA key processing tool [crayon-6a14916f83b67375056246/] rsautl - RSA utility [crayon-6a14916f83b68609503692/] [crayon-6a14916f83b69122673122/] [crayon-6a14916f83b6a318379835/]