摘要:
一:nacos https://nacos.io/docs/latest/what-is-nacos/ https://github.com/alibaba/nacos 二:consul https://developer.hashicorp.com/consul/docs?product_inte 阅读全文
摘要:
网关: 一:apisix doc:https://apisix.apache.org/zh/docs/apisix/getting-started/README/ github:https://github.com/apache/apisix 二:Kong github:https://github 阅读全文
摘要:
using Org.BouncyCastle.Crypto; using Org.BouncyCastle.Crypto.Parameters; using Org.BouncyCastle.Math; using Org.BouncyCastle.OpenSsl; using Org.BouncyCastle.Pkcs; using Org.BouncyCastle.Security; usi... 阅读全文
摘要:
支付回调: 获取HttpRequest的body内容,之前使用Request.Form有时候数据请求不到(可能是跟.net core 版本有关?) 获取到回调内容,接下来按照支付平台来处理。 支付宝回调: 将返回的数据分割开来,decode后填装到字典里后,获取sign值等相关数据后,剔除sign及 阅读全文
摘要:
源码: https://github.com/aspros-luo/Qwerty.Payment/tree/develop 今天开始微信支付 微信支付坑比较多,支付流程也不太一样,微信支付需要先生成预支付单,然后再具体调用 具体参考微信sdk 1:微信支付主体,用于存储键值字典,等相关方法 inte 阅读全文
摘要:
源码: https://github.com/aspros-luo/Qwerty.Payment/tree/develop 支付宝支付:参考支付宝sdk及文档,https://docs.open.alipay.com/194 前言: 目前实现支付宝Native支付,手机网站支付,App支付,支付回调 阅读全文
摘要:
引用 AES加密 AES解密 RSA签名 需要引用nuget包 BouncyCastle.NetCore RSA 验签 分割线 此代码是在framework4.6.2下实现的 github:https://github.com/aspros-luo/Qwerty.Encrypt.Demo 以上 :) 阅读全文
摘要:
开发环境在vs2017,2015 暂时没有试过 1.在扩展更新中添加Microsoft WCF Web Service Reference Provider 2.在core项目中添加链接的服务 3.键入对应的webservice地址,跳转后显示对应服务 4.点击完成后等待加载完成后会在对应的项目下会 阅读全文
摘要:
1.获取证书路径 2.数据加密 .net core 中使用gbk encoding需要调用Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); nuget包中使用System.Text.Encoding.CodePages 3. 阅读全文
摘要:
参考地址:https://stackoverflow.com/questions/40833262/net-core-entity-framework-mysql-string-fields-store-255-symbols-only mysql 字段 设置varchar ,text,longte 阅读全文