文章分类 -  技术

摘要:github: https://www.githubs.cn/awesome nacos: https://nacos.io/en-us/docs/what-is-nacos.html java架构: https://zhuanlan.zhihu.com/c_192952290 跨域: https: 阅读全文
posted @ 2020-05-28 11:30 DesignMe 阅读(70) 评论(0) 推荐(0)
摘要:概述: http://c.biancheng.net/view/1317.html 阅读全文
posted @ 2020-05-28 11:22 DesignMe 阅读(36) 评论(0) 推荐(0)
摘要:二分法查找: 代码块 public static boolean binarySearch(List<Integer> list, Integer matchItem) { int size = list.size(); if (size == 1) { return list.get(0).equ 阅读全文
posted @ 2020-05-27 19:36 DesignMe 阅读(68) 评论(0) 推荐(0)
摘要:基本概念: 加密:混淆数据的机制,避免被其它人看到; 身份验证:验证消息的来源是否正确; 完整性:消息是否被伪造和篡改; 对称加密:加密和解密的key是同一个; 非对称加密:加密和解密的key不是同一个,但是加密key和解密key是一一对应的; TLS:传输层安全, 加密信息在报文中的位置 应用层( 阅读全文
posted @ 2020-05-27 19:32 DesignMe 阅读(171) 评论(0) 推荐(0)