参考: <PHP Cookbook>3'rd ...
分类:
Web程序 时间:
2016-05-09 12:46:06
阅读次数:
142
1 spring mybatis 配置事务管理:
factory-method="decrypt">
...
分类:
编程语言 时间:
2016-04-26 22:13:24
阅读次数:
478
下载 自行去官网下载 http://www.telerik.com/fiddler 配置Fiddler 1、打开Fiddler, Tools-> Fiddler Options -> HTTPS, 选中"Decrypt HTTPS traffic", 2、打开Fiddler, Tools-> Fid ...
分类:
其他好文 时间:
2016-04-22 13:16:36
阅读次数:
145
java之Symmetric encryption techniques
Symmetric encryption uses
a single key to encrypt and decrypt a message. This type of encryption is classified as either stream ciphers or block ciphers. Mor...
分类:
编程语言 时间:
2016-04-16 19:04:05
阅读次数:
187
connectionProperties:配置连接的一些属性,这里配置的config.decrypt=true,表示提供的密码是加密过的 filters:就是一个拦截器,可配置监控、日志等 maxActive:最大连接数个数 initialSize:初始化连接数个数 minIdle:空闲的连接数个数 ...
分类:
其他好文 时间:
2016-04-12 22:10:53
阅读次数:
321
1、PHP加密解密 PHP加密和解密函数可以用来加密一些有用的字符串存放在数据库里,并且通过可逆解密字符串,该函数使用了base64和MD5加密和解密。 复制代码代码如下: function encryptDecrypt($key, $string, $decrypt){ if($decrypt){ ...
分类:
Web程序 时间:
2016-04-06 09:26:01
阅读次数:
221
public sealed class EncryptUtils { #region Base64加密解密 /// <summary> /// Base64加密 /// </summary> /// <param name="input">需要加密的字符串</param> /// <returns>
分类:
编程语言 时间:
2016-03-09 15:51:19
阅读次数:
273
#include<iostream>
#include<string.h>
usingnamespacestd;
intmain()
{
voidencrytion_decrypt(charinput[],intlen);
charinput[10];
cout<<"Pleaseinputpassword:";
cin>>input;
intlen;
len=strlen(input);
cout<<"\n"<<"passwordis:"..
分类:
其他好文 时间:
2016-03-06 17:43:15
阅读次数:
137
openssl_public_encrypt() - Encrypts data with public keyopenssl_public_decrypt() - Decrypts data with public keyopenssl_private_encrypt() - Encrypts d
分类:
Web程序 时间:
2016-01-28 18:51:56
阅读次数:
172
unit uEncrypt_Decrypt;interfaceuses SysUtils;const XorKey: array[0..7] of Byte = ($B2, $09, $AA, $55, $93, $6D, $84, $47);//通过密钥Key加密function EncryptS...