Skip to content
Snippets Groups Projects
Commit 617dd934 authored by Constantin Papizh's avatar Constantin Papizh
Browse files

...

parent 03b95a26
No related branches found
No related tags found
3 merge requests!251Master,!250Master,!224...
Pipeline #5685 passed with stage
in 14 seconds
...@@ -15,6 +15,10 @@ http://creativecommons.org/publicdomain/zero/1.0/ ...@@ -15,6 +15,10 @@ http://creativecommons.org/publicdomain/zero/1.0/
#include "KeccakSpongeWidth1600.h" #include "KeccakSpongeWidth1600.h"
#include <string.h> #include <string.h>
#ifdef __cplusplus
extern "C" {
#endif
/** Implementation of the SHAKE128 extendable output function (XOF) [FIPS 202]. /** Implementation of the SHAKE128 extendable output function (XOF) [FIPS 202].
* @param output Pointer to the output buffer. * @param output Pointer to the output buffer.
* @param outputByteLen The desired number of output bytes. * @param outputByteLen The desired number of output bytes.
...@@ -74,4 +78,8 @@ int SHA3_384(unsigned char *output, const unsigned char *input, size_t inputByte ...@@ -74,4 +78,8 @@ int SHA3_384(unsigned char *output, const unsigned char *input, size_t inputByte
*/ */
int SHA3_512(unsigned char *output, const unsigned char *input, size_t inputByteLen); int SHA3_512(unsigned char *output, const unsigned char *input, size_t inputByteLen);
#ifdef __cplusplus
}
#endif
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment