cd scripts/
sudo perl sign-file sha512 ../signing_key.priv ../signing_key.x509 ../libahci.ko
四个参数,第一个是sha512 第二个第三个都在/usr/src/linux-3.18.4/下
每次编译都要签名,所以只编译bzImage然后cp替换/boot目录下的vmlinu...
分类:
其他好文 时间:
2015-02-08 19:30:37
阅读次数:
708
ssl证书生成openssl req -new -x509 -days 3650 -nodes -out /opt/ssl/certs/postfix.pem -keyout /opt/ssl/private/postfix.pem
第一个是证书,第二个是key(私钥)
可以应用在很多程序上。
下面举两个例子:
nginx
postfix
nginx sslserver {
list...
分类:
其他好文 时间:
2015-02-08 16:56:29
阅读次数:
130
当用cd千辛万苦,翻山越岭,来到一个桃花胜地。说时迟那时快,打坐过久的程序猿童鞋三叉神经突然短路,手一哆嗦,无意中使出一招小连续技:cd + 回车,豁!一夜回到解放前……肿么办?还好有cd -。用起来是这样的,效果是刚刚的:zlf@ubuntu:~/gnutls-3.3.12/lib/x509$ c...
分类:
系统相关 时间:
2015-02-03 16:49:52
阅读次数:
192
0.签名java -Xmx2048m -jar out/host/linux-x86/framework/signapk.jar -w build/target/product/security/testkey.x509.pem build/target/product/security/testk...
分类:
移动开发 时间:
2015-01-20 20:04:38
阅读次数:
184
应用想要获取系统权限的话就必须要有系统签名,但是在开发一个系统的时候,为了系统的安全性,往往会去改变系统的签名。我们都知道通过platform.pk8 platform.x509.pem和signapk.jar可以对应用进行签名操作,但是这样很麻烦,而且也没办法使用Eclipse中的调试操作了,最简...
分类:
移动开发 时间:
2015-01-13 14:07:01
阅读次数:
200
1,查看当前用户权限 select host,password, user from user;2,用户 创建用户 insert into mysql.user(Host,User,Password,ssl_cipher,x509_issuer,x509_subject) values("Ho...
分类:
数据库 时间:
2015-01-05 16:19:26
阅读次数:
199
ios 使用public_key.der加密php 使用 private_key.pem解密openssl req -x509 -out public_key.der -outform der -new -newkey rsa:1024 -keyout private_key.pemphrase:c...
分类:
移动开发 时间:
2014-12-24 11:38:50
阅读次数:
216
为域名https.ssl.com设置https加密访问过程:
命令如下:
#opensslgenrsa-des3-outhttps.ssl.com.key1024
#opensslreq-new-keyhttps.ssl.com.key-outhttps.ssl.com.csr
#opensslrsa-inhttps.ssl.com.key-outhttps.ssl.com_nopass.key
#openssl-req-new-x509-days3650-keyhttps..
分类:
其他好文 时间:
2014-12-19 02:06:00
阅读次数:
203
curl的用法: http://linux.about.com/od/commands/l/blcmdl1_curl.htmDER格式的cert转换为PEM格式(curl只接受PEM格式): openssl x509 -inform der -in cert.cer -out cert.pemc.....
分类:
Web程序 时间:
2014-12-01 20:42:40
阅读次数:
212
ConfiguringTLSEncryptionOnlyforClouderaManageronClouderaManagerServer:1.mkdir-p/opt/cloudera/security/{x509,jks,CAcerts}2.generateaJavakeystoreandCertificateSigningRequest(CSR)fortheClouderaManagerServerkeytool-genkeypair-aliascm5-keyalgRSA-keystore/opt/clo..
分类:
其他好文 时间:
2014-11-21 16:34:24
阅读次数:
881