代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/199485/7848689
cpp aes1.cpp
#include "aes.h"
//constructor
Caes::Caes()
{
Nk=8;//4 6 8
Nb=4;
Nr=14;//10 12 14
//128bit key for test
//key=2b 7e 15 16 28 ae d2 a6 ab f7 15 88 09 cf 4f 3c
/*
key[0]=0x2b;
key[1]=0
www.eeworm.com/read/199485/7848691
h aes1.h
#define BYTE unsigned char
#define DWORD long unsigned int
#define WORD short unsigned int
class Caes
{
//for test
public:
int Nk,Nb,Nr;
BYTE key[32]; //32=4*Nk(Nk=4,6,8)'s max
DWORD
www.eeworm.com/read/199485/7848693
cpp aes.cpp
// aes.cpp: implementation of the Caes class.
//
//////////////////////////////////////////////////////////////////////
#include "aes.h"
///////////////////////////////////////////////////////
www.eeworm.com/read/434636/7851625
h dmac.h
#ifndef DMAC_DRV_H
#define DMAC_DRV_H
#include "../libs/motolibs.h"
/* Initialize and configure DMAC */
//TODO: lacks documentation
void dmac_config(hword transfer_config, hword clock_config,
www.eeworm.com/read/199392/7861707
cpp funccode.cpp
#include "FuncCode.h"
#include "StdAfx.h"
int HexToBin(char* pHex,BYTE* pBin)//pBin指向的缓存必须不小于64k
{ //pHex指向的缓存必须以0结尾
CString strHex;
CArray* pByteArray=NULL;
CArray
www.eeworm.com/read/299368/7864927
h fx2regs.h
//-----------------------------------------------------------------------------
// File: FX2regs.h
// Contents: EZ-USB FX2 register declarations and bit mask definitions.
//
// $Archive
www.eeworm.com/read/299232/7871576
cpp dib.cpp
// Dib.cpp: implementation of the CDib class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Bmp.h"
#include "Dib.h"
#ifdef _DEBUG
#
www.eeworm.com/read/399177/7883683
h diskio.h
/*-----------------------------------------------------------------------
/ Low level disk interface modlue include file R0.05 (C)ChaN, 2007
/----------------------------------------------------
www.eeworm.com/read/399177/7883731
c monitor.c
#include
#include "monitor.h"
int xatoi (char **str, long *res)
{
DWORD val;
BYTE c, radix, s = 0;
while ((c = **str) == ' ') (*str)++;
if (c == '-') {
s = 1;
c =
www.eeworm.com/read/399177/7883782
h ff.h
/*--------------------------------------------------------------------------/
/ FatFs - FAT file system module include file R0.06 (C)ChaN, 2008
/--------------------------------------------