摘要:
最近在整一个密码键盘的加密,第一次涉及到AES这种加密方式,在这里总结一下: 分组密码有五种工作体制:1.电码本模式(Electronic Codebook Book (ECB));2.密码分组链接模式(Cipher Block Chaining (CBC));3.计算器模式(Counter (CT
阅读全文
posted @ 2017-05-05 14:30
jsonUserList
阅读(809)
推荐(0)
摘要:
转载: http://blog.csdn.net/oscar999/article/details/9364101 前言 先看一下百度百科对数字签名和数字证书的解释: 数字签名: 将报文按双方约定的HASH算法计算得到一个固定位数的报文摘要。在数学上保证:只要改动报文中任何一位,重新计算出的报文摘要
阅读全文
posted @ 2017-03-31 15:15
jsonUserList
阅读(210)
推荐(0)
摘要:
转载: http://blog.csdn.net/oscar999/article/details/9364101 前言 先看一下百度百科对数字签名和数字证书的解释: 数字签名: 将报文按双方约定的HASH算法计算得到一个固定位数的报文摘要。在数学上保证:只要改动报文中任何一位,重新计算出的报文摘要
阅读全文
posted @ 2017-03-31 15:13
jsonUserList
阅读(389)
推荐(0)
摘要:
转载: http://blog.csdn.net/hengshujiyi/article/details/22040061 http://www.cnblogs.com/Kennytian/p/6413734.html
阅读全文
posted @ 2017-02-28 17:25
jsonUserList
阅读(107)
推荐(0)
摘要:
转载: http://www.cnblogs.com/linfenren/p/5985202.html 混编的情况为两种: 在OC中调用Swift文件:在OC文件中引入#import"ProjectName-swift.h"(工程名-swift) ,该文件为隐含文件 在Swift调用OC/C:只需要
阅读全文
posted @ 2017-02-24 17:05
jsonUserList
阅读(227)
推荐(0)
摘要:
转载:http://blog.csdn.net/hmxhh/article/details/40654575
阅读全文
posted @ 2017-02-23 17:26
jsonUserList
阅读(96)
推荐(0)
摘要:
1、使用%zd打印NSInteger ,%tu打印NSUInteger 2、UIScrollView在iOS7中使用了Autolayout导致不能滚动,方法是添加scrollview的content高度 3、UICollectionView的数据不够,无法滑动,解决方案:tableview的数据无论
阅读全文
posted @ 2017-02-23 17:18
jsonUserList
阅读(223)
推荐(0)
摘要:
iOS多线程编程之一NSThread: 两种创建方式: 实例方法:-(id)initWithTarget:(id)target selector:(SEL)selector object:(id)argument 类方法:+(void)detachNewThreadSelector:(SEL)ase
阅读全文
posted @ 2017-02-22 10:02
jsonUserList
阅读(573)
推荐(0)
摘要:
#import #import "AFNetworking.h" #import "SuccessViewController.h" @interface RootViewController : UIViewController { //声明加载数据的AFNetWork成员变量 AFHTTPRequestOperationManager *_manager; ...
阅读全文
posted @ 2015-05-09 18:35
jsonUserList
阅读(142)
推荐(0)
摘要:
#import #import "GDataXMLNode.h" @interface ZYKAppDelegate : UIResponder { //声明xml文档解析成员变量 GDataXMLDocument *_doc; } @property (strong, nonatomic) UIWindow *window; @end #import "ZYKAppDe...
阅读全文
posted @ 2015-05-09 18:31
jsonUserList
阅读(134)
推荐(0)