A simple library to support serving https.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Wed Sep 11 07:24:21 2019 +0000
Revision:
9:f354b4859b0b
Got application data to be returned but not encrypted yet

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 9:f354b4859b0b 1 extern void PrfHmacSha256(uint8_t* secret, int secretLength,
andrewboyson 9:f354b4859b0b 2 uint8_t* seed, int seedLength,
andrewboyson 9:f354b4859b0b 3 int number, uint8_t* output); //output needs to hold number * 32 bytes
andrewboyson 9:f354b4859b0b 4
andrewboyson 9:f354b4859b0b 5
andrewboyson 9:f354b4859b0b 6 extern void PrfHmacSha256Test(void);