代码搜索:Decrypt

找到约 1,475 项符合「Decrypt」的源代码

代码结果 1,475
www.eeworm.com/read/115924/14996543

h des.h

/* des.h - * Headers and defines for des.c */ #define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ typedef struct { unsigned long ek[32]; unsigned long dk[32]; } de
www.eeworm.com/read/115923/14996605

h chaos_des.h

/* des.h - * Headers and defines for des.c */ #define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ typedef struct { unsigned long ek[32]; unsigned long dk[32]; } de
www.eeworm.com/read/443136/1751876

h main.h

typedef struct { u32 Hopping_Code; u32 Serial_Number; u8 ButtonAStatus; }DATA_STRUCT; typedef struct{ u32 SeriaNumber; u32 Decrypt_KeyH;
www.eeworm.com/read/107247/15611367

h des_cipher.h

//#define ID "142725711106681" #ifndef _DES_PUBLIC_H #define _DES_PUBLIC_H #define EN0 0/* MODE== encrypt*/ #define DE1 1/* MODE== decrypt*/ #define MAXKEYSIZE 9 #define MAXTEXTSIZE 9
www.eeworm.com/read/101997/15795486

c cpt.c

/* ** cpt.c -- encrypt or decrypt ASCII or binary files ** ** Copyright 1982 J. E. Hendrix. All rights reserved. */ #include #define NOCCARGC #define MAXKEY 81 #define CTLZ 26 ma
www.eeworm.com/read/376554/9314801

txt des.txt

#include #include #define ENCRYPT 1 #define DECRYPT 0 typedef char bool; // 16 sub keys static bool SubKey[16][48]; // Permuted Choice 1 (PC-1) const static char
www.eeworm.com/read/357758/10201591

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/355379/10272726

cpp crypt.cpp

/** * 加密/解密接口 */ #include "stdafx.h" #include /** * 解密报文 */ void decrypt(unsigned char *data,int len) { register int i; for (i=0; i
www.eeworm.com/read/271765/10981199

c xtea.c

#include "mycrypt.h" #ifdef XTEA const struct _cipher_descriptor xtea_desc = { "xtea", 1, 16, 16, 8, 32, &xtea_setup, &xtea_ecb_encrypt, &xtea_ecb_decrypt, &xtea_test,
www.eeworm.com/read/457889/7316117

m kgramcount.m

% k-gram Counting Program clc; clear all; close all; %% Read the cyphered text from a *.txt file text_input = loadtext('Decrypt_3.txt'); %% Remove the blanks from input text. index = find(text_