代码搜索:Encrypt

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

代码结果 3,742
www.eeworm.com/read/461320/7229326

h kaes.h

////////////////////////////////////////////////////////////////////// // KAES.h: 实现AES加密的KAES类的头文件. //原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It) // 并参考了[小刀人]对上文的翻译. //改写:ki
www.eeworm.com/read/453141/7425285

c des11.c

#define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ typedef struct { unsigned long ek[32]; unsigned long dk[32]; } des_ctx; extern void deskey(uns
www.eeworm.com/read/451659/7458689

cpp desdlg.cpp

#include "stdafx.h" #include "DES.h" #include "DESDlg.h" #include "Encrypt.h" CDESDlg::CDESDlg(CWnd* pParent /*=NULL*/) : CDialog(CDESDlg::IDD, pParent) { m_hIcon = AfxGetApp()->LoadIcon(ID
www.eeworm.com/read/247007/12692694

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/247007/12692794

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/245805/12780229

c ltc_gcm_test.c

/* Derived from the LibTomCrypt library (authored by Tom St Denis) */ #include #include #include #include "ltc_gcm.h" #define ENCRYPT 0 #define DECRYPT 1
www.eeworm.com/read/244448/12864840

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/244448/12864961

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/326149/13161699

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/323470/13340014

h kaes.h

////////////////////////////////////////////////////////////////////// // KAES.h: 实现AES加密的KAES类的头文件. //原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It) // 并参考了[小刀人]对上文的翻译. //改写:ki