代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/238196/13902971
testscript2
#!/bin/bash
i=1
while [ $i -lt 10 ]; do
./gen
j=1
while [ $j -lt 50 ]; do
./ibe key_from_master_shares ben share
echo Run $i.$j:
echo Generating random ptext.old...
dd if=/dev/urandom
www.eeworm.com/read/204211/15343331
h aes.h
/*
---------------------------------------------------------------------------
Copyright (c) 1998-2006, Brian Gladman, Worcester, UK. All rights reserved.
LICENSE TERMS
The free distributi
www.eeworm.com/read/100605/15869700
cpp block.cpp
/* This file is in the public domain */
/*
If defined, make sure decryption actually works (ie is the inverse of the
encryption function). But it makes the benchmarks really slow, because of all
www.eeworm.com/read/100605/15869667
cpp rsa_dec.cpp
/*
Decrypt (and verify) an encrypted RSA private key. Then use that key to decrypt
a message. This program can decrypt messages generated by rsa_enc, and uses the
same key format as that generated by
www.eeworm.com/read/427863/8916040
h twofish.h
#include "types.h"
typedef struct {
u32 s[4][256], w[8], k[32];
} TWOFISH_context;
int twofish_setkey (void *ctx, const byte *key, unsigned int keylen);
void twofish_encrypt (void *ctx, by
www.eeworm.com/read/174925/9568328
v des.v
/*##########################################################################
--
-- --
-- Module : DES.v
www.eeworm.com/read/160163/10562357
c skipjack.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/349941/10780510
h kasumi.h
#ifndef KASUMI_H
#define KASUMI_H
#include "types.h"
/*--------- 16 bit rotate left ------------------------------------------*/
#define ROL16(a,b) (short)((a(16-b)))
void kasumi_d
www.eeworm.com/read/101042/6259001
pod rsa_public_encrypt.pod
=pod
=head1 NAME
RSA_public_encrypt, RSA_private_decrypt - RSA public key cryptography
=head1 SYNOPSIS
#include
int RSA_public_encrypt(int flen, unsigned char *from,
unsigne
www.eeworm.com/read/407324/11420728
h des.h
#ifndef BYTE
#define BYTE unsigned char
#endif
#ifndef byte
#define byte unsigned char
#endif
#ifndef uint8
#define uint8 unsigned char
#endif
#ifndef uint32
#define uint32 unsi