代码搜索:RIJNDAEL
找到约 1,298 项符合「RIJNDAEL」的源代码
代码结果 1,298
www.eeworm.com/read/190997/8435340
h rijndael.h
//Rijndael.h
#ifndef __RIJNDAEL_H__
#define __RIJNDAEL_H__
#include
#include
using namespace std;
//Rijndael (pronounced Reindaal) is a block cipher, designed by
www.eeworm.com/read/190997/8435360
cpp rijndael.cpp
//Rijndael.cpp
#include "stdafx.h"
#include
#include
#include "Rijndael.h"
const int CRijndael::sm_alog[256] =
{
1, 3, 5, 15, 17, 51, 85, 255, 26, 46, 114, 150, 161
www.eeworm.com/read/431199/8701485
dat rijndael.dat
000102030405060708090A0B0C0D0E0F 000102030405060708090A0B0C0D0E0F 0A940BB5416EF045F1C39458C653EA5A
00010203050607080A0B0C0D0F101112 506812A45F08C889B97F5980038B8359 D8F532538289EF7D06B506A4FD5BE9C
www.eeworm.com/read/431199/8702388
cpp rijndael.cpp
// rijndael.cpp - modified by Chris Morgan
// and Wei Dai from Paulo Baretto's Rijndael implementation
// The original code and all modifications are in the public domain.
// use "c
www.eeworm.com/read/431199/8702966
h rijndael.h
#ifndef CRYPTOPP_RIJNDAEL_H
#define CRYPTOPP_RIJNDAEL_H
/** \file
*/
#include "seckey.h"
#include "secblock.h"
NAMESPACE_BEGIN(CryptoPP)
//! _
struct Rijndael_Info : public FixedBlockSize, pub
www.eeworm.com/read/287029/8731446
asm rijndael.asm
; data = 16 (128-bit)
; keylen = 16,24,32 bytes (128,192,256-bit)
; rounds = 10,12,14
; based on rijndael-alg-fst.c v3.0
.686
.model flat,stdcall
option casemap:none
RijndaelInit prot
www.eeworm.com/read/285438/8840882
properties rijndael.properties
## $Id: Rijndael.properties,v 1.1 2001/05/21 02:25:42 jis Exp $
##
## $Log: Rijndael.properties,v $
## Revision 1.1 2001/05/21 02:25:42 jis
## First version
##
## Revision 1.0 1998/04/07 raif
www.eeworm.com/read/427866/8915990
cpp rijndael.cpp
/* Rijndael (AES) for GnuPG
* Copyright (C) 2000, 2001, 2008 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
* GnuPG is free software; you can redistribute it and/or modify
* it
www.eeworm.com/read/427866/8915997
h rijndael.h
#include "types.h"
#define MAXKC (256/32)
#define MAXROUNDS 14
typedef struct {
int ROUNDS; /* key-length-dependent number of rounds */
int decryption_prepared;
www.eeworm.com/read/426906/8992023
c rijndael.c
#include
#include
#include "includes.h"
static const int KEY_SIZE = 16; // 密钥长度为128位
static const int N_ROUND = 11;
static byte plainText[16]; // 明文