代码搜索:Decrypt
找到约 1,475 项符合「Decrypt」的源代码
代码结果 1,475
www.eeworm.com/read/136985/5839824
java encdec.java
/*
* Created on 2004-5-11
*
*/
package com.esimple.service.crypto.cipher;
import javax.crypto.SecretKey;
/**
* @author steven
*
*/
public interface Encdec {
public String encr
www.eeworm.com/read/477401/6734301
cpp hill_cipher_behzad.cpp
#include
#include
//prepared by Behzad Khiavchi ,std#:085050
int mod(int x)
{
while (x > 25)
x = x-26;
return (x);
}
void convert(char a,
www.eeworm.com/read/410879/11266389
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/408174/11402983
h ffdecsa.h
/* FFdecsa -- fast decsa algorithm
*
* Copyright (C) 2003-2004 fatih89r
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Li
www.eeworm.com/read/262243/11597135
h des.h
enum {ENCRYPT,DECRYPT};
//enum bool{false,true}; // if bool is not supported,use this or just replace with char
// and use 1 for true,0 for false;
// Type—ENCRYP
www.eeworm.com/read/157302/11721160
java decryptinputstream.java
import java.io.*;
public class DecryptInputStream extends FilterInputStream
{
public DecryptInputStream(InputStream in)
{
super(in);
}
public byte Decrypt(byte b)
{
int
www.eeworm.com/read/345267/11823437
h des.h
enum {ENCRYPT,DECRYPT};
//enum bool{false,true}; // if bool is not supported,use this or just replace with char
// and use 1 for true,0 for false;
////////////////
www.eeworm.com/read/258591/11852806
java caesar.java
package ende;
public class Caesar {
/**
06 *
07 * Contains two function of encrypt and decrypt of Caesar
08 *
09 * 古典密码学体系中的凯撒密码的加密与解密函数
10 * 仅仅属于算法上的研究
11 *
12 * @author soundofu
13