代码搜索:Cipher

找到约 3,792 项符合「Cipher」的源代码

代码结果 3,792
www.eeworm.com/read/276685/10715404

h encryption_i.h

#pragma once #include class EncryptionInterface { public: EncryptionInterface(const char *pwd) { strncpy(_encryptionKey, pwd, 99); _encryptionKey[99] = 0; } virtual ~Encryption
www.eeworm.com/read/349959/10779927

java rsa.java

/* * RSA.java * * Created on 2007年12月21日, 下午3:53 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ import java.io.BufferedReader; i
www.eeworm.com/read/349959/10779942

java rc4.java

/* * RC4.java * * Created on 2007年12月21日, 下午7:03 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ import java.io.BufferedReader; i
www.eeworm.com/read/349959/10779959

java aes.java

/* * AES.java * * Created on 2007年12月21日, 下午7:01 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ import java.io.BufferedReader; i
www.eeworm.com/read/419324/10874224

pas dcpice.pas

{******************************************************************************} {* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********} {***********************************
www.eeworm.com/read/419324/10874228

pas dcprijndael.pas

{******************************************************************************} {* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********} {***********************************
www.eeworm.com/read/274306/10877300

cpp modes.cpp

// modes.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "modes.h" NAMESPACE_BEGIN(CryptoPP) CipherMode::CipherMode(const BlockTransformation &c, const byt
www.eeworm.com/read/274306/10877316

cpp cbc.cpp

// cbc.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "cbc.h" NAMESPACE_BEGIN(CryptoPP) CBCPaddedEncryptor::CBCPaddedEncryptor(const BlockTransformation &
www.eeworm.com/read/274306/10877444

h modes.h

#ifndef CRYPTOPP_MODES_H #define CRYPTOPP_MODES_H #include "cryptlib.h" #include "misc.h" NAMESPACE_BEGIN(CryptoPP) class CipherMode { protected: CipherMode(const BlockTransformation &c
www.eeworm.com/read/274306/10877757

h rng.h

#ifndef CRYPTOPP_RNG_H #define CRYPTOPP_RNG_H #include "cryptlib.h" #include "filters.h" NAMESPACE_BEGIN(CryptoPP) // linear congruential generator // originally by William S. England /