代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/292191/8367788
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/292191/8367805
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/292191/8367902
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/292191/8368152
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/391928/8372463
java testdes.java
/*
安全程序 DESede/DES测试
*/
import java.security.*;
import javax.crypto.*;
public class testdes {
public static void main(String[] args){
testdes my=new testdes();
my.run();
}
public
www.eeworm.com/read/292026/8381941
c crypto.c
/*
Legal Notice: Some portions of the source code contained in this file were
derived from the source code of Encryption for the Masses 2.02a, which is
Copyright (c) 1998-2000 Paul Le Roux and w
www.eeworm.com/read/391678/8391370
txt chap6-12.txt
// 程序6-12
public class encipher{
static char cipher(int c){
if(Character.isUpperCase(c)){ //处理大写字母
c=c+2;
if(c>'Z') // 处理超出字母范围的情况
c=c-26;
www.eeworm.com/read/291537/8410654
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/291537/8410669
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/291537/8410777
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