代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/445127/1726370
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/109906/15545944
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/106536/15635100
h crypt.h
#pragma once
class CCrypt
{
public:
char* _key;
public:
CCrypt(void);
~CCrypt(void);
void setKey(char key[], int keylength);
INT64 decrypt(char raw[], int rawlength);
INT64 encr
www.eeworm.com/read/100661/15867848
txt readme.txt
-----BEGIN PGP SIGNED MESSAGE-----
To decrypt the documentation, follow these instructions:
1. At the DOS prompt, enter: IDEA3A - IDEA3.TXT
2. Enter key: TinyIDEA
3. Check that the documenta
www.eeworm.com/read/100476/15873513
txt readme.txt
-----BEGIN PGP SIGNED MESSAGE-----
To decrypt the documentation, follow these instructions:
1. At the DOS prompt, enter: IDEA3A - IDEA3.TXT
2. Enter key: TinyIDEA
3. Check that the documenta
www.eeworm.com/read/280837/10289217
h des.h
#ifndef CDES_H_CAESAR__DEF
#define CDES_H_CAESAR__DEF
class CDES
{
public:
CDES();
virtual ~CDES();
//加密解密
enum
{
ENCRYPT = 0, //加密
DECRYPT //解密
};
//DES算法的模式
en
www.eeworm.com/read/421642/10719240
cpp des.cpp
#include "stdafx.h"
#include "stdio.h"
#define EN0 0 /* MODE == encrypt */
#define DE1 1 /* MODE == decrypt */
typedef struct {
unsigned long ek[32]; // encrypt key
un
www.eeworm.com/read/418812/10895502
c aes_ipsec.c
/* Implementation of aes_bc.h*/
/* This file has the implementation of AES-CBC and
* AES-CFB to encrypt/decrypt a given file
*/
#include
#include "aes.h"
#include "aes_ipsec.h"
www.eeworm.com/read/271765/10981110
c serpent.c
#include "mycrypt.h"
#ifdef SERPENT
const struct _cipher_descriptor serpent_desc =
{
"serpent",
5,
16, 32, 16, 32,
&serpent_setup,
&serpent_ecb_encrypt,
&serpent_ecb_decrypt,
www.eeworm.com/read/453141/7425285
c des11.c
#define EN0 0 /* MODE == encrypt */
#define DE1 1 /* MODE == decrypt */
typedef struct { unsigned long ek[32];
unsigned long dk[32];
} des_ctx;
extern void deskey(uns