update changelog for Debian build
[fw/altos] / debian / patches / aes-fix.patch
1 Description: <short summary of the patch>
2  TODO: Put a short summary on the line above and replace this paragraph
3  with a longer explanation of this change. Complete the meta-information
4  with other relevant fields (see below for details). To make it easier, the
5  information below has been extracted from the changelog. Adjust it or drop
6  it.
7  .
8  altos (1.9.11-2) unstable; urgency=medium
9  .
10    * cherry pick patch from master that increases AES IV buffer to hold
11      maximum AES state, closes: #1022301
12 Author: Bdale Garbee <bdale@gag.com>
13 Bug-Debian: https://bugs.debian.org/1022301
14
15 ---
16 The information above should follow the Patch Tagging Guidelines, please
17 checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
18 are templates for supplementary fields that you might want to add:
19
20 Origin: <vendor|upstream|other>, <url of original patch>
21 Bug: <url in upstream bugtracker>
22 Bug-Debian: https://bugs.debian.org/<bugnumber>
23 Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
24 Forwarded: <no|not-needed|url proving that it has been forwarded>
25 Reviewed-By: <name and email of someone who approved the patch>
26 Last-Update: 2022-10-24
27
28 --- altos-1.9.11.orig/src/aes/ao_aes.c
29 +++ altos-1.9.11/src/aes/ao_aes.c
30 @@ -362,7 +362,7 @@ uint8_t ao_aes_mutex;
31  static word32 key[16/4];
32  static roundkey        rkk;
33  
34 -static word32 iv[16/4];
35 +static word32 iv[32/4];
36  
37  void
38  ao_aes_set_mode(enum ao_aes_mode mode)