代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/271765/10981109
c des.c
/* DES code submitted by Dobes Vandermeer */
#include "mycrypt.h"
#ifdef DES
#define EN0 0
#define DE1 1
const struct _cipher_descriptor des_desc =
{
"des",
13,
8, 8, 8, 16,
&des_s
www.eeworm.com/read/271664/10985158
java des.java
package test.des2.tt;
// ----------------------------------------------------------------------------
// $Id: DES.java,v 1.4 2005/10/06 04:24:14 rsdio Exp $
//
// Copyright (C) 2002, 2003 Free S
www.eeworm.com/read/417223/10999734
msp des.msp
[Project]
name=DES
type=0
defaultConfig=0
[Debug]
// compiler
workingDirectory=
arguments=
intermediateFilesDirectory=Debug
outputFilesDirectory=Debug
compilerPreprocessor=
extraCompiler
www.eeworm.com/read/271172/11005001
cpp des.cpp
// DES.cpp: implementation of the DES class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "DESlxp.h"
#include "DES.h"
#ifdef _DEBUG
www.eeworm.com/read/271172/11005015
h des.h
// DES.h: interface for the DES class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DES_H__30E4BD94_DC18_40DA_88E2_7C79D13DF16E__INCLUDED_)
#define
www.eeworm.com/read/271086/11008221
inc des.inc
const
shifts2: array[0..15]of byte=
(0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0);
des_skb: array[0..7,0..63]of dword=(
(
(* for C bits (numbered as per FIPS 46) 1 2 3 4 5 6 *)
$000000
www.eeworm.com/read/416733/11014406
txt des.txt
本DES算法,使用了效率很高的C完成。目前,国内知名企业的POS终端中,单DES算法,均是采用这个函数完成。函数经本站验证过,可以放心使用。
#include "stdafx.h"
int des(unsigned char *source,unsigned char * dest,unsigned char * inkey,
int flg);
www.eeworm.com/read/270803/11025263
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/270803/11025265
c des.c
/*--------------------------------------------------------------------------------
DES.C: DES Algorithm Program from the Book Appliced Cryptography, Bruce Schneier
----------------------------------
www.eeworm.com/read/270803/11025267