代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/339878/12199314
cpp 移位密码.cpp
#include
void main()
{
char a[50],c[50];
int b[50],d[50];
printf("input cipher code:");
gets(a);
printf("\ncipher code:%s\n",a);
int j=0,i=0;
while(a[j]!='\0')
{
b[j]=(in
www.eeworm.com/read/232520/14193342
c aestest.c
/*
* aestest - program to run AES test data files on specified algorithm
* Customise the ALG name and include file below and link with
* any alg satisfying the AES C-API.
*
* writ
www.eeworm.com/read/232520/14193354
h loki97.h
/*
* loki97.h - header file for the LOKI97 AES candidate block cipher.
*
* LOKI97 was written by Lawrie Brown (ADFA), Josef Pieprzyk, and Jennifer
* Seberry (UOW) in 1997.
*
* Copyrigh
www.eeworm.com/read/130310/14198416
cpp huffman.cpp
#include
#include"coding_decode.h"
const charSize=1000;
void main()
{
char c[30];
cout
www.eeworm.com/read/130292/14198662
java caesar.java
/**
* En-/decryption with the caesar method
*/
public class Caesar extends Cipher {
public Caesar() {}
private String modifyChars(String text, int key) {
StringBuffer result = new Stri
www.eeworm.com/read/127767/14337983
txt e466. encrypting an object with des.txt
This example demonstrates how to encrypt a serializable object.
try {
// Generate a temporary key. In practice, you would save this key.
// See also e464 Encrypting with DES Us
www.eeworm.com/read/121327/14759922
html ciphers.html
DCPcrypt v2: Users Guide - Ciphers
DCPcrypt Cryptographic Component Library v2
www.eeworm.com/read/121314/14760264
txt 答案.txt
#include
#include
typedef struct
{int number, cipher;
}elemtype;
typedef struct SLNode
{elemtype data;
struct SLNode *next;
}SLNodetype;
int InitiateSL(SLNodetype **h)
www.eeworm.com/read/120117/14812505
bas cryption.bas
Attribute VB_Name = "Cryption"
'*****************************************
'****** Stole it off some webpage ********
'*****************************************
Option Explicit
Dim s(0 To 255) A
www.eeworm.com/read/116836/14952142
cpp processing.cpp
#include "stdafx.h"
#include "Processing.h"
#include
#include
#include
#include "../Enc_Blowfish/Blowfish.h"
#include "Security/FileWipe.h"
#include "Files/SelfExtrac