-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
// Sub-functions that compose a single round of AES. | ||
// | ||
// @copyright Galois Inc. | ||
// @author Nichole Shimanski <[email protected]> | ||
// @editor Brian Huffman | ||
// @author Marcella Hastings <[email protected]> | ||
// www.cryptol.net | ||
module Primitive::Symmetric::Cipher::Block::AES::Round where | ||
|
||
import Common::GF28 as GF28 | ||
|
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,3 +1,10 @@ | ||
// The substitution table (S-box) for AES. | ||
// | ||
// @copyright Galois Inc. | ||
// @author Nichole Shimanski <[email protected]> | ||
// @editor Brian Huffman | ||
// @author Marcella Hastings <[email protected]> | ||
// www.cryptol.net | ||
module Primitive::Symmetric::Cipher::Block::AES::SBox where | ||
|
||
import Common::GF28 as GF28 | ||
|
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,3 +1,9 @@ | ||
// Some useful shared internal types used in AES. | ||
// | ||
// @copyright Galois Inc. | ||
// @author Nichole Shimanski <[email protected]> | ||
// @author Marcella Hastings <[email protected]> | ||
// www.cryptol.net | ||
module Primitive::Symmetric::Cipher::Block::AES::State where | ||
|
||
import Common::GF28 | ||
|