代码搜索:decipher
找到约 111 项符合「decipher」的源代码
代码结果 111
www.eeworm.com/read/112610/15481897
h cipher.h
#ifndef Cipher_h
#define Cipher_h
#include
using namespace std;
class Cipher{
public:
void Encipher(char* mfile,char* cfile);//virtual=0;
void Decipher(char* cfile,char* dfile)
www.eeworm.com/read/145881/12696760
html 266-272.html
Learn Encryption Techniques with BASIC and C++:Polyalphabetic Substitution
www.eeworm.com/read/163604/10152828
txt readme.txt
包含的文件有:
可执行文件:des.exe,
雪崩效应分析文件,
程序文件 :desDlg.cpp 和 des1.h 实现的函数有 CBC(), cipher(), makesubkey(), F(), decipher(),
样本文件:m.txt(明文文件)
c.txt(生成的密文文件)
k.txt(密钥文件)
a.txt(解密的明文文件),
文本文
www.eeworm.com/read/218417/14921575
bak filede.java.bak
//
//
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
public class FileDE extends JFrame
{
private JButton btn_exit,btn_deCipher,btn_enCipher,btn_
www.eeworm.com/read/196983/8037678
c rsa.c
/*****************************************************************************
* *
* --------------------------------- rsa
www.eeworm.com/read/196983/8037746
h cbc.h
/*****************************************************************************
* *
* --------------------------------- cbc
www.eeworm.com/read/375247/9367557
cpp z.cpp
#include
class SubKey{ //定义子密钥为一个类
public:
int key[8][6];
}subkey[16]; //定义子密钥对象数组
class DES{
int encipher_decipher; /
www.eeworm.com/read/451648/7458788
txt 用c语言实现des加密与解密.txt
#include
class SubKey{ //定义子密钥为一个类
public:
int key[8][6];
}subkey[16]; //定义子密钥对象数组
class DES{
int encipher_decipher; //判断加密还是解密
int key_in[8][8]; //用户原始输入的64位二进制数
int key
www.eeworm.com/read/193102/8253419
h blowfish.h
#define MAXKEYBYTES 56 /* 448 bits */
// #define little_endian 1 /* Eg: Intel */
#define big_endian 1 /* Eg: Motorola */
short opensubkeyfile(void);
unsigned lon
www.eeworm.com/read/314474/13566699
gawk nbest-vocab.gawk
#!/usr/local/bin/gawk -f
#
# nbest-vocab --
# extract vocabulary used in nbest lists
#
# usage: nbest-vocab NBEST-FILE ... > VOCAB
#
# $Header: /home/srilm/devel/utils/src/RCS/nbest-vocab.gawk,v 1.2 2