代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/341287/12095935
v des.v
/////////////////////////////////////////////////////////////////////
//// ////
//// DES
www.eeworm.com/read/230739/14277128
h crypt.h
/*
Copyright (c) 1990-2004 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 2000-Apr-09 or later
(the contents of which are also included in zip.h) for terms of use.
www.eeworm.com/read/222721/14678727
cpp aestst.cpp
/*
-------------------------------------------------------------------------
Copyright (c) 2001, Dr Brian Gladman < >, Worcester, UK.
All rights reserved.
LICENSE TERMS
T
www.eeworm.com/read/215082/15075428
h des.h
enum {ENCRYPT,DECRYPT};
//enum bool{false,true};
//////////////////////////////////////////////////////////////////////////
bool Des_Go(char *Out,char *In,long datalen,const char *Ke
www.eeworm.com/read/158122/5597974
v des.v
/////////////////////////////////////////////////////////////////////
//// ////
//// DES
www.eeworm.com/read/473492/6844935
h wjcdes.h
enum {ENCRYPT,DECRYPT};
bool Des_Go(char *Out,char *In,long datalen,const char *Key,int keylen,bool Type = ENCRYPT);
www.eeworm.com/read/147748/12522568
h des.h
#ifndef DES_H
#define DES_H
#include "DataTrans.h"
#define ENCRYPT 1
#define DECRYPT 2
class DES
{
public:
DES();
virtual ~DES();
void _Des3(char cyyp_decrypt, uchar *PlainText,
www.eeworm.com/read/202043/15390894
h des.h
#ifndef DES_H
#define DES_H
enum {ENCRYPT,DECRYPT};
extern "C" bool __declspec(dllexport) des(char *Out,char *In,long datalen,const char *Key,int keylen,bool Type=ENCRYPT);
#endif
www.eeworm.com/read/101788/15815697
h crypt.h
/*
Copyright (c) 1990-2000 Info-ZIP. All rights reserved.
See the accompanying file LICENSE, version 2000-Apr-09 or later
(the contents of which are also included in zip.h) for terms of use.
www.eeworm.com/read/288992/8587987
h methods.h
#pragma once
enum CIPHER
{
ENCRYPT_METHOD = 0,
DECRYPT_METHOD,
ENCRYPT_EXE
};