代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/280837/10289150
cpp des.cpp
// DES.cpp: implementation of the CDES class.
//
//////////////////////////////////////////////////////////////////////
#include "DES.h"
#include "memory.h"
//////////////////////////////////
www.eeworm.com/read/280837/10289188
cpp des.cpp
// DES.cpp: implementation of the CDES class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "DES.h"
//#include "memory.h"
/////////
www.eeworm.com/read/280837/10289217
h des.h
#ifndef CDES_H_CAESAR__DEF
#define CDES_H_CAESAR__DEF
class CDES
{
public:
CDES();
virtual ~CDES();
//加密解密
enum
{
ENCRYPT = 0, //加密
DECRYPT //解密
};
//DES算法的模式
en
www.eeworm.com/read/280837/10289228
h des.h
#ifndef CDES_H_CAESAR__DEF
#define CDES_H_CAESAR__DEF
#include
class CDES
{
public:
CDES();
virtual ~CDES();
//加密解密
enum
{
ENCRYPT = 0, //加密
DECRYPT //解密
www.eeworm.com/read/162364/10310781
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/162364/10310861
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/354903/10316575
des gameguard.des
www.eeworm.com/read/162283/10319093
cpp des.cpp
// DES.cpp: implementation of the CDES class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "DES.h"
#include "math.h"
#ifdef _DEBUG
www.eeworm.com/read/162283/10319120
h des.h
// DES.h: interface for the CDES class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DES_H__B442BF79_0904_443F_99BC_FDA881A69299__INCLUDED_)
#define
www.eeworm.com/read/425549/10348538
m des.m
function C=DES(M,K)
%% ---------------------------------------------------------------
% 数据加密标准DES算法的Matlab实现
% 输入明文M和密钥K用16进制数表示,字符串格式
%---------------------------------------------------------