码迷,mamicode.com
首页 >  
搜索关键字:des加密解密    ( 82个结果
Oracle定义DES加密解密及MD5加密函数
http://blog.csdn.net/xdweleven/article/details/38319351(1)DES加密函数create or replace functionencrypt_des(p_text varchar2, p_key varchar2) return varchar...
分类:数据库   时间:2014-10-12 00:41:06    阅读次数:540
DES加密解密的实现
public class EncryptDESString { //默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; /// ...
分类:其他好文   时间:2014-09-16 18:47:50    阅读次数:171
java DES加密解密
java DES加密解密...
分类:编程语言   时间:2014-08-28 09:42:19    阅读次数:260
DES加密解密
/// /// DES加密 /// /// 需要加密字符串 /// 加密密钥 /// /// public static string Encrypt(string sourceStrin...
分类:其他好文   时间:2014-08-21 16:34:14    阅读次数:156
用JAVA实现的DES加密解密算法
package Encrypt; import java.security.*; import javax.crypto.*; import sun.misc.*; /** * 使用DES加密与解密,可对byte[],String类型进行加密与解密 * 密文可使用String,byte[]存储. * 方法: * v...
分类:编程语言   时间:2014-08-13 13:08:56    阅读次数:237
C# DES加密解密
/// /// 使用配置中的KEY,进行DES加密。 /// /// 要加密的字符串。 /// 以Base64格式返回的加密字符串。 public static string Encrypt(string pToEncryp...
分类:其他好文   时间:2014-08-05 00:26:08    阅读次数:260
DES加密解密帮助类
public class DESCrypto { /// /// 初始化des实例秘钥及向量 /// /// /// private static DESCryptoServiceProvide...
分类:其他好文   时间:2014-07-28 21:20:54    阅读次数:350
MD5加密解密帮助类
using System; using System.Security.Cryptography; using System.Text; namespace Maticsoft.DBUtility { /// /// DES加密/解密类。 /// public class DESEncrypt { public DESEncrypt() { } #regi...
分类:其他好文   时间:2014-07-16 11:21:38    阅读次数:194
C# Java DES加密解密
c#代码: public class DESHelper { /// /// DES加密算法 /// /// 要加密的字符串 /// 加密码Key /// 正确返回加密后的结果,错误返回源字符串 public static string ToDESEncrypt...
分类:编程语言   时间:2014-06-21 10:45:03    阅读次数:336
DES加密解密的C++源程序
DES加密解密的C++源程序                                              --测试版本,希望大家多多交流 #include #include"stdio.h" #include"math.h" #include "string.h"   static char key[16][48]; static char Hex[16][4]; ...
分类:编程语言   时间:2014-05-21 15:42:24    阅读次数:389
82条   上一页 1 ... 6 7 8 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!