非对称加解密算法之ECC

ECC算法用途比RSA还厉害。 支持加解密。 支持签名验证。 支持与DH结合使用,用于密钥磋商,这个密钥交换算法称为ECDH。 * 交换双方可以在不共

常见散列算法

散列算法 常见的单向散列算法,可用于数字签名,单向的,不可逆向,并非加密算法。 主要用途是为了校验数据在传输过程中是否被修改。 1.MD5(Message Digest algorithm 5,信息摘要

苹果开发者账号id绑定手机号

问题 最近苹果开发者账号提醒 “The Apple Developer Program License Agreement has been updated” 内容如下: In order to access certain membership resources, you must accept the latest license agreement. First, you’ll need to update the mobile phone number associated with your Apple ID. Your mobile phone number must be based in your country/region.

http1.1与2.0主要区别

http2.0与1.1相比较,有哪些区别呢? 1.数据格式不同 数据格式http2.0采用的是二进制格式,http1.1采用的是文本格式。 二进制

iOS加载拉伸的图片

iOS如何加载拉伸的图片呢? 1.通过代码指定拉伸区域加载图片 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 + (UIImage*)stretchImage:(NSString *)imageName { UIImage *image = [UIImage imageNamed:imageName]; if ([image respondsToSelector:@selector(resizableImageWithCapInsets:)]) { CGSize imageSize = image.size; image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(imageSize.height/2, imageSize.width/2, imageSize.height/2,