i.MX交叉编译openssl

freescale的i.MX采用了yocto的框架编译。提取toolchain并安装后,在toolchain的安装目录有一个脚本可以用来设置交叉编译的环境变量。 ISSUE 但是当使用此环境变量编译openssl后,会出现以下问题: [crayon-69002329bd90f957740742/] FIXes 此时可以通过手动配置编译环境解决: 重新开一个shell 设置交叉编译器目录到PATH [crayon-69002329bd913952013798/] 采用通用32位配置Autoconf [crayon-69002329bd914676124003/] 修改Makefile中的CC为交叉编译器的GCC,注意不要忘了后面的参数 [crayon-69002329bd915669142766/] 编译 [crayon-69002329bd916896623475/] 参考 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-69002329bdb8f018556673/] 编译 openssl-0.9.7a [crayon-69002329bdb91316813690/] openssl-1.0.0 and later 查看支持的平台 [crayon-69002329bdb92917096550/] 配置参数&编译 [crayon-69002329bdb93665024549/] 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-69002329bdc8d972757631/] 产生私钥 [crayon-69002329bdc8f456760413/] rsa - RSA key processing tool [crayon-69002329bdc90363946976/] rsautl - RSA utility [crayon-69002329bdc91859526029/] [crayon-69002329bdc92986592088/] [crayon-69002329bdc93078032994/]