-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from denisstasyev/aes
Add Hash functions, AES
- Loading branch information
Showing
63 changed files
with
1,797 additions
and
441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,5 @@ | |
@extend .alarm; | ||
|
||
background-color: lightpink; | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,29 @@ | ||
export const CIPHER_ALGORITHM = 'cipher_algorithm'; | ||
export const CIPHER_METHOD = 'cipher_algorithm'; | ||
// export const ENCRYPTED_DATA_CODES = 'encrypted_data_codes'; | ||
export const ENCRYPTED_DATA = 'encrypted_data'; | ||
export const ENCRYPTED_DATA_BASE64 = 'encrypted_data_base64'; | ||
export const INITIALIZATION_VECTOR = 'initialization_vector'; | ||
|
||
export const links = [ | ||
export const CHECKSUM_METHOD = 'checksum_algorithm'; | ||
export const CHECKSUM_TEXT = 'checksum_text'; | ||
export const CHECKSUM_VALUE = 'checksum_value'; | ||
|
||
export const HASH_METHOD = 'hash_method'; | ||
export const HASH_VALUE = 'hash_value'; | ||
export const HASH_VALUE_BASE64 = 'hash_value_base64'; | ||
|
||
export const mainLinks = [ | ||
{ title: 'Зашифровать', href: '/encrypt/', isActive: true }, | ||
{ title: 'Расшифровать', href: '/decrypt/', isActive: true }, | ||
{ title: 'Посчитать контрольную сумму', href: '/checksum/', isActive: true }, | ||
{ title: 'Хешировать', href: '/hash/', isActive: false }, | ||
{ title: 'Хешировать', href: '/hash/', isActive: true }, | ||
]; | ||
|
||
export const allLinks = [ | ||
{ title: 'Простое шифрование', href: '/encrypt/basic/', isActive: true }, | ||
{ title: 'Расшифрование простого', href: '/decrypt/basic/', isActive: true }, | ||
{ title: 'Блочное шифрование', href: '/encrypt/block/', isActive: true }, | ||
{ title: 'Расшифрование блочного', href: '/decrypt/block/', isActive: true }, | ||
{ title: 'Контрольная сумма', href: '/checksum/', isActive: true }, | ||
{ title: 'Хеширование', href: '/hash/', isActive: true }, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.