代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/262195/11601669
pas descrypt.pas
unit DESCrypt;
interface
uses
SysUtils;
function EnCrypt(aStr: string; acKey: string ): string; //加密字符串-------------------------------
function DeCrypt(aStr: string; acKey: string ): strin
www.eeworm.com/read/156908/11753626
c mraes.c
/*
* Implementation of the NIST Advanced Ecryption Standard
*
* Could/Should be speeded up by assembly patches in time critical loops in
* aes_ecb_encrypt() and aes_ecb_decrypt()
*
* Note
www.eeworm.com/read/341225/12098182
~pas encode.~pas
unit Encode;
interface
function Encrypt(const str: string): string;
function Decrypt(const str: string): string;
implementation
{#### 加密解密}
const
fSeedA = 56789;/// 常量 ,
fSe
www.eeworm.com/read/341225/12098377
pas encode.pas
unit Encode;
interface
function Encrypt(const str: string): string;
function Decrypt(const str: string): string;
implementation
{#### 加密解密}
const
fSeedA = 56789;/// 常量 ,
fS
www.eeworm.com/read/126704/14406214
dfm umain.dfm
object MainFrm: TMainFrm
Left = 245
Top = 156
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'PE Encrypt v1.0 :: Delphi design'
ClientHeight = 190
Clien
www.eeworm.com/read/126704/14406233
dfm umain.dfm
object MainFrm: TMainFrm
Left = 245
Top = 156
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'PE Encrypt v1.0 :: Delphi design'
ClientHeight = 238
Clien
www.eeworm.com/read/205560/15312274
h des.h
#ifndef __DES_H
#define __DES_H
class DES
{
public:
// Encrypt/decrypt the data in "data", according to the "key".
// Caller is responsible for confirming the buffer size of "data"
//
www.eeworm.com/read/250396/4431543
dfm unit1.dfm
object frmMainForm: TfrmMainForm
Left = 269
Top = 201
BorderStyle = bsDialog
Caption = 'Key-based encrypt and sign file demo'
ClientHeight = 274
ClientWidth = 435
Color = clBtnFac
www.eeworm.com/read/238372/4615192
conf basicsmb.smb.conf
[global]
netbios name = BUILDFARM
workgroup = TESTWG
log level = LOGLEVEL
debug timestamp = no
encrypt passwords = yes
server string = Samba %v Build Farm Tests
name resolv
www.eeworm.com/read/201514/5058799
asmx helloworld.asmx
using System.Web.Services;
public class HelloWorld {
[WebMethod]
[EncryptionExtension(Encrypt=EncryptMode.None)]
public string SayHe