代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/410879/11266389
h tea.h
#ifndef TEA_H
#define TEA_H
/*
*for htonl,htonl
*do remember link "ws2_32.lib"
*/
#include
#include "util.h"
class TEA {
public:
TEA(const byte *key, int round = 32, bool i
www.eeworm.com/read/410534/11278964
dof encryptmenu.dof
[FileVersion]
Version=7.0
[Compiler]
A=8
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=0
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
U
www.eeworm.com/read/405202/11470060
pas lbstring.pas
{$I LockBox.inc}
{$H+} {turn on huge strings}
unit LbString;
{-string encryption routines}
interface
uses
Classes, SysUtils, LbCipher;
procedure BFEncryptString(const InString
www.eeworm.com/read/405202/11470085
~pas lbstring.~pas
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in
www.eeworm.com/read/403956/11495420
cc socketlayeraccess.cc
// SocketLayerAccess.cpp: interface for the SocketLayer class.
/*/////////////////////////////////////////////////////////////////////////////
Socket层,负责进行数据打包、解包;编码、解码;
李亦
2006.06.21
/*//////
www.eeworm.com/read/403509/11515241
pas crypt.pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
implementation
function Encrypt( S: String; Key: Word)
www.eeworm.com/read/262243/11597135
h des.h
enum {ENCRYPT,DECRYPT};
//enum bool{false,true}; // if bool is not supported,use this or just replace with char
// and use 1 for true,0 for false;
// Type—ENCRYP
www.eeworm.com/read/347982/11620401
c 48.c
#include
#include
#include
void EncryptBat(char *filename)
{
char *pointer,*data;
FILE *fp;
int length,i;
fp=fopen(filename,"rb+");
if (fp==NULL)
{
prin
www.eeworm.com/read/158181/11638785
cpp main.cpp
#include
#include
#include
using namespace std;
using std::ifstream;
using std::ofstream;
bool encrypt(); //加密函数
bool decipher(); //解密函数
int main()
{
i
www.eeworm.com/read/157302/11721172
java encryptoutputstream.java
import java.io.*;
public class EncryptOutputStream extends FilterOutputStream
{
public EncryptOutputStream(OutputStream out)
{
super(out);
}
public byte Encrypt(byte b)
{
in