代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/450639/7479818
c ede_enc.c
/* lib/des/ede_enc.c */
/* Copyright (C) 1995 Eric Young (eay@mincom.oz.au)
* All rights reserved.
*
* This file is part of an SSL implementation written
* by Eric Young (eay@mincom.oz.au).
www.eeworm.com/read/299441/7854724
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
(*
typedef unsigned short int UINT2;
typedef unsigne
www.eeworm.com/read/140309/13088718
h des.h
/*
DES.H - header file for DESC.C
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF 2.0.
All functions prototypes are the Same as for RSAREF.
To aid compati
www.eeworm.com/read/140309/13088828
h des.h
/*
DES.H - header file for DESC.C
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF 2.0.
All functions prototypes are the Same as for RSAREF.
To aid
www.eeworm.com/read/140309/13088905
h des.h
/*
DES.H - header file for DESC.C
Copyright (c) J.S.A.Kapp 1994 - 1996.
RSAEURO - RSA Library compatible with RSAREF 2.0.
All functions prototypes are the Same as for RSAREF.
To aid
www.eeworm.com/read/323119/13351753
result func_crypt.result
drop table if exists t1;
select length(encrypt('foo', 'ff')) 0;
length(encrypt('foo', 'ff')) 0
1
create table t1 (name varchar(50), pw varchar(64));
insert into t1 values ('tom', password('my_pa
www.eeworm.com/read/307396/13723440
c test.c
#include "G__des.c"
int main(void)
{
unsigned char buf[37]="abcdefghijklmnopqrstuvwxyz1234567890";
unsigned char key[8]={"testdes."};
int flag=0;
des_key skey;
if((flag=des_setup(key,8
www.eeworm.com/read/304536/13791694
c lab1_solution.c
/* Computer Security
lab1 --- Explore Vigenere Cipher
File name : lab1_solution.c
Writen by : Jie Hu
Date : August 14, 2004
*/
#include
#include