代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/278436/10535853
h kaes.h
//////////////////////////////////////////////////////////////////////
// KAES.h: 实现AES加密的KAES类的头文件.
//原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It)
// 并参考了[小刀人]对上文的翻译.
//改写:ki
www.eeworm.com/read/275831/10793777
rb 05 - strongly encrypting data.rb
require 'rubygems'
require 'ezcrypto'
plaintext = '24.9195N 17.821E'
ezcrypto_key = EzCrypto::Key.with_password 'My secret key', 'salt string'
ezcrypto_ciphertext = ezcrypto_key.encrypt(plaintext)
#
www.eeworm.com/read/418812/10895502
c aes_ipsec.c
/* Implementation of aes_bc.h*/
/* This file has the implementation of AES-CBC and
* AES-CFB to encrypt/decrypt a given file
*/
#include
#include "aes.h"
#include "aes_ipsec.h"
www.eeworm.com/read/271765/10981094
c blowfish.c
#include "mycrypt.h"
#ifdef BLOWFISH
const struct _cipher_descriptor blowfish_desc =
{
"blowfish",
0,
8, 56, 8, 16,
&blowfish_setup,
&blowfish_ecb_encrypt,
&blowfish_ecb_decr
www.eeworm.com/read/271765/10981110
c serpent.c
#include "mycrypt.h"
#ifdef SERPENT
const struct _cipher_descriptor serpent_desc =
{
"serpent",
5,
16, 32, 16, 32,
&serpent_setup,
&serpent_ecb_encrypt,
&serpent_ecb_decrypt,
www.eeworm.com/read/470740/6907582
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/470740/6907597
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/145673/7217927
h kaes.h
//////////////////////////////////////////////////////////////////////
// KAES.h: 实现AES加密的KAES类的头文件.
//原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It)
// 并参考了[小刀人]对上文的翻译.
//改写:ki
www.eeworm.com/read/461327/7229181
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/461327/7229193
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 );