代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/186929/6284963
cpp des.cpp
#include
#include"des.h" //DES算法所需的数据表和函数
void main()
{
bool *MBits = new bool[64];
bool *KBits = new bool[64];
bool *CBits = new bool[64];
char Message[8], Cipher[8];
ch
www.eeworm.com/read/494586/6315294
cs form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace MyCAP
{
p
www.eeworm.com/read/418906/6339563
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/418906/6339570
cpp xt5-12-2.cpp
#include
using namespace std;
int main()
{int j,n;
char ch[80];
cout
www.eeworm.com/read/418906/6339573
cpp xt5-12-1.cpp
#include
using namespace std;
int main()
{int j,n;
char ch[80],tran[80];
cout
www.eeworm.com/read/418906/6339584
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/492302/6421264
h tomcrypt_mac.h
#ifdef HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, int ha
www.eeworm.com/read/492302/6421303
h tomcrypt_mac.h
#ifdef HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, int ha
www.eeworm.com/read/492058/6423713
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/486736/6526202
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, d