代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/353552/10439966
h wy.h
#include
#include
#include
#include
#define ENCRYPT 1
#define DECRYPT 0
//typedef char bool;
// 16 sub keys
static bool SubKey[16][48];
// Perm
www.eeworm.com/read/417223/10999740
cpp test.cpp
#include "test.h"
#include "base64.hpp"
using namespace Test1;
using namespace Base64ENCRYPT;
test::test()
{
fileRead();
/*char inchar[512] = {"
www.eeworm.com/read/465112/6966625
man des.man
.TH DES 1
.SH NAME
des - encrypt or decrypt data using Data Encryption Standard
.SH SYNOPSIS
.B des
(
.B \-e
|
.B \-E
) | (
.B \-d
|
.B \-D
) | (
.B \-\fR[\fPcC\fR][\fPckname\fR]\fP
)
www.eeworm.com/read/468800/6988754
asm des_flash.asm
Name des_flash
$Include (Main.inc)
public des_encrypt_or_decrypt
public erase_sector
public acc_add_dptr
public fill_xram_A
public WriteProcess
prog_eeprom SEGMENT
www.eeworm.com/read/450639/7479803
man des.man
.TH DES 1
.SH NAME
des - encrypt or decrypt data using Data Encryption Standard
.SH SYNOPSIS
.B des
(
.B \-e
|
.B \-E
) | (
.B \-d
|
.B \-D
) | (
.B \-\fR[\fPcC\fR][\fPckname\fR]\fP
)
www.eeworm.com/read/145923/12691280
c client.c
#include
#include
#include
#include
#include
#define PORT 5656
#define MAXDATASIZE 100
int encrypt(char** charb,int
www.eeworm.com/read/330317/12902381
cpp mycrysubstitude.cpp
#include "myCrySubstitude.h"
int Encrypt(unsigned char* str,unsigned char* code)
{
if(str==NULL || code==NULL)
return CRYPT_ERROR;
int str_length = 0;
int i = 0;
while(str[i]!='\0
www.eeworm.com/read/142160/12960104
c main.c
/* Encrypt/decrypt command compatible with Sun's "des" command */
#include
char iv[8]; /* Initial vector for CBC mode */
int block;
main(argc,argv)
int argc;
char *argv[];
{
int c,cnt,enc
www.eeworm.com/read/137620/13308486
c test_cfb1.c
/*
* test_cbc - simple program to run encrypt & decrypt LOKI97 CFB1 test triples
*
* written by Lawrie Brown / May 1998
*/
#include "loki97.h"
/* local func prototypes */
static BYTE *charToBYTE
www.eeworm.com/read/140582/5785464
version
Version 4.04
Fixed a few tests in destest. Also added x86 assember for
des_ncbc_encrypt() which is the standard cbc mode function.
This makes a very very large performace difference.
Ariel Glenn