代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/452713/7434421
cpp xt5-12-1.cpp
#include
using namespace std;
int main()
{int j,n;
char ch[80],tran[80];
cout
www.eeworm.com/read/452713/7434432
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/446236/7583297
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/446236/7583301
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/446236/7583338
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/446236/7583440
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/444173/7617264
java threedes.java
/*
*北京联通全网有关网上订购和点播接口URL加密算法
*
*采用3DES加密, ECB模式/使用PKCS7方式填充不足位,
*目前给的密钥是192位(24个字节)经过BASE64编码后的可见字符串
*
*作者:xuchean@gmail.com
*/
import java.net.*;
import sun.misc.*;
import java.sec
www.eeworm.com/read/439558/7706065
txt 利用des加密算法保护java源代码.txt
摘 要:本文首先分析了Java源代码需要加密的原因,简要介绍了DES算法及Java密码体系和Java密码扩展,最后说明了利用DES加密算法保护Java源代码的方法及步骤。
关键词 Java 加密 DES算法
Java语言是一种非常适用于网络编程的语言,它的基本结构与C++极为相似,但抛弃了C/C++中指针等内容,同时它吸收了Smalltalk、C++面向对象的编程思想。它具有简单性 ...
www.eeworm.com/read/439363/7711568
cpp hmac_encryptor.cpp
#include "hmac_encryptor.h"
#include "md5.h"
using namespace std;
namespace cppcms {
namespace hmac {
cipher::cipher(string key) :
encryptor(key)
{
}
void cipher::hash(unsigned char const *data,s
www.eeworm.com/read/437246/7752940
h rng.h
// rng.h - misc RNG related classes, see also osrng.h, randpool.h
#ifndef CRYPTOPP_RNG_H
#define CRYPTOPP_RNG_H
#include "cryptlib.h"
#include "filters.h"
NAMESPACE_BEGIN(CryptoPP)
//! l