blob: 027cf41d67c4cf6176e857c2107213e098e284c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class SHA3 */
#ifndef _Included_SHA3
#define _Included_SHA3
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: SHA3
* Method: initialise
* Signature: (III)V
*/
JNIEXPORT void JNICALL Java_SHA3_initialise
(JNIEnv *, jclass, jint, jint, jint);
/*
* Class: SHA3
* Method: update
* Signature: ([BI)V
*/
JNIEXPORT void JNICALL Java_SHA3_update
(JNIEnv *, jclass, jbyteArray, jint);
/*
* Class: SHA3
* Method: digest
* Signature: ([BI)[B
*/
JNIEXPORT jbyteArray JNICALL Java_SHA3_digest
(JNIEnv *, jclass, jbyteArray, jint);
#ifdef __cplusplus
}
#endif
#endif
|