代码搜索:Encrypt

找到约 3,742 项符合「Encrypt」的源代码

代码结果 3,742
www.eeworm.com/read/179951/9329425

cpp des3.cpp

#include "des3.h" int des3_ecb_encrypt(const unsigned char *pt, unsigned char *ct,const unsigned char *key,int keylen) { _ARGCHK(pt != NULL); _ARGCHK(ct != NULL); _ARGCHK(key != N
www.eeworm.com/read/374126/9420647

cpp 004.cpp

// 004.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "iostream.h" #include "string.h" //移位密码加密 void Encrypt() { int n; int k; char p[100];
www.eeworm.com/read/177805/9431756

txt temp.txt

//私钥加密类 private Cipher cipher; private Key key; private KeyPair keypair; /*public Encrypt() { }*/ /** * 产生一个私钥, * @param alg 加密算法 * @param len 加密长度 * @return 返回也key * @
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/331582/12819837

cpp des3.cpp

#include "des3.h" int des3_ecb_encrypt(const unsigned char *pt, unsigned char *ct,const unsigned char *key,int keylen) { _ARGCHK(pt != NULL); _ARGCHK(ct != NULL); _ARGCHK(key != N
www.eeworm.com/read/308131/13707435

cpp aes.cpp

#include "stdafx.h" #include "AES.h" void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key, const int enc) { assert(in && out && key); assert((AES_
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/119562/14826408

h kaiser.h

#include #include #include #include #include class Kaiser { public: Kaiser(); void encrypt(char R[]); //加密函数 void de
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