Check-in [564db0e896]
Overview
Comment:Added AES symmetrical block cipher test vectors
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | crypto
Files: files | file ages | folders
SHA3-256: 564db0e8968579b97b5462cabb9b5e555d18d48274b6e6364a4a733abc71f882
User & Date: bohagan on 2024-03-29 22:59:21
Other Links: branch diff | manifest | tags
Context
2024-03-30
19:52
Added option to enable and disable PKCS#7 padding check-in: 32f48d257b user: bohagan tags: crypto
2024-03-29
22:59
Added AES symmetrical block cipher test vectors check-in: 564db0e896 user: bohagan tags: crypto
2024-03-15
23:39
Updated make file to correct bugs check-in: 89a6207a57 user: bohagan tags: crypto
Changes

Modified ChangeLog from [7400a29b58] to [03077231f7].








1
2
3
4
5
6
7







2015-05-01  Andreas Kupries  <[email protected]>

	* configure.in: Bump to version 1.6.5.
	* win/makefile.vc:
	* configure: regen with ac-2.59
	* tls.c: Accepted SF TLS [bug/patch #57](https://sourceforge.net/p/tls/bugs/57/).
	* tlsIO.c: Accepted core Tcl patch in [ticket](http://core.tcl.tk/tcl/tktview/0f94f855cafed92d0e174b7d835453a02831b4dd).
>
>
>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
TclTLS 1.7.22
==========

Release Date: Mon Oct 12 15:40:16 CDT 2020

https://tcltls.rkeene.org/

2015-05-01  Andreas Kupries  <[email protected]>

	* configure.in: Bump to version 1.6.5.
	* win/makefile.vc:
	* configure: regen with ac-2.59
	* tls.c: Accepted SF TLS [bug/patch #57](https://sourceforge.net/p/tls/bugs/57/).
	* tlsIO.c: Accepted core Tcl patch in [ticket](http://core.tcl.tk/tcl/tktview/0f94f855cafed92d0e174b7d835453a02831b4dd).

Modified generic/tlsInt.h from [8227615734] to [4bfb80acb5].

33
34
35
36
37
38
39

40
41
42
43
44
45
46
#ifndef CONST86
#   if TCL_MAJOR_VERSION > 8
#	define CONST86 const
#   else
#	define CONST86
#   endif
#endif

/*
 * Backwards compatibility for size type change
 */
#if TCL_MAJOR_VERSION < 9 && TCL_MINOR_VERSION < 7
    #include <limits.h>
    #define TCL_SIZE_MAX INT_MAX








>







33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef CONST86
#   if TCL_MAJOR_VERSION > 8
#	define CONST86 const
#   else
#	define CONST86
#   endif
#endif

/*
 * Backwards compatibility for size type change
 */
#if TCL_MAJOR_VERSION < 9 && TCL_MINOR_VERSION < 7
    #include <limits.h>
    #define TCL_SIZE_MAX INT_MAX

Added tests/test_vectors/Symetric_Block/AES-128-CBC.txt version [c16c5601b6].

Added tests/test_vectors/Symetric_Block/AES-128-CFB.txt version [e8d8dc89e5].

Added tests/test_vectors/Symetric_Block/AES-128-CFB1.txt version [c6b51ac3c8].

Added tests/test_vectors/Symetric_Block/AES-128-CFB8.txt version [79d14825dd].

Added tests/test_vectors/Symetric_Block/AES-128-CTR.txt version [6faf93c35c].

Added tests/test_vectors/Symetric_Block/AES-128-ECB.txt version [e91e6ed844].

Added tests/test_vectors/Symetric_Block/AES-128-OFB.txt version [155de03b8e].

Added tests/test_vectors/Symetric_Block/AES-192-CBC.txt version [b812b68b63].

Added tests/test_vectors/Symetric_Block/AES-192-CFB.txt version [1acbbc1c0b].

Added tests/test_vectors/Symetric_Block/AES-192-CFB1.txt version [9d68d61eee].

Added tests/test_vectors/Symetric_Block/AES-192-CFB8.txt version [9840d50b6f].

Added tests/test_vectors/Symetric_Block/AES-192-CTR.txt version [a5daed1d1f].

Added tests/test_vectors/Symetric_Block/AES-192-ECB.txt version [b00a66e38d].

Added tests/test_vectors/Symetric_Block/AES-192-OFB.txt version [2d880cf856].

Added tests/test_vectors/Symetric_Block/AES-256-CBC.txt version [c9adf3749a].

Added tests/test_vectors/Symetric_Block/AES-256-CFB.txt version [69b28de263].

Added tests/test_vectors/Symetric_Block/AES-256-CFB1.txt version [07f4ee353b].

Added tests/test_vectors/Symetric_Block/AES-256-CFB8.txt version [adb3e7889a].

Added tests/test_vectors/Symetric_Block/AES-256-CTR.txt version [99fea23f29].

Added tests/test_vectors/Symetric_Block/AES-256-ECB.txt version [c13cbab895].

Added tests/test_vectors/Symetric_Block/AES-256-OFB.txt version [9d110b4297].

Added tests/test_vectors/Symetric_Block/all.tcl version [66316a28dd].