上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 186 下一页
摘要: 实践 1) u@u5:~/tmp$ cat g.go package main import ( "fmt" "runtime" "time") var i = 0 func main() { runtime.GOMAXPROCS(2) go func() { for { fmt.Println(" 阅读全文
posted @ 2020-06-12 01:07 papering 阅读(255) 评论(0) 推荐(0) 编辑
摘要: https://nginx.org/en/docs/http/request_processing.html 阅读全文
posted @ 2020-06-12 01:06 papering 阅读(118) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/hqSqtqTeUwnPEbDL_Z0kig 阅读全文
posted @ 2020-06-11 08:32 papering 阅读(148) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-06-11 08:07 papering 阅读(115) 评论(0) 推荐(0) 编辑
摘要: QR Code Error Correction - QRStuff.com https://blog.qrstuff.com/2011/12/14/qr-code-error-correction Information capacity and versions of QR Code | QRc 阅读全文
posted @ 2020-06-11 01:02 papering 阅读(548) 评论(0) 推荐(1) 编辑
摘要: Beating JSON performance with Protobuf https://auth0.com/blog/beating-json-performance-with-protobuf/ Protobuf Performance Comparison and Points to Co 阅读全文
posted @ 2020-06-10 19:08 papering 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 公共错误码 - 支付宝开放平台 https://opendocs.alipay.com/open/common/105806 阅读全文
posted @ 2020-06-10 18:24 papering 阅读(1816) 评论(0) 推荐(0) 编辑
摘要: 风险识别系统-大数据智能风控管理平台-企业风控解决方案– 阿里云 https://www.aliyun.com/product/saf 阅读全文
posted @ 2020-06-09 23:50 papering 阅读(536) 评论(0) 推荐(0) 编辑
摘要: python3 源码阅读-虚拟机运行原理 - JonPan - 博客园 https://www.cnblogs.com/panlq/p/13069726.html 阅读全文
posted @ 2020-06-09 00:03 papering 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Crypto.getRandomValues() - Web APIs | MDN https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues 阅读全文
posted @ 2020-06-08 21:06 papering 阅读(757) 评论(0) 推荐(0) 编辑
摘要: https://github.com/python/cpython Profile Guided Optimization PGO takes advantage of recent versions of the GCC or Clang compilers. If used, either vi 阅读全文
posted @ 2020-06-08 12:57 papering 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 他没有著作等身,却是中国现代数学的播种人 --科技日报数字报 http://digitalpaper.stdaily.com/http_www.kjrb.com/kjrb/html/2019-02/01/content_414223.htm 解放后,姜立夫又担任了中山大学筹备委员会委员和数学系筹备小 阅读全文
posted @ 2020-06-05 01:36 papering 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 蚂蚁金服开发者社区 https://openclub.alipay.com/club/history/read/1495 RSA 和 RSA2 签名算法区别 - 支付宝开放平台 https://opendocs.alipay.com/open/291/106115 阅读全文
posted @ 2020-06-04 21:59 papering 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 钉钉前端-如何设计前端实时分析及报警系统 - 掘金 https://juejin.cn/post/6844904170533699598 阅读全文
posted @ 2020-06-04 21:57 papering 阅读(521) 评论(0) 推荐(0) 编辑
摘要: AES 加密说明 - 支付宝开放平台 https://opendocs.alipay.com/open/common/104567 AES 密钥是对接口请求和响应内容进行加密,密文无法被第三方识别,从而防止接口传输数据泄露。 RSA 密钥是对接口请求和响应内容进行签名,开发者和支付宝开放平台分别加签 阅读全文
posted @ 2020-06-04 21:54 papering 阅读(559) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/分组密码 设计原则 扩散(diffusion)和扰乱(confusion)是影响密码安全的主要因素。扩散的目的是让明文中的单个数字影响密文中的多个数字,从而使明文的统计特征在密文中消失,相当于明文的统计结构被扩散。例如,最简单的方法让明文中的 阅读全文
posted @ 2020-06-04 21:49 papering 阅读(434) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/高级加密标准/468774 AES加密模式 对称/分组密码一般分为流加密(如OFB、CFB等)和块加密(如ECB、CBC等)。对于流加密,需要将分组密码转化为流模式工作。对于块加密(或称分组加密),如果要加密超过块大小的数据,就需要涉及填充和 阅读全文
posted @ 2020-06-04 21:47 papering 阅读(1272) 评论(0) 推荐(0) 编辑
摘要: struct 将字节串解读为打包的二进制数据 — Python 3.8.3 文档 https://docs.python.org/zh-cn/3.8/library/struct.html 源代码: Lib/struct.py 此模块可以执行 Python 值和以 Python bytes 对象表示 阅读全文
posted @ 2020-06-04 13:03 papering 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 外发数据创建水印 产品通过对外发数据进行添加数据标记、自动生成水印、数据源追溯等功能,避免了内部人员外发数据泄露无法对事件追溯,提高了数据传递的安全性和可追溯能力。 数据水印系统_数据安全管理工具_【安华金和】 https://www.dbsec.cn/product/detail/25.html 阅读全文
posted @ 2020-06-04 12:58 papering 阅读(1505) 评论(0) 推荐(0) 编辑
摘要: Hash Array Mapped Trie Python\hamt.c 阅读全文
posted @ 2020-06-03 22:47 papering 阅读(286) 评论(0) 推荐(0) 编辑
摘要: A1Z26 Cipher - Letter Number A=1 B=2 C=3 - Online Decoder, Translator https://www.dcode.fr/letter-number-cipher How to encrypt using Letter-to-Number 阅读全文
posted @ 2020-06-03 13:39 papering 阅读(637) 评论(0) 推荐(0) 编辑
摘要: BigInteger Struct (System.Numerics) | Microsoft Docs https://docs.microsoft.com/en-us/dotnet/api/system.numerics.biginteger?view=netcore-3.1 Remarks T 阅读全文
posted @ 2020-06-03 12:17 papering 阅读(355) 评论(0) 推荐(0) 编辑
摘要: What is :: (double colon) in Python when subscripting sequences? 15 Extended Slices https://docs.python.org/release/2.3.5/whatsnew/section-slices.html 阅读全文
posted @ 2020-06-03 12:15 papering 阅读(185) 评论(0) 推荐(0) 编辑
摘要: from unittest import TestCaseBigInteger/Big_Integer.py at master · YulitaGap/BigInteger https://github.com/YulitaGap/BigInteger/blob/master/Big_Intege 阅读全文
posted @ 2020-06-03 12:14 papering 阅读(478) 评论(0) 推荐(0) 编辑
摘要: WeChat public doc https://developers.weixin.qq.com/doc/offiaccount/en/Basic_Information/Get_access_token.html In this case, the backend of the Officia 阅读全文
posted @ 2020-06-02 22:08 papering 阅读(174) 评论(0) 推荐(0) 编辑
摘要: RSA and ECC in JavaScript http://www-cs-students.stanford.edu/~tjw/jsbn/ Source Code The API for the jsbn library closely resembles that of the java.m 阅读全文
posted @ 2020-06-02 22:07 papering 阅读(236) 评论(0) 推荐(0) 编辑
摘要: https://tools.ietf.org/html/rfc7231#section-6.5.7 6.5.7. 408 Request Timeout The 408 (Request Timeout) status code indicates that the server did not r 阅读全文
posted @ 2020-06-01 22:12 papering 阅读(317) 评论(0) 推荐(0) 编辑
摘要: https://github.com/mdn/dom-examples/blob/master/web-crypto/import-key/spki.js How to convert ArrayBuffer to and from String | Web https://developers.g 阅读全文
posted @ 2020-06-01 20:11 papering 阅读(410) 评论(0) 推荐(0) 编辑
摘要: SubtleCrypto.decrypt() - Web APIs | MDN https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/decrypt SubtleCrypto.decrypt() - Web APIs | MDN 阅读全文
posted @ 2020-06-01 18:29 papering 阅读(650) 评论(0) 推荐(0) 编辑
摘要: PKCS #1: RSA Cryptography Specifications Version 2.2 阅读全文
posted @ 2020-06-01 18:27 papering 阅读(710) 评论(0) 推荐(0) 编辑
摘要: PHP: Callback / Callable 类型 - Manual https://www.php.net/manual/zh/language.types.callable.php Callback / Callable 类型 自 PHP 5.4 起可用 callable 类型指定回调类型 阅读全文
posted @ 2020-06-01 12:38 papering 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 核心 SET resource_name my_random_value NX PX 30000 if redis.call("get",KEYS[1]) == ARGV[1] then return redis.call("del",KEYS[1]) else return 0 end Distr 阅读全文
posted @ 2020-06-01 12:36 papering 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 415 Unsupported Media Type - HTTP | MDN https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/415 阅读全文
posted @ 2020-06-01 12:34 papering 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 房产基于Swoole的PHP RPC框架设计 https://mp.weixin.qq.com/s/XSrKEQ-0q4DvjOGTIwYYzg 阅读全文
posted @ 2020-06-01 12:29 papering 阅读(258) 评论(0) 推荐(0) 编辑
摘要: hashlib 安全哈希与消息摘要 — Python 3.8.3 文档 https://docs.python.org/zh-cn/3.8/library/hashlib.html hashlib — Secure hashes and message digests — Python 3.8.3 阅读全文
posted @ 2020-05-29 20:10 papering 阅读(234) 评论(0) 推荐(0) 编辑
摘要: a 翻译 搜索 复制 阅读全文
posted @ 2020-05-29 19:47 papering 阅读(280) 评论(0) 推荐(0) 编辑
摘要: hashlib — Secure hashes and message digests — Python 3.8.3 documentation https://docs.python.org/3.8/library/hashlib.html#randomized-hashing BLAKE2 ht 阅读全文
posted @ 2020-05-29 19:33 papering 阅读(189) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/v3Fvp6Hed7ZGoE8FGlGMvQ 阅读全文
posted @ 2020-05-29 12:47 papering 阅读(287) 评论(0) 推荐(0) 编辑
摘要: https://wx2.qq.com/?&lang=zh_CN /** * 启动二维码登录 */ function doQrcodeLogin() { loginFactory.getUUID().then(function (uuid) { utilFactory.log('login',uuid 阅读全文
posted @ 2020-05-29 12:46 papering 阅读(623) 评论(0) 推荐(0) 编辑
摘要: /** * polling * @param data */ function checkLoginHandler (data) { /** * code: * 200: 成功 * 201:扫描成功,但未点确认 * 408:未扫描 * 400:未知 * 500: login poll srv exc 阅读全文
posted @ 2020-05-28 21:51 papering 阅读(412) 评论(0) 推荐(0) 编辑
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 186 下一页