代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/493408/6402487
h crypto.h
/*
* Context for block cipher.
*/
typedef struct CipherContext {
// rc5 needs 104 bytes
// skipjack needs 32 * 4 = 128 bytes.
uint8_t context[128];
} CipherContext;
/**
www.eeworm.com/read/492302/6421071
c gcm_init.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/485164/6566273
html ciphers.html
DCPcrypt v2: Users Guide - Ciphers
DCPcrypt Cryptographic Component Library v2
www.eeworm.com/read/478051/6718848
cpp sprashdlg.cpp
// sprashDlg.cpp : implementation file
#include "stdafx.h"
#include "sprash.h"
#include "sprashDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__
www.eeworm.com/read/476143/6763591
cpp aes.cpp
// AES.cpp : 定义控制台应用程序的入口点。
//
#include
using namespace std;
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
#define N_ROUND 11
#define NK 4
#define NB 4
#define NR 10
ty
www.eeworm.com/read/264761/11302365
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/264761/11302376
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/157666/11674307
c gcm_init.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar
www.eeworm.com/read/343995/11913785
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/255665/12066599
c gcm_init.c
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The librar