代码搜索:DES加密
找到约 10,000 项符合「DES加密」的源代码
代码结果 10,000
www.eeworm.com/read/283456/9020419
h des.h
#ifndef _DES_H
#define _DES_H
/*
#ifndef unit8
#define unit8 unsigned char
#endif
#ifndef unit32
#define unit32 unsigned long int
#endif
*/
#ifndef unit32
#define unit32 unsigned int
www.eeworm.com/read/283456/9020421
cpp des.cpp
//des.c
/*
* FIPS-46-3 compliant 3DES implementation
*
* Copyright (C) 2001-2003 Christophe Devine
*
* This program is free software; you can redistribute it and/or modify
* it
www.eeworm.com/read/283128/9041497
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/283128/9041524
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/382184/9043060
dcu des.dcu
www.eeworm.com/read/382184/9043070
pas des.pas
unit DES;
interface
uses
SysUtils;
type
TKeyByte = array[0..5] of Byte;
TDesMode = (dmEncry, dmDESry);
const
BitIP: array[0..63] of Byte =
(57, 49, 41, 33, 25, 17, 9, 1,
www.eeworm.com/read/382184/9043082
~pas des.~pas
unit DES;
interface
uses
SysUtils;
type
TKeyByte = array[0..5] of Byte;
TDesMode = (dmEncry, dmDESry);
const
BitIP: array[0..63] of Byte =
(57, 49, 41, 33, 25, 17, 9, 1,
www.eeworm.com/read/185148/9055575
inc des.inc
;-----------------------------------------------------------------------------
; DESPICable - DES (FIPS PUB 46, ANSI X3.92-1981) for the PIC16Cxx
; Copyright 1994, 1996, 1997, 1998, 1999 Eric L. Smith
www.eeworm.com/read/185072/9058105
h des.h
//程序:DES加密解密雪崩效应分析,差分分析
#include
#include
using namespace std;
typedef bool eletype;
#define ZERO false
#define ONE true;
class Des{
public:
Des(void);
Des(eletyp
www.eeworm.com/read/184725/9082579
h des.h
/* crypto/des/des.h */
/* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@mincom.oz.au).