1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/keyutils/hotfix-gcc4.patch.avr32
3 # Copyright (C) 2024 The T2 SDE Project
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
8 # This patch file is dual-licensed. It is available under the license the
9 # patched project is licensed under, as long as it is an OpenSource license
10 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
11 # of the GNU General Public License version 2 as used by the T2 SDE.
12 # --- T2-COPYRIGHT-NOTE-END ---
14 --- keyutils-1.6.3/keyutils.h.vanilla 2024-02-06 15:37:41.350515927 +0100
15 +++ keyutils-1.6.3/keyutils.h 2024-02-06 15:42:25.691538644 +0100
17 struct keyctl_pkey_params {
18 key_serial_t key_id; /* Serial no. of public key to use */
19 unsigned int in_len; /* Input data size */
22 unsigned int out_len; /* Output buffer size (encrypt/decrypt/sign) */
23 - unsigned int in2_len; /* Second input data size (verify) */
25 + //unsigned int in2_len; /* Second input data size (verify) */
27 unsigned int __spare[7];
30 --- keyutils-1.6.3/keyutils.c.vanilla 2024-02-06 15:36:28.973510144 +0100
31 +++ keyutils-1.6.3/keyutils.c 2024-02-06 15:42:44.331540133 +0100
33 struct keyctl_pkey_params params = {
40 return keyctl(KEYCTL_PKEY_VERIFY, ¶ms, info, data, sig);