diff options
Diffstat (limited to 'src/c')
-rw-r--r-- | src/c/aes128.c | 10 | ||||
-rw-r--r-- | src/c/aes192.c | 10 | ||||
-rw-r--r-- | src/c/aes256.c | 10 |
3 files changed, 18 insertions, 12 deletions
diff --git a/src/c/aes128.c b/src/c/aes128.c index 0653889..a1bad40 100644 --- a/src/c/aes128.c +++ b/src/c/aes128.c @@ -1,7 +1,9 @@ -// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "AES tools" project. -// For details, see https://github.com/egor-tensin/aes-tools. -// Distributed under the MIT License. +/* + * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "AES tools" project. + * For details, see https://github.com/egor-tensin/aes-tools. + * Distributed under the MIT License. + */ #include <aes/all.h> diff --git a/src/c/aes192.c b/src/c/aes192.c index 02fbf94..d661b78 100644 --- a/src/c/aes192.c +++ b/src/c/aes192.c @@ -1,7 +1,9 @@ -// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "AES tools" project. -// For details, see https://github.com/egor-tensin/aes-tools. -// Distributed under the MIT License. +/* + * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "AES tools" project. + * For details, see https://github.com/egor-tensin/aes-tools. + * Distributed under the MIT License. + */ #include <aes/all.h> diff --git a/src/c/aes256.c b/src/c/aes256.c index 804a393..2190322 100644 --- a/src/c/aes256.c +++ b/src/c/aes256.c @@ -1,7 +1,9 @@ -// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "AES tools" project. -// For details, see https://github.com/egor-tensin/aes-tools. -// Distributed under the MIT License. +/* + * Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> + * This file is part of the "AES tools" project. + * For details, see https://github.com/egor-tensin/aes-tools. + * Distributed under the MIT License. + */ #include <aes/all.h> |