Last change
on this file since 167 was 167, checked in by coas-nagasima, 7 years ago |
MIMEにSJISを設定
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
-
Property svn:mime-type
set to
text/x-chdr; charset=SHIFT_JIS
|
File size:
591 bytes
|
Line | |
---|
1 | /* ec25519.h */
|
---|
2 |
|
---|
3 | #ifndef WOLFSSL_EC25519_H_
|
---|
4 | #define WOLFSSL_EC25519_H_
|
---|
5 |
|
---|
6 | #ifdef __cplusplus
|
---|
7 | extern "C" {
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | WOLFSSL_API
|
---|
11 | int wolfSSL_EC25519_generate_key(unsigned char *priv, unsigned int *privSz,
|
---|
12 | unsigned char *pub, unsigned int *pubSz);
|
---|
13 |
|
---|
14 | WOLFSSL_API
|
---|
15 | int wolfSSL_EC25519_shared_key(unsigned char *shared, unsigned int *sharedSz,
|
---|
16 | const unsigned char *priv, unsigned int privSz,
|
---|
17 | const unsigned char *pub, unsigned int pubSz);
|
---|
18 |
|
---|
19 | #ifdef __cplusplus
|
---|
20 | } /* extern "C" */
|
---|
21 | #endif
|
---|
22 |
|
---|
23 | #endif /* header */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.