代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/290226/8494800
h des.h
//////////////////////////////////////////////////////////////////////////
/*
Provided by 王俊川, Northeastern University (www.neu.edu.cn)
Email: blackdrn@sohu.com
This product is free for use.
www.eeworm.com/read/290226/8494834
h des.h
//////////////////////////////////////////////////////////////////////////
/*
Provided by 王俊川, Northeastern University (www.neu.edu.cn)
Email: blackdrn@sohu.com
This product is free for use.
*/
//
www.eeworm.com/read/286917/8737707
h tea.h
#ifndef TEA_H
#define TEA_H
/*
*for htonl,htonl
*do remember link "ws2_32.lib"
*/
#include
#include "util.h"
class TEA {
public:
TEA(const byte *key, int round = 32, bool i
www.eeworm.com/read/385758/8790806
h tea.h
#ifndef TEA_H
#define TEA_H
/*
*for htonl,htonl
*do remember link "ws2_32.lib"
*/
#include
#include "util.h"
class TEA {
public:
TEA(const byte *key, int round = 32, b
www.eeworm.com/read/381260/9100007
c kaiser1.c
#include
int gcd(int a ,int b) /*求两数的最大公约数,返回值为最大公约数*/
{
int t;
t=a;
while(!((a%t==0)&&(b%t==0))) t--;
return t;
}
int inv(int a) /* 求一个数的模逆元,若返回为0表示该数没有模逆元*/
{
int
www.eeworm.com/read/379847/9174206
h rsa.h
#pragma once
#include "BigInt.h"
class CRsa
{
public:
CRsa();
~CRsa();
void getkeys(CBigInt& n,CBigInt& e,CBigInt& d);
CBigInt encrypt(CBigInt& m,CBigInt& n,CBigInt& e);
CBigInt decrypt(
www.eeworm.com/read/378781/9216419
h zldes.h
//////////////////////////////////////////////////////////////////////////
enum {ENCRYPT,DECRYPT};
//enum bool{false,true}; // if bool is not supported,use this or just replace with char