代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/244126/12885228
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/244126/12885236
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/244126/12885331
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/244126/12885612
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
/
www.eeworm.com/read/330474/12887011
py des_dec.py
from M2Crypto import EVP
import cStringIO
def cipher_filter(cipher,inf,outf):
while 1:
buf = inf.read()
if not buf:
break
outf.write(cipher.update(buf))
ou
www.eeworm.com/read/244081/12889533
h blowfish.h
////////////////////////////////////////////////////////////////////////////
///
// Blowfish.h Header File
//
// BLOWFISH ENCRYPTION ALGORITHM
//
// Encryption and Decryption of Byte Str
www.eeworm.com/read/243095/12964366
h blowfish.h
////////////////////////////////////////////////////////////////////////////
///
// Blowfish.h Header File
//
// BLOWFISH ENCRYPTION ALGORITHM
//
// Encryption and Decryption of Byte Str
www.eeworm.com/read/328855/12998061
txt java中常用的加密算法应用.txt
Java中常用的加密算法应用
1. MD5加密,常用于加密用户名密码,当用户验证时。
protected byte[] encrypt(byte[] obj) ...{
try ...{
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(obj);
retu
www.eeworm.com/read/327101/13098610
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/327101/13098623
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 &