commit | d4e99ed40cd8a043daa8a62cec96ad58e3167570 | [log] [tgz] |
---|---|---|
author | Paul Elliott <paul.elliott@arm.com> | Tue Apr 27 16:34:31 2021 +0100 |
committer | Paul Elliott <paul.elliott@arm.com> | Fri May 14 19:03:26 2021 +0100 |
tree | fb00a6de3d5ac787fa4ba5559b0f47a110930ef0 | |
parent | 4bbe82bdcc606672bda65dc4a3bcd57b2894a185 [diff] [blame] |
Fix mistyped buffer size variable Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/include/psa/crypto_struct.h b/include/psa/crypto_struct.h index 90a0c20..6c5639d 100644 --- a/include/psa/crypto_struct.h +++ b/include/psa/crypto_struct.h
@@ -183,7 +183,7 @@ size_t ad_length; uint8_t *body_buffer; - uint8_t body_length; + size_t body_length; uint8_t *tag_buffer;