代码搜索:Encrypt

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

代码结果 3,742
www.eeworm.com/read/172540/9702808

cs iajaxcryptprovider.cs

using System; namespace AjaxPro { public interface IAjaxCryptProvider { string Encrypt(string json); string Decrypt(string jsoncrypt); IAjaxKeyProvider KeyProvider{set;} string Cli
www.eeworm.com/read/367275/9763096

txt firstmessage.txt

If you can read this, you have successfully decrypted this message. If you're using the ibe command-line executable, you can encrypt messages for other people by typing something like: ibe encrypt A
www.eeworm.com/read/415674/11059042

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/249076/12521761

readme

First up, let me say I don't like writing in assembler. It is not portable, dependant on the particular CPU architecture release and is generally a pig to debug and get right. Having said that, the
www.eeworm.com/read/146831/12608182

h blowfish.h

/* crypto/bf/blowfish.h */ /* Copyright (C) 1995-1997 Eric Young (eay@mincom.oz.au) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@mincom.oz.au)
www.eeworm.com/read/146611/12634912

asp iwo.asp

www.eeworm.com/read/238196/13903001

txt firstmessage.txt

If you can read this, you have successfully decrypted this message. If you're using the ibe command-line executable, you can encrypt messages for other people by typing something like: ibe encrypt A
www.eeworm.com/read/133660/14031243

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/234904/14094247

c c08_16.c

#include #include /*函数声明部分*/ char *encrypt(char *string); char *decrypt(char *string); int main() { char item[80]; /*定义一个字符串*/ char *point; /*定义一个字符指针*/ char *p
www.eeworm.com/read/204211/15343344

txt aes.txt

An AES (Rijndael) Implementation in C/C++ (as specified in FIPS-197) -------------------------------------------------------------------- This code implements AES for both 32 and 64 bit systems