diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/block_cmd_parser.hpp | 11 | ||||
-rw-r--r-- | utils/block_dumper.hpp | 11 | ||||
-rw-r--r-- | utils/block_input.hpp | 11 | ||||
-rw-r--r-- | utils/data_parsers.hpp | 11 | ||||
-rw-r--r-- | utils/decrypt_block.cpp | 11 | ||||
-rw-r--r-- | utils/decrypt_bmp.cpp | 11 | ||||
-rw-r--r-- | utils/decrypt_file.cpp | 11 | ||||
-rw-r--r-- | utils/encrypt_block.cpp | 11 | ||||
-rw-r--r-- | utils/encrypt_bmp.cpp | 11 | ||||
-rw-r--r-- | utils/encrypt_file.cpp | 11 | ||||
-rw-r--r-- | utils/file_cmd_parser.hpp | 11 |
11 files changed, 44 insertions, 77 deletions
diff --git a/utils/block_cmd_parser.hpp b/utils/block_cmd_parser.hpp index c343152..ef92dce 100644 --- a/utils/block_cmd_parser.hpp +++ b/utils/block_cmd_parser.hpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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. #pragma once diff --git a/utils/block_dumper.hpp b/utils/block_dumper.hpp index d344cda..91ad2c6 100644 --- a/utils/block_dumper.hpp +++ b/utils/block_dumper.hpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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. #pragma once diff --git a/utils/block_input.hpp b/utils/block_input.hpp index d7752e6..0bcabbb 100644 --- a/utils/block_input.hpp +++ b/utils/block_input.hpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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. #pragma once diff --git a/utils/data_parsers.hpp b/utils/data_parsers.hpp index 815a499..a3e3d49 100644 --- a/utils/data_parsers.hpp +++ b/utils/data_parsers.hpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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. #pragma once diff --git a/utils/decrypt_block.cpp b/utils/decrypt_block.cpp index 6cc9c0a..6961a9c 100644 --- a/utils/decrypt_block.cpp +++ b/utils/decrypt_block.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "block_cmd_parser.hpp" #include "block_dumper.hpp" diff --git a/utils/decrypt_bmp.cpp b/utils/decrypt_bmp.cpp index 1e286e6..9032dc2 100644 --- a/utils/decrypt_bmp.cpp +++ b/utils/decrypt_bmp.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "file_cmd_parser.hpp" diff --git a/utils/decrypt_file.cpp b/utils/decrypt_file.cpp index cd955bb..2697338 100644 --- a/utils/decrypt_file.cpp +++ b/utils/decrypt_file.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "file_cmd_parser.hpp" diff --git a/utils/encrypt_block.cpp b/utils/encrypt_block.cpp index da33612..9fa998f 100644 --- a/utils/encrypt_block.cpp +++ b/utils/encrypt_block.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "block_cmd_parser.hpp" #include "block_dumper.hpp" diff --git a/utils/encrypt_bmp.cpp b/utils/encrypt_bmp.cpp index 67ec412..7fdf7f0 100644 --- a/utils/encrypt_bmp.cpp +++ b/utils/encrypt_bmp.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "file_cmd_parser.hpp" diff --git a/utils/encrypt_file.cpp b/utils/encrypt_file.cpp index 4161e92..8741f54 100644 --- a/utils/encrypt_file.cpp +++ b/utils/encrypt_file.cpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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 "file_cmd_parser.hpp" diff --git a/utils/file_cmd_parser.hpp b/utils/file_cmd_parser.hpp index c59e05d..c755c7a 100644 --- a/utils/file_cmd_parser.hpp +++ b/utils/file_cmd_parser.hpp @@ -1,10 +1,7 @@ -/** - * \file - * \author Egor Tensin <Egor.Tensin@gmail.com> - * \date 2015 - * \copyright This file is licensed under the terms of the MIT License. - * See LICENSE.txt for details. - */ +// 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. #pragma once |