代码搜索:twofish
找到约 467 项符合「twofish」的源代码
代码结果 467
www.eeworm.com/read/292026/8382120
c twofish.c
/*
---------------------------------------------------------------------------
Copyright (c) 1999, Dr Brian Gladman, Worcester, UK. All rights reserved.
LICENSE TERMS
The free distributi
www.eeworm.com/read/292026/8382176
h twofish.h
#ifndef TWOFISH_H
#define TWOFISH_H
#if defined(__cplusplus)
extern "C"
{
#endif
#ifndef u4byte
#define u4byte unsigned __int32
#endif
#ifndef u1byte
#define u1byte unsigned char
#endif
www.eeworm.com/read/431199/8702211
h twofish.h
#ifndef CRYPTOPP_TWOFISH_H
#define CRYPTOPP_TWOFISH_H
/** \file
*/
#include "seckey.h"
#include "secblock.h"
NAMESPACE_BEGIN(CryptoPP)
//! _
struct Twofish_Info : public FixedBlockSize, public
www.eeworm.com/read/431199/8702629
cpp twofish.cpp
// twofish.cpp - modified by Wei Dai from Matthew Skala's twofish.c
// The original code and all modifications are in the public domain.
#include "pch.h"
#include "twofish.h"
#include "misc.h"
NAMES
www.eeworm.com/read/287119/8719907
c twofish.c
/***************************************************************************
* File: bc_tfish.c
*
* Purpose: The TWOFISH algorithm implementation.
*
* Twofish algorithm's authors:
* Br
www.eeworm.com/read/287068/8728227
c twofish.c
/*
---------------------------------------------------------------------------
Copyright (c) 1999, Dr Brian Gladman, Worcester, UK. All rights reserved.
LICENSE TERMS
The free distributi
www.eeworm.com/read/287068/8728297
h twofish.h
#ifndef TWOFISH_H
#define TWOFISH_H
#if defined(__cplusplus)
extern "C"
{
#endif
#ifndef u4byte
#define u4byte unsigned __int32
#endif
#ifndef u1byte
#define u1byte unsigned char
#endif
www.eeworm.com/read/287029/8731454
asm twofish.asm
; block 16 bytes
; keylen 16,24,32 bytes
.686
.model flat,stdcall
option casemap:none
TwofishInit PROTO :DWORD,:DWORD
TwofishEncrypt PROTO :DWORD,:DWORD
TwofishDecrypt PROTO :DWORD,:DWO
www.eeworm.com/read/427863/8916040
h twofish.h
#include "types.h"
typedef struct {
u32 s[4][256], w[8], k[32];
} TWOFISH_context;
int twofish_setkey (void *ctx, const byte *key, unsigned int keylen);
void twofish_encrypt (void *ctx, by
www.eeworm.com/read/427863/8916054
cpp twofish.cpp
/* Twofish for GPG
* By Matthew Skala , July 26, 1998
* 256-bit key length added March 20, 1999
* Some modifications to reduce the text size by Werner Koch, April, 1998
*