代码搜索:Cipher

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

代码结果 3,792
www.eeworm.com/read/214824/15086775

cpp xt5-12-4.cpp

#include #include using namespace std; int main() {int j; string ch="I will visit China next week."; cout
www.eeworm.com/read/213372/15136270

cpp xt5-12-5.cpp

#include #include using namespace std; int main() {int j; string ch=" "; char *p=&ch[0]; //定义字符指针并使之指向ch的首字符 cout
www.eeworm.com/read/213372/15136278

cpp xt5-12-2.cpp

#include using namespace std; int main() {int j,n; char ch[80]; cout
www.eeworm.com/read/213372/15136282

cpp xt5-12-1.cpp

#include using namespace std; int main() {int j,n; char ch[80],tran[80]; cout
www.eeworm.com/read/213372/15136294

cpp xt5-12-4.cpp

#include #include using namespace std; int main() {int j; string ch="I will visit China next week."; cout
www.eeworm.com/read/209512/15218051

cpp stdafx.cpp

// stdafx.cpp : source file that includes just the standard includes // Cipher.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
www.eeworm.com/read/208890/15233108

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/208890/15233112

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/208890/15233148

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/208890/15233248

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 /