代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/277732/10608199
opt des.opt
www.eeworm.com/read/422757/10612609
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/422757/10612707
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/422576/10629387
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/351567/10639785
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/351567/10639820
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/351220/10672912
dll des.dll
www.eeworm.com/read/351220/10673003
exe des.exe
www.eeworm.com/read/276685/10715246
cpp des.cpp
#include "stdafx.h"
#include "des.h"
#include
#include
#include
#include
static char c0[29] = {57, 49, 41, 33, 25, 17, 9,
1, 58, 50,
www.eeworm.com/read/276685/10715259
h des.h
#ifndef __MYDES__
#define __MYDES__
class DESServer {
public:
CString DecryptString(CString str);
CString EncryptString(CString str);
DESServer(char* key = 0);
virtual ~DESServer() {};