代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/362546/9993291
cpp des.cpp
//////////////////////////////////////////////////////////////////////////
/*
Provided by 尹文才
Email: batman713@gmail.com
This product is free for use.
*/
///////////////////////////////
www.eeworm.com/read/166801/9997450
h des.h
#define EN0 0 // MODE == encrypt
#define DE1 1 // MODE == decrypt
typedef union {
unsigned long blok[2];
unsigned short word[4];
unsigned char byte[8];
} M68K;
extern void des8(unsigned
www.eeworm.com/read/166801/9997457
cpp des.cpp
#include "stdafx.h"
#include "des.h"
static void scrunch(unsigned char *, unsigned long *);
static void unscrun(unsigned long *, unsigned char *);
static void desfunc(unsigned long *, unsigned l
www.eeworm.com/read/362476/9997564
dsp des.dsp
# Microsoft Developer Studio Project File - Name="DES" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Conso
www.eeworm.com/read/362476/9997565
plg des.plg
Build Log
--------------------Configuration: DES - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1\
www.eeworm.com/read/362476/9997567
opt des.opt
www.eeworm.com/read/362476/9997569
cpp des.cpp
#include "DES.H"
// [IN] lpszKey 加密密钥
// [IN] lpszIv 初始化向量
DesSecurity::DesSecurity(LPTSTR lpszKey, LPTSTR lpszIv)
{
if (lpszKey == NULL || lpszIv == NULL) {
throw
www.eeworm.com/read/362476/9997571
h des.h
class DesSecurity
{
public:
DesSecurity(LPTSTR , LPTSTR );
~DesSecurity(void);
void init(LPTSTR , LPTSTR);
BOOL Decode(LPTSTR , LPBYTE , PINT);
};
www.eeworm.com/read/362476/9997572
dsw des.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "DES"=".\DES.dsp" -
www.eeworm.com/read/362476/9997574