代码搜索:Decrypt

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

代码结果 1,475
www.eeworm.com/read/213105/4929805

pas comfunc.pas

unit comFunc; 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:stri
www.eeworm.com/read/413855/2157528

hh des.hh

#ifndef CLICK_IPSECDES_HH #define CLICK_IPSECDES_HH #include #include CLICK_DECLS /* * =c * IPsecDES(DECRYPT/ENCRYPT, KEY [, IGNORE]) * =s Encryption * encrypt
www.eeworm.com/read/258249/4357728

c main.c

/* Encrypt/decrypt command compatible with Sun's "des" command */ #include char iv[8]; /* Initial vector for CBC mode */ int block; main(argc,argv) int argc; char *argv[]; { int c,cnt,enc
www.eeworm.com/read/100036/15460970

man des.man

.TH DES 1 .SH NAME des - encrypt or decrypt data using Data Encryption Standard .SH SYNOPSIS .B des ( .B \-e | .B \-E ) | ( .B \-d | .B \-D ) | ( .B \-\fR[\fPcC\fR][\fPckname\fR]\fP )
www.eeworm.com/read/109906/15545946

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/417726/10979091

h des.h

#ifndef __DES_H #define __DES_H #include int Encrypt(char* data, int len); int Decrypt(char* data, int len); void SetKey(char* key); void endes(char *block); v
www.eeworm.com/read/271765/10981122

c safer+.c

#include "mycrypt.h" #ifdef SAFERP const struct _cipher_descriptor saferp_desc = { "safer+", 4, 16, 32, 16, 8, &saferp_setup, &saferp_ecb_encrypt, &saferp_ecb_decrypt, &s
www.eeworm.com/read/121905/14731093

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/115922/14842254

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/219000/14899547

h dcic16.h

extern "C" { //a example for you to use . int FAR PASCAL _export add_s(int i); //DES algorithm. int FAR PASCAL _export IC_Decrypt( char *key,char *ptrSource, unsigned int msgLen, char *ptrDest);