123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef OCRYPTO_SC_P256_H
- #define OCRYPTO_SC_P256_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdint.h>
- typedef struct
- {
- uint32_t w[8];
- }
- ocrypto_sc_p256;
- #ifdef __cplusplus
- }
- #endif
- #endif
|