摘要: bcrypt 加密 引入 npm i bcrypt -S 代码 加密 const bcrypt = require("bcrypt") const salt = bcrypt.genSaltSync(10); const hash = bcrypt.hashSync(password, salt); 阅读全文
posted @ 2023-05-12 17:08 流云君 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 流程 前端js使用公钥进行加密,后端使用私钥进行解密(C#或java语言)。 注意:c#使用xml格式的公钥/私钥 Java,js都是pem格式 格式 xml: <RSAKeyValue><Modulus> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx </Modulus> 阅读全文
posted @ 2023-05-12 17:02 流云君 阅读(92) 评论(0) 推荐(0) 编辑
摘要: react+antd选择框输入 const onSearch=(fn,value)=>{ if(value){//这个if无比重要 form.setFieldsValue({"Owner":value}); } } <Select allowClear showSearch onSearch={on 阅读全文
posted @ 2023-05-12 16:42 流云君 阅读(9) 评论(0) 推荐(0) 编辑