📄 aes.h
字号:
//=============================================================================
// Copyright Atmel Corporation 2003. All Rights Reserved.
//
// File: des.h
// Compiler: IAR Atmel AVR C/EC++ Compiler
// Output Size:
// Based on work by:谽, VU
// Created: 4-Feb-2003 JP (Atmel Finland)
// Modified:
//
// Support Mail: avr@atmel.com
//
// Description: Please refer to Application Note Documentation for more
// information.
//
// For details on DES, please refer to the official FIPS 46-3
// document:
//
// http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf
//
//=============================================================================
#ifndef AES_H
#define AES_H
#include "bootldr.h"
#if KEY_COUNT > 0
extern void aesInit( unsigned char * tempbuf );
extern void aesDecrypt(unsigned char *buffer, unsigned char *chainBlock);
#endif
#endif // AES_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -