73 lines
1.8 KiB
C
73 lines
1.8 KiB
C
|
/**
|
||
|
* @file sha256.h
|
||
|
* @brief SHA-256 (Secure Hash Algorithm 256)
|
||
|
*
|
||
|
* @section License
|
||
|
*
|
||
|
* Copyright (C) 2010-2014 Oryx Embedded. All rights reserved.
|
||
|
*
|
||
|
* This file is part of CycloneCrypto Open.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License
|
||
|
* as published by the Free Software Foundation; either version 2
|
||
|
* of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software Foundation,
|
||
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*
|
||
|
* @author Oryx Embedded (www.oryx-embedded.com)
|
||
|
* @version 1.5.0
|
||
|
**/
|
||
|
|
||
|
#ifndef _SHA256_H
|
||
|
#define _SHA256_H
|
||
|
|
||
|
//Dependencies
|
||
|
#include "crypto.h"
|
||
|
|
||
|
//SHA-256 block size
|
||
|
#define SHA256_BLOCK_SIZE 64
|
||
|
//SHA-256 digest size
|
||
|
#define SHA256_DIGEST_SIZE 32
|
||
|
//Common interface for hash algorithms
|
||
|
#define SHA256_HASH_ALGO (&sha256HashAlgo)
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @brief SHA-256 algorithm context
|
||
|
**/
|
||
|
|
||
|
typedef struct {
|
||
|
union {
|
||
|
u32 h[8];
|
||
|
u8 digest[32];
|
||
|
};
|
||
|
union {
|
||
|
u32 w[64];
|
||
|
u8 buffer[64];
|
||
|
};
|
||
|
int size;
|
||
|
u64 totalSize;
|
||
|
} Sha256Context;
|
||
|
|
||
|
|
||
|
//SHA-256 related constants
|
||
|
extern const HashAlgo sha256HashAlgo;
|
||
|
|
||
|
//SHA-256 related functions
|
||
|
int sha256Compute(const void *data, int length, u8 *digest);
|
||
|
void sha256Init(Sha256Context *context);
|
||
|
void sha256Update(Sha256Context *context, const void *data, int length);
|
||
|
void sha256Final(Sha256Context *context, u8 *digest);
|
||
|
void sha256ProcessBlock(Sha256Context *context);
|
||
|
|
||
|
#endif
|
||
|
|