代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/291537/8411091
h rng.h
#ifndef CRYPTOPP_RNG_H
#define CRYPTOPP_RNG_H
#include "cryptlib.h"
#include "filters.h"
NAMESPACE_BEGIN(CryptoPP)
// linear congruential generator
// originally by William S. England
/
www.eeworm.com/read/291186/8436852
txt sll的实现过程.txt
import java.net.*;
import Javax.net.ssl.*;
public class testInstall
{
public static void main(String[] args) throws Exception
{
//实例化一个SSL服务器工长
SSLServerSocketFactory factory =
www.eeworm.com/read/289895/8519278
java aesdecryption.java
package src;
import java.io.*;
import javax.crypto.spec.*;
import javax.crypto.*;
public class AESDecryption {
public static void main(String[] args) {
try {
String afterEncrypt
www.eeworm.com/read/289620/8539337
java jm_java.java
package data;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.io.*;
/**
* Security 提供了一个安全算法类,其中包括对称密码算法和散列算法
*/
public final class Security
www.eeworm.com/read/289586/8541170
java hill.java
public class Hill
{
int[][] encryptKey = {{3,2},{4,3}};
int[][] decodeKey = {{3,-2},{-4,3}};
int rtInt1 = 0;
int rtInt2 = 0;
public String getCipher(String message)
{
int[] msgArray
www.eeworm.com/read/289586/8541172
java vigenere.java
/*
*密钥为 Richard
*结果不区分大小写
*/
public class Vigenere
{
String key = new String("RICHARD");
public String getCipher(String message)
{
int msgArray[] = new ConvertCharToInt().convert(mess
www.eeworm.com/read/289585/8541183
java caesar.java
/*
*凯撒加密算法
*此算法中区分了字母的大小写,并可以保留标点符号
*/
public class Caesar
{
int key = 3;
public String getCipher(String message)//to encrypt
{
char msgChar [] = message.toCharArray();
int len = msg
www.eeworm.com/read/288992/8587848
cpp blowfish.cpp
// _THE BlowFishEnc ENCRYPTION ALGORITHM_
// by Bruce Schneier
// Revised code--3/20/94
// Converted to C++ class 5/96, Jim Conger
// Updated to support FileEncryption Utility by Nir Dremer, 9/02
www.eeworm.com/read/288992/8587850
h blowfish.h
// _THE BlowFishEnc ENCRYPTION ALGORITHM_
// by Bruce Schneier
// Revised code--3/20/94
// Converted to C++ class 5/96, Jim Conger
// Updated to support FileEncryption Utility by Nir Dremer, 9/02
www.eeworm.com/read/288992/8587948
h encryption_i.h
#pragma once
#include
class EncryptionInterface
{
public:
EncryptionInterface(const char *pwd) { strncpy(_encryptionKey, pwd, 99); _encryptionKey[99] = 0; }
virtual ~Encryption