Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
178 B

  1. #include <comms.h>
  2. struct strobepkikey {
  3. struct pktbuf privkey;
  4. struct pktbuf pubkey;
  5. };
  6. struct strobepkikey get_key(void);
  7. void get_pubkey(uint8_t pubkey[EC_PUBLIC_BYTES]);