代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/122234/14712851
txt 用java编写的密码算法类.txt
用Java编写的密码算法类
(加入日期:2004-12-20 点击数:468)
【对此文发表评论】 【编程爱好者论坛】 【保存文章至硬盘】 【打印文章】
package data;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.io.*;
www.eeworm.com/read/121327/14760010
pas dcpice.pas
{******************************************************************************}
{* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********}
{***********************************
www.eeworm.com/read/121327/14760018
pas dcprijndael.pas
{******************************************************************************}
{* DCPcrypt v2.0 written by David Barton (crypto@cityinthesky.co.uk) **********}
{***********************************
www.eeworm.com/read/121171/14767944
txt 3356705.txt
/*约瑟夫问题的一种描述是:编号为1,2,…,n的n个人按顺时针方向围坐一圈,没人持有一个密码。一开始人选一个正整数作为报数上限值m,从第一个人开始按顺时针自1开始报数,报到m是停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向上的下一个人开始重新从1报数,如此下去,直至所有人全部出列为止。*/
#include
#include
...
www.eeworm.com/read/120244/14809131
txt 约瑟夫报数 vc.txt
#include
#include
#define NULL 0
struct node { int num;
int cipher;
struct node * next;
};// create structure
typedef struct node line;
typedef struct node * l
www.eeworm.com/read/119253/14836012
java a1encryption.java
/**
* @author woexpert@yahoo.com
* @version v0 110100
*/
import au.net.aba.crypto.provider.ABAProvider;
import java.security.Security;
import java.security.Key;
import javax.crypto.Cipher;
www.eeworm.com/read/119112/14838976
txt firstmessage.txt
If you can read this, you have successfully decrypted this message.
If you're using the ibe command-line executable, you can encrypt
messages for other people by typing something like:
ibe encrypt A
www.eeworm.com/read/118373/14874784
txt javaio文本文档.txt
package com.richware.chap13;
import java.io.*;
import java.math.BigInteger;
import java.security.*;
import java.security.interfaces.*;
import java.security.spec.*;
import java.crypto.*;
import
www.eeworm.com/read/118369/14875111
cpp cbc.cpp
// cbc.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "cbc.h"
NAMESPACE_BEGIN(CryptoPP)
CBCPaddedEncryptor::CBCPaddedEncryptor(const BlockTransformation &
www.eeworm.com/read/117483/14918283
java encryptclasses.java
// EncryptClasses.java
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
public class EncryptClasses
{
static public void main( String args[] ) throws Exception