#include <stdint.h>
Go to the source code of this file.
Function Documentation
void av_sha1_final |
( |
struct AVSHA1 * |
context, |
|
|
uint8_t |
digest[20] | |
|
) |
| | |
Finishes hashing and output digest value.
- Parameters:
-
| context | hash function context |
| digest | buffer where output digest value is stored |
- Deprecated:
- use av_sha_final() instead
Definition at line 344 of file sha.c.
void av_sha1_init |
( |
struct AVSHA1 * |
context |
) |
|
Initializes SHA-1 hashing.
- Parameters:
-
| context | pointer to the function context (of size av_sha_size) |
- Deprecated:
- use av_sha_init() instead
Definition at line 334 of file sha.c.
void av_sha1_update |
( |
struct AVSHA1 * |
context, |
|
|
const uint8_t * |
data, |
|
|
unsigned int |
len | |
|
) |
| | |
Updates hash value.
- Parameters:
-
| context | hash function context |
| data | input data to update hash with |
| len | input data length |
- Deprecated:
- use av_sha_update() instead
Definition at line 339 of file sha.c.
Variable Documentation