source: UsbWattMeter/trunk/wolfssl-3.7.0/wolfssl/openssl/ec25519.h@ 167

Last change on this file since 167 was 167, checked in by coas-nagasima, 8 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
7extern "C" {
8#endif
9
10WOLFSSL_API
11int wolfSSL_EC25519_generate_key(unsigned char *priv, unsigned int *privSz,
12 unsigned char *pub, unsigned int *pubSz);
13
14WOLFSSL_API
15int 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.