码迷,mamicode.com
首页 >  
搜索关键字:加密    ( 16142个结果
c# md5加密 ,tostring格式方法/字节数组元素的tostring
static void Main(string[] args) { GetMd5(); } public static void GetMd5() { string str = "123"; //创建md5对象,是静态方法。不能new MD5 mymd5 = MD5.Create(); //comp ...
分类:编程语言   时间:2021-04-07 11:23:31    阅读次数:0
Java 字符串异或加密
前言 有时需要加密保存数据,但是我不会用AES……所以选择了更简单的异或加密。 解决方案 public static String xor(String data, String password) { //异或加密 byte b1[] = data.getBytes(); byte b2[] = ...
分类:编程语言   时间:2021-04-06 14:14:59    阅读次数:0
311-STM32+Air724UG基本控制篇(自建物联网平台)-加密通信测试-Android以SSL单向认证方式连接MQTT服务器(不验证服务器证书)
<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/ZLAir724UGA/my.html" frameborder="0" scrolling="auto" width="100%" height="1500"></ifram ...
分类:移动开发   时间:2021-04-06 14:13:51    阅读次数:0
SpringBoot 发送邮件
SpringBoot发送邮件 1、pom <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</ ...
分类:编程语言   时间:2021-04-06 14:13:11    阅读次数:0
MD5Util工具类
package com.demo.utils;import java.security.MessageDigest;/** * MD5加密类 * @author zys */public class MD5Utils { public final static String MD5(String s ...
分类:其他好文   时间:2021-04-01 13:36:02    阅读次数:0
CS DES任意长度密钥加密
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:其他好文   时间:2021-04-01 12:53:38    阅读次数:0
mysql的用户管理
1,mysql重置root密码。 编辑配置文件 /etc/my.cnf ,在[mysqld]后面任意一行添加“skip-grant-tables”用来跳过密码验证 接下来我们需要重启MySQL,使用service mysqld restart 进入mysql中重置密码, mysql> update ...
分类:数据库   时间:2021-03-31 12:22:32    阅读次数:0
hashlib模块
import hashlib '''用于加密相关的操作,3.x里代替了md5模块和sha模块,主要提供SHA1,SHA224,SHA256,SHA384,SHA512,MD5算法也称摘要算法,把明文变为密文,但不能逆向,也就是说密文不能变回明文''' obj = hashlib.md5('asdds ...
分类:其他好文   时间:2021-03-31 11:44:29    阅读次数:0
Airtest跨平台的UI自动化测试框架
全面超越Appium,使用Airtest超快速开发App爬虫 想开发网页爬虫,发现被反爬了?想对 App 抓包,发现数据被加密了?不要担心,使用 Airtest 开发 App 爬虫,只要人眼能看到,你就能抓到,最快只需要2分钟,兼容 Unity3D、Cocos2dx-*、Android 原生 App ...
分类:其他好文   时间:2021-03-29 11:53:32    阅读次数:0
node加密rsa公钥和python解密私钥的问题
node和python默认的rsa加密方式是不一样,要调整一下。 node代码: const fs = require('fs'); const NodeRSA = require('node-rsa'); const path = require('path').resolve(); const ...
分类:编程语言   时间:2021-03-29 11:41:58    阅读次数:0
16142条   上一页 1 ... 8 9 10 11 12 ... 1615 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!