代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/153212/6959870
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by DES_Test.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#
www.eeworm.com/read/253570/12214196
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by DES_Test.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#
www.eeworm.com/read/205560/15312265
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by DES_Test.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#
www.eeworm.com/read/112053/15494430
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by DES_Test.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
#
www.eeworm.com/read/430748/8729752
java rsa.java
package rsa;
import java.math.BigInteger;
public class RSA {
public static String RSAES_OAEP_ENCRYPT(BigInteger n,BigInteger e,String M,String L){
int mLen=M.length()/2;
in
www.eeworm.com/read/287029/8731442
asm rc5.asm
;; RC5.ASM -- Implementation of RC5 in MASM
;; (C)opyLeft 2005 by drizz
;; P2 533MHz
;; -----------------------------------------
;; RC5Init: 825 cycles (589 if unrolled)
;; RC5Encrypt:
www.eeworm.com/read/362781/9981005
h rsa_draft.h
// This is a draft version of RSA encryption
// Improved by sanicle,2006.1
// 3mn@3mn.net
#include "vlong.h"
class public_key
{
public:
vlong m,e;
vlong encrypt( const vlong& plain );
www.eeworm.com/read/361436/10051925
h rsa_draft.h
// This is a draft version of RSA encryption
// Improved by sanicle,2006.1
// 3mn@3mn.net
#include "vlong.h"
class public_key
{
public:
vlong m,e;
vlong encrypt( const vlong& plain );
www.eeworm.com/read/361436/10051948
h rsa_draft.h
// This is a draft version of RSA encryption
// Improved by sanicle,2006.1
// 3mn@3mn.net
#include "vlong.h"
class public_key
{
public:
vlong m,e;
vlong encrypt( const vlong& plain );
www.eeworm.com/read/280837/10289217
h des.h
#ifndef CDES_H_CAESAR__DEF
#define CDES_H_CAESAR__DEF
class CDES
{
public:
CDES();
virtual ~CDES();
//加密解密
enum
{
ENCRYPT = 0, //加密
DECRYPT //解密
};
//DES算法的模式
en