代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/451659/7458672
h encrypt.h
class Encrypt
{
public:
Encrypt();
virtual ~Encrypt();
void Des_Encrypt(char out[8],char in[8],bool subkey[16][48]);
void Des_Decrypt(char out[8],char in[8],bool subkey[16][48]);
void De
www.eeworm.com/read/150726/5689527
cpp main.cpp
#include
#include
#include
#include
#include
void Encrypt(FILE*,FILE*,char*); //加密
void Decrypt(FILE*,FILE*,char*); //解密
void main()
www.eeworm.com/read/258948/6342408
cpp main.cpp
#include
#include
#include
#include
#include
void Encrypt(FILE*,FILE*,char*); //加密
void Decrypt(FILE*,FILE*,char*); //解密
void main()
www.eeworm.com/read/486506/6533710
1 des.1
.TH DES 1 "04 October 1993" "Linux" "Linux Programmer's Manual"
.SH NAME
des - encrypt or decrypt data using Data Encryption Standard
.SH SYNOPSIS
.PP
des -e | -d [ -b ] [ -h ] [ -k
.B key
]
.SH DESCR
www.eeworm.com/read/124271/14582365
pas unit38.pas
unit Unit38;
interface
const
C1 = 52845;
C2 = 22719;
function Encrypt(const S: String; Key: Word): String;
function Decrypt(const S: String; Key: Word): String;
function isMoney(s:strin
www.eeworm.com/read/311998/3676884
h tls_funcs.h
/**
* TLS En/Decrypt Function header
*
* Licensed under a dual GPL/BSD license. (See LICENSE file for more info.)
*
* \file tls_funcs.h
* \Author chris@open1x.org
**/
#ifndef _TLS_FU
www.eeworm.com/read/472556/6870062
c des.c
#include
#include
#include
typedef signed char bool;
static bool SubKey[16][48];
typedef enum {ENCRYPT, DECRYPT}
Operation;
const static char PC1_Table[5
www.eeworm.com/read/472556/6870075
cpp des.cpp
#include
#include
#include
#include
#include
//加解密标记
#define ENCRYPT 1
#define DECRYPT 0
static bool SubKey[16][48];
///////////////////
www.eeworm.com/read/106974/15615740
cpp enigma.cpp
#ifndef _enigma_
#define _enigma_
# include "inout.cpp"
# include "disk.cpp"
void send_to_array_e(char);
void send_to_array_d(char);
void encrypt(char []);
void decrypt(char []);
void encr
www.eeworm.com/read/421642/10719045
def warpdll.def
LIBRARY warpdll
EXPORTS
ThreadEncrypt
ThreadDecrypt
Encrypt
Decrypt
ENC
DEC
Version
IsWeakKey
Gen_S_Box
Init_S_Box
Reset_S_Box
Drop_S_Box
Init_ENC_Subkeys
Init_DEC_Subkeys