diff options
Diffstat (limited to 'test/ideatest.c')
-rw-r--r-- | test/ideatest.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/ideatest.c b/test/ideatest.c index ff5e4601f3b3..f6d73d9d783c 100644 --- a/test/ideatest.c +++ b/test/ideatest.c @@ -1,5 +1,5 @@ /* - * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -38,8 +38,9 @@ static const unsigned char cfb_key[16] = { 0xe1, 0xf0, 0xc3, 0xd2, 0xa5, 0xb4, 0x87, 0x96, 0x69, 0x78, 0x4b, 0x5a, 0x2d, 0x3c, 0x0f, 0x1e, }; -static const unsigned char cfb_iv[80] = - { 0x34, 0x12, 0x78, 0x56, 0xab, 0x90, 0xef, 0xcd }; +static const unsigned char cfb_iv[80] = { + 0x34, 0x12, 0x78, 0x56, 0xab, 0x90, 0xef, 0xcd +}; static unsigned char cfb_buf1[40], cfb_buf2[40], cfb_tmp[8]; # define CFB_TEST_SIZE 24 static const unsigned char plain[CFB_TEST_SIZE] = { |