代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/184393/9106980
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by DES encrypt.rc
//
#define IDR_RT_MANIFEST 1
#define IDM_ABOUTBOX 0x0010
#defin
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/421642/10719081
txt warpreadme.txt
Warp.exe Readme
NOTICE:
Any changes made to an encrypted file will make it corrupted.
Please preserve any previous versions of file "warpdll.dll", unless you didn't encrypt any data with any
www.eeworm.com/read/196590/8073889
java desencrypt.java
package encrypt;
import java.security.Security;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
/**
*
* Title: DES对称算法
* Descripti
www.eeworm.com/read/241364/13150929
sql enc.sql
declare
l_key varchar2(2000) := '1234567890123456';
l_in_val varchar2(2000) := 'ConfidentialData';
l_mod number := dbms_crypto.ENCRYPT_AES128
+ dbms_crypto