代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/275029/10838544
res des.res
www.eeworm.com/read/419770/10838692
java des.java
public class DES {
//DES的中的S-BOX
private byte[][] sbox1=
{
{14, 4,13, 1, 2,15,11, 8, 3,10, 6,12, 5, 9, 0, 7},
{0, 15, 7, 4,14, 2,13, 1,10, 6,12,11, 9, 5, 3, 8},
{4, 1,14, 8,13, 6
www.eeworm.com/read/274840/10848730
h des.h
//des.h
//***DES encrypt head file***
//***by yjm***
//***May. 2005***
#include
#include
char ch[256];//此处可修改一次接受传入的字符串长度(64的倍数)
unsigned int inf[64],inf1[64],k[64],pa
www.eeworm.com/read/419621/10853443
java des.java
//版权所有--董清潭
package des;
public class Des {
/* Table - s1 */
protected static byte[][] s1 = {
{14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7},
{0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11
www.eeworm.com/read/419621/10853460
class des.class
www.eeworm.com/read/274306/10877674
h des.h
#ifndef CRYPTOPP_DES_H
#define CRYPTOPP_DES_H
#include "cryptlib.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)
class DES : public BlockTransformation
{
public:
DES(const byte *userKey,
www.eeworm.com/read/274306/10877737
cpp des.cpp
// des.cpp - modified by Wei Dai from:
/*
* This is a major rewrite of my old public domain DES code written
* circa 1987, which in turn borrowed heavily from Jim Gillogly's 1977
* public dom
www.eeworm.com/read/274262/10879647
opt des.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
DaveTm { 0,0,0,0,0,0,0,0 }
Target (Sim
www.eeworm.com/read/274262/10879649
c des.c
/*--------------------------------------------------------------------------------
DES.C: DES Algorithm Program from the Book Appliced Cryptography, Bruce Schneier
----------------------------------