Add license headers to cryptography classes

Added SPDX license and copyright headers to AriaCore and HightAlgorithm classes for compliance and documentation. Minor formatting adjustments in AriaAlgorithm and AriaEcbTransform to improve consistency.
This commit is contained in:
Namhyeon Go 2025-07-26 23:19:48 +09:00
parent 0b73fe8b60
commit 5c1ffff822
4 changed files with 13 additions and 4 deletions

View File

@ -3,7 +3,6 @@
' SPDX-FileCopyrightText: 2025 Namhyeon Go <gnh1201@catswords.re.kr>, Catswords OSS And WelsonJS Contributors
' https://github.com/gnh1201/welsonjs
'
Imports System.Security.Cryptography
Public Class AriaAlgorithm

View File

@ -1,4 +1,9 @@
Public Class AriaCore
' AriaCore.cs (WelsonJS.Cryptography)
' SPDX-License-Identifier: MIT
' SPDX-FileCopyrightText: 2025 Namhyeon Go <gnh1201@catswords.re.kr>, Catswords OSS And WelsonJS Contributors
' https://github.com/gnh1201/welsonjs
Public Class AriaCore
Private S(3, 255) As Byte
Private KRK(2, 15) As Byte
Private roundKeyEnc(271) As Byte

View File

@ -2,7 +2,7 @@
' SPDX-License-Identifier: MIT
' SPDX-FileCopyrightText: 2025 Namhyeon Go <gnh1201@catswords.re.kr>, Catswords OSS And WelsonJS Contributors
' https://github.com/gnh1201/welsonjs
'
Imports System.Security.Cryptography
Public Class AriaEcbTransform

View File

@ -1,4 +1,9 @@
Imports System.Security.Cryptography
' HightAlgorithm.cs (WelsonJS.Cryptography)
' SPDX-License-Identifier: MIT
' SPDX-FileCopyrightText: 2025 Namhyeon Go <gnh1201@catswords.re.kr>, Catswords OSS And WelsonJS Contributors
' https://github.com/gnh1201/welsonjs
'
Imports System.Security.Cryptography
Public Class HightAlgorithm
Inherits SymmetricAlgorithm