mirror of
https://github.com/sheumann/65816-crypto.git
synced 2024-11-22 07:31:58 +00:00
52 lines
1.7 KiB
C
52 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2017 Stephen Heumann
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
struct sha1_context {
|
|
unsigned long length;
|
|
unsigned long length2;
|
|
unsigned short extra;
|
|
unsigned char reserved1[30];
|
|
unsigned char hash[20];
|
|
unsigned char block[64];
|
|
unsigned char reserved2[16];
|
|
};
|
|
|
|
/*
|
|
* The context structure must be in bank 0, preferably page-aligned.
|
|
*/
|
|
|
|
/*
|
|
* Initialize a SHA-1 context.
|
|
* This must be called before any of the other SHA-1 functions.
|
|
*/
|
|
void sha1_init(struct sha1_context *context);
|
|
|
|
/*
|
|
* Update a SHA-1 context based on the specified data.
|
|
*/
|
|
void sha1_update(struct sha1_context *context, const unsigned char *data, unsigned long length);
|
|
|
|
/*
|
|
* Finish SHA-1 processing and generate the final hash code.
|
|
*/
|
|
void sha1_finalize(struct sha1_context *context);
|
|
|
|
/*
|
|
* Process one 64-byte block through the SHA-1 hashing function.
|
|
* This is a low-level function; users should normally not call this directly.
|
|
*/
|
|
void sha1_processblock(struct sha1_context *context);
|