代码搜索:SBOX
找到约 905 项符合「SBOX」的源代码
代码结果 905
www.eeworm.com/read/286915/8737756
hpp sbox.hpp
const int Nb = 4 ; // Nb = 分组长度 / 4, 分组长度为128bit
static unsigned long int Sbox[256] = // S盒
{
0x63, 0x7c, 0x77, 0x7B, 0xF2, 0x6B, 0x6F, 0xC5,
0x30, 0x01, 0x67, 0x2B, 0xFE, 0xD7, 0xAB, 0x76,
www.eeworm.com/read/378919/9213023
zip sbox.zip
www.eeworm.com/read/361963/10026386
c sbox.c
/*
* Cisco router simulation platform.
* Copyright (c) 2007 Christophe Fillot (cf@utc.fr)
*
* S-Box: http://bretm.home.comcast.net/hash/10.html
*/
#include
#include
#include
www.eeworm.com/read/361963/10026585
h sbox.h
/*
* Cisco router simulation platform.
* Copyright (c) 2007 Christophe Fillot (cf@utc.fr)
*
* S-box functions.
*/
#ifndef __SBOX_H__
#define __SBOX_H__
#include
#include "utils.h"
www.eeworm.com/read/160031/10578197
v sbox.v
/////////////////////////////////////////////////////////////////////
//// ////
//// SBOX 1
www.eeworm.com/read/274931/10844738
txt sbox.txt
static bit8 S0[] = {
0xef,0xd9,0x5c,0x06,0x7a,0x45,0x3f,0xd4,0xf8,0x94,0x2b,0x31,0x88,0x7d,0x9b,0xa6,
0x69,0x57,0x43,0x74,0xf4,0xa1,0xe7,0x33,0x52,0x8d,0xb2,0xc4,0x5f,0x1c,0x6e,0xcf,
www.eeworm.com/read/461280/7230080
h sbox.h
#ifndef AES_SBOX_H
#define AES_SBOX_H
typedef unsigned char uchar;
uchar Sbox[256] = { // s-box
0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab
www.eeworm.com/read/442412/7653148
m sbox.m
function so=sbox(si)
%功能:模拟si通过s盒处理
%输入: si 一维向量 48位长
%输出: so 一维向量 32位长
sbox1=[14 4 13 1 2 15 11 8 3 10 6 12 5 9 0 7;
0 15 7 4 14 2 13 1 10 6 12 11 9 5 3 8;
4 1 14 8 13 6 2 11 15 12 9 7 3 10 5
www.eeworm.com/read/435256/7794931
class sbox.class
www.eeworm.com/read/435256/7794944
java sbox.java
/*
* * Please Visit us at www.codemiles.com *
* This Program was Developed by www.codemiles.com forums Team
* * Please Don't Remove This Comment *
*/
public cl