代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/136972/13350309
cpp xt5-12-2.cpp
#include
using namespace std;
int main()
{int j,n;
char ch[80];
cout
www.eeworm.com/read/136972/13350313
cpp xt5-12-1.cpp
#include
using namespace std;
int main()
{int j,n;
char ch[80],tran[80];
cout
www.eeworm.com/read/136972/13350335
cpp xt5-12-4.cpp
#include
#include
using namespace std;
int main()
{int j;
string ch="I will visit China next week.";
cout
www.eeworm.com/read/322360/13381638
h tomcrypt_mac.h
#ifdef LTC_HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, in
www.eeworm.com/read/322360/13381734
h tomcrypt_mac.h
#ifdef LTC_HMAC
typedef struct Hmac_state {
hash_state md;
int hash;
hash_state hashstate;
unsigned char *key;
} hmac_state;
int hmac_init(hmac_state *hmac, in
www.eeworm.com/read/316878/13515269
java keytest.java
package test;
import java.security.Security;
import javax.crypto.spec.SecretKeySpec;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
/**
* Title: 网络信息安全统一管理中心
*
* D
www.eeworm.com/read/315789/13536563
txt chap6-12.txt
// 程序6-12
public class encipher{
static char cipher(int c){
if(Character.isUpperCase(c)){ //处理大写字母
c=c+2;
if(c>'Z') // 处理超出字母范围的情况
c=c-26;
www.eeworm.com/read/306235/13749012
java rsautil.java
import javax.crypto.Cipher;
import java.security.*;
import java.security.spec.RSAPublicKeySpec;
import java.security.spec.RSAPrivateKeySpec;
import java.security.spec.InvalidKeySpecExcepti
www.eeworm.com/read/305307/13773816
cpp scx3_main_unit.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "SCX3_main_unit.h"
#include "TChaosFunctionUnit.h"
#include "TKeyMatrice.
www.eeworm.com/read/304008/13804949
c twofish.c
/***************************************************************************
TWOFISH.C -- C API calls for TWOFISH AES submission
Submitters:
Bruce Schneier, Counterpane Systems
Doug Whitin