代码搜索:Decrypt

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

代码结果 1,475
www.eeworm.com/read/364516/9904643

h des.h

#ifndef CDES_H_CAESAR__DEF #define CDES_H_CAESAR__DEF #include class CDES { public: CDES(); virtual ~CDES(); //加密解密 enum { ENCRYPT = 0, //加密 DECRYPT //解密
www.eeworm.com/read/362040/10021915

c safer.c

/* Timing data for SAFER+ (safer.c) Core timing without I/O endian conversion: 128 bit key: Key Setup: 4278 cycles Encrypt: 1722 cycles = 14.9 mbits/sec Decrypt: 1709 cycles
www.eeworm.com/read/164913/10082278

cpp des.cpp

#define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ typedef struct { unsigned long ek[32]; unsigned long dk[32]; } des_ctx; extern void desk
www.eeworm.com/read/164812/10086871

c test_cbc.c

/* * test_cbc - simple program to run encrypt & decrypt LOKI97 CBC test triples * * written by Lawrie Brown / May 1998 */ #include "loki97.h" /* local func prototypes */ static BYTE *charToBYTE(
www.eeworm.com/read/280837/10289228

h des.h

#ifndef CDES_H_CAESAR__DEF #define CDES_H_CAESAR__DEF #include class CDES { public: CDES(); virtual ~CDES(); //加密解密 enum { ENCRYPT = 0, //加密 DECRYPT //解密
www.eeworm.com/read/354182/10380153

pas encryptit.pas

unit EncryptIt; interface USES Classes; const C1 = 52845; C2 = 22719; function Encrypt(const S: String; Key: Word): String; function Decrypt(const S: String; Key: Word): Stri
www.eeworm.com/read/325825/13182359

pas ucrypt.pas

unit uCrypt; interface const C1 = 52845; C2 = 22719; function Encrypt(const S: string; Key: Word): string; function Decrypt(const S: string; Key: Word): string; implementation fu
www.eeworm.com/read/137620/13308477

c test_cbc.c

/* * test_cbc - simple program to run encrypt & decrypt LOKI97 CBC test triples * * written by Lawrie Brown / May 1998 */ #include "loki97.h" /* local func prototypes */ static BYTE *charToBYTE(
www.eeworm.com/read/100601/6267358

c des.c

/* * des.c * * core source file for DES-150 library * Make key schedule from DES key. * Encrypt/Decrypt one 8-byte block. * * The contents of this file are subject to the Mozilla Public *
www.eeworm.com/read/264761/11302370

c test_cbc.c

/* * test_cbc - simple program to run encrypt & decrypt LOKI97 CBC test triples * * written by Lawrie Brown / May 1998 */ #include "loki97.h" /* local func prototypes */ static BYTE *charToBYTE(