代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/397549/8039082
java paddedblockcipher.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/397549/8039098
java bufferedblockcipher.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/397549/8039218
java crypto.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/296483/8100231
cpp modes.cpp
// modes.cpp - written and placed in the public domain by Wei Dai
//#include "pch.h"
#include "modes.h"
Mode::Mode(BlockTransformation &c, const byte *IV)
: cipher(c),
S(cipher.BlockSize()),
www.eeworm.com/read/296483/8100236
h modes.h
#ifndef MODES_H
#define MODES_H
#include "cryptlib.h"
#include "misc.h"
class Mode
{
protected:
Mode(BlockTransformation &cipher, const byte *IV);
BlockTransformation &cipher;
const int S;
SecB
www.eeworm.com/read/296483/8100256
h rng.h
#ifndef RNG_H
#define RNG_H
#include "cryptlib.h"
//SM:#include "filters.h"
// linear congruential generator
// originally by William S. England
// do not use for cryptographic purposes
class LC_R
www.eeworm.com/read/195831/8127724
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/195831/8127736
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/195831/8127826
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/195831/8128135
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
/