]> git.cryptolib.org Git - arm-crypto-lib.git/blobdiff - prf_tls12/prf_tls12.h
switching to dedicated endian switching function
[arm-crypto-lib.git] / prf_tls12 / prf_tls12.h
index 759580d3adaffb7464b442cbf28e060ddf58f383..e312f7e1b68f93594b143546aa8b6284bb862c72 100644 (file)
@@ -21,9 +21,9 @@
 #define PRF_TLS12_H_
 
 #include <stdint.h>
-#include <crypto/hashfunction_descriptor.h>
-#include <crypto/hfal-basic.h>
-#include <crypto/hfal-hmac.h>
+#include "hashfunction_descriptor.h"
+#include "hfal-basic.h"
+#include "hfal-hmac.h"
 
 typedef struct{
        hfhmacgen_ctx_t mainctx;
@@ -43,6 +43,7 @@ uint8_t prf_tls12_init_w_label(prf_tls12_ctx_t* ctx, const hfdesc_t* hash,
 
 void prf_tls12_free(prf_tls12_ctx_t* ctx);
 uint8_t prf_tls12_next(void* dest, prf_tls12_ctx_t* ctx);
+uint8_t prf_tls12_fill(void* dest, uint16_t length_B, prf_tls12_ctx_t* ctx);
 
 
 #endif /* PRF_TLS12_H_ */