翻訳と辞書
Words near each other
・ Trey Teague
・ Trey Thompkins
・ Trey Told 'Em
・ Trey Traviesa
・ Trey Waltke
・ Trey Watts
・ Trey Whitfield School
・ Trey Williams (American football)
・ Trey Wilson
・ Trey Wingo
・ Trey, Switzerland
・ Treyarch
・ Treyarch NGL
・ Treyarnon
・ Treycovagnes
Treyfer
・ Treyford
・ Treynor ratio
・ Treynor, Iowa
・ Treynor–Black model
・ Treysa
・ Treysa (meteorite)
・ Treysa station
・ Treytorrens
・ Treytorrens (Lavaux)
・ Treyvas
・ Treyvaux
・ Trezaise
・ Treze de Maio
・ Treze Futebol Clube


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Treyfer : ウィキペディア英語版
Treyfer

In cryptography, Treyfer is a block cipher/MAC designed in 1997 by Gideon Yuval. Aimed at smart card applications, the algorithm is extremely simple and compact; it can be implemented in just 29 bytes of 8051 machine code.
Treyfer has a rather small key size and block size of 64 bits each. All operations are byte-oriented, and there is a single 8×8-bit S-box. The S-box is left undefined; the implementation can simply use whatever data is available in memory. In each round, each byte has added to it the S-box value of the sum of a key byte and the previous data byte, then it is rotated left one bit. The design attempts to compensate for the simplicity of this round transformation by using a large number of rounds: 32.
Due to the simplicity of its key schedule, using the same 8 key bytes in each round, Treyfer was one of the first ciphers shown to be susceptible to a slide attack. This cryptanalysis, which is independent of the number of rounds and the choice of S-box, requires 232 known plaintexts and 244 computation time.
==Implementation==
A simple implementation of Treyfer can be done as follows:

#include
#define NUMROUNDS 32
extern uint8_t const Sbox();
void treyfer_encrypt(uint8_t text(), uint8_t const key())


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Treyfer」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.