摘要: 利用终端进行证书的生成: 1.openssl pkcs12 -clcerts -nokeys -out cert.pem -inCertificates.p122.openssl pkcs12 -nocerts -out key.pem -in Certificates.p123.openssl rsa -in key.pem -out key.unencrypted.pem4.cat cert.pem key.unencrypted.pem > ck.pemphp代码: 1 #!/Applications/XAMPP/xamppfiles/bin/php 2 <?php 3 $d 阅读全文
posted @ 2011-10-31 10:59 lynn_ios 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 1 -(void)allview:(UIView *)rootview indent:(NSInteger)indent2 {3 NSLog(@"[%2d] %@",indent,rootview);4 indent++;5 for (UIView * aview in [rootview subviews])6 {7 [self allview:aview indent:indent];8 }9 } 阅读全文
posted @ 2011-10-11 16:57 lynn_ios 阅读(221) 评论(0) 推荐(0) 编辑