代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/327101/13098766
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/327101/13099125
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/326768/13118536
txt test.txt
Hello, this is PDS commandline group cipher engine. If you have any question, please contact with ChinaPGP research team(http://hi.baidu.com/chinapgp), email:morkpass@hotmail.com
www.eeworm.com/read/324893/13239049
txt 新建 文本文档.txt
public class FileEncryptorRSA {
private static final int ITERATIONS=1000;//计算次数,在加盐中用到
private static byte[] publicKeyBytes;//公钥
private static byte[] privateKeyBytes;//私钥
private static S
www.eeworm.com/read/137620/13308466
c loki97.c
/*
* Implements the LOKI97 block cipher.
*
* LOKI97 is a 128-bit symmetric block cipher with a 256-bit key schedule,
* which may be initialised from 128, 192, or 256-bit keys. It uses 16 rounds
www.eeworm.com/read/137620/13308477
c test_cbc.c
/*
* test_cbc - simple program to run encrypt & decrypt LOKI97 CBC test triples
*
* written by Lawrie Brown / May 1998
*/
#include "loki97.h"
/* local func prototypes */
static BYTE *charToBYTE(
www.eeworm.com/read/137620/13308486
c test_cfb1.c
/*
* test_cbc - simple program to run encrypt & decrypt LOKI97 CFB1 test triples
*
* written by Lawrie Brown / May 1998
*/
#include "loki97.h"
/* local func prototypes */
static BYTE *charToBYTE
www.eeworm.com/read/323819/13315305
h tomcrypt_mac.h
#ifdef LTC_HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, in
www.eeworm.com/read/323819/13315441
h tomcrypt_mac.h
#ifdef LTC_HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, in
www.eeworm.com/read/136972/13350299
cpp xt5-12-5.cpp
#include
#include
using namespace std;
int main()
{int j;
string ch=" ";
char *p=&ch[0]; //定义字符指针并使之指向ch的首字符
cout