Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vector crypto chapter integration. #1271

Merged
merged 4 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 20 additions & 11 deletions src/resources/riscv-spec.bib
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,15 @@ @misc{sail
url = {https://github.com/rems-project/sail}
}

@inproceedings{LSYRR:04,
title={On permutation operations in cipher design},
author={Lee, Ruby B and Shi, ZJ and Yin, Yiqun Lisa and Rivest, Ronald L and Robshaw, Matthew JB},
booktitle={International Conference on Information Technology: Coding and Computing, 2004. Proceedings. ITCC 2004.},
volume={2},
pages={569--577},
year={2004},
organization={IEEE}
}
%
% NIST Specifications and recommendations
% -----------------------------------------------------------------
Expand All @@ -564,15 +573,6 @@ @misc{nist:gcm
year = {2007}
}

@misc{nist:fips:180:4,
author = {{NIST}},
title = {Secure Hash Standard ({SHS})},
howpublished = {Federal Information Processing Standards Publication FIPS 180-4},
url = {https://doi.org/10.6028/NIST.FIPS.180-4},
month = {August},
year = {2015}
}


@misc{nist:fips:186:4,
author = {{NIST}},
Expand All @@ -583,7 +583,6 @@ @misc{nist:fips:186:4
year = {2013}
}


@misc{nist:fips:197,
author = {{NIST}},
title = {{Advanced} {Encryption} {Standard} ({AES})},
Expand All @@ -594,6 +593,16 @@ @misc{nist:fips:197
year = {2001}
}


@misc{nist:fips:180:4,
author = {{NIST}},
title = {Secure Hash Standard ({SHS})},
howpublished = {Federal Information Processing Standards Publication FIPS 180-4},
url = {https://doi.org/10.6028/NIST.FIPS.180-4},
month = {August},
year = {2015}
}

@misc{nist:fips:202,
author = {{NIST}},
title = {{SHA}-3 Standard: Permutation-Based Hash and Extendable-Output Functions},
Expand Down Expand Up @@ -1747,4 +1756,4 @@ @Proceedings{ _WeKaKr:16
url = {http://dl.acm.org/citation.cfm?id=2976749},
isbn = {978-1-4503-4139-4},
year = {2016}
}
}
6 changes: 4 additions & 2 deletions src/riscv-unprivileged.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
:listing-caption: Example
:sectnums:
:toc: left
:toclevels: 4
:toclevels: 5
:source-highlighter: pygments
ifdef::backend-pdf[]
:source-highlighter: rouge
Expand All @@ -55,12 +55,13 @@ endif::[]
:csrname: envcfg

_Contributors to all versions of the spec in alphabetical order (please contact editors to suggest

Derek Atkins, Arvind, Krste Asanović, Rimas Avižienis, Jacob Bachmeyer, Christopher F. Batten,
Allen J. Baum, Alex Bradbury, Scott Beamer, Abel Bernabeu, Alex Bradbury, Scott Beamer, Preston Briggs, Christopher Celio, Chuanhua
Chang, David Chisnall, Paul Clayton, Palmer Dabbelt, L Peter Deutsch, Ken Dockser, Paul Donahue, Aaron Durbin, Roger Espasa,
Greg Favor,
Shaked Flur, Stefan Freudenberger, Marc Gauthier, Andy Glew, Jan Gray, Michael Hamburg, John
Hauser, John Ingalls, David Horner, Bruce Hoult, Bill Huffman, Alexandre Joannou, Olof Johansson, Ben Keller,
Hauser, John Ingalls, David Horner, Bruce Hoult, Bill Huffman, Barna Ibrahim, Alexandre Joannou, Olof Johansson, Ben Keller,
David Kruckemyer, Tariq Kurd, Yunsup Lee, Paul Loewenstein, Daniel Lustig, Yatin Manerkar, Luc Maranget,
Ben Marshall, Yatin Manerkar, Luc Maranget, Margaret Martonosi, Phil McCoy, Nathan Menhorn, Christoph Müllner, Joseph Myers,
Vijayanand Nagarajan, Richard Newell, Rishiyur Nikhil, Jonas Oberhauser,
Expand Down Expand Up @@ -133,6 +134,7 @@ include::zfa.adoc[]
include::ztso-st-ext.adoc[]
//ztso.tex
include::scalar-crypto.adoc[]
include::vector-crypto.adoc[]
include::cmo.adoc[]
include::zawrs.adoc[]
include::zc.adoc[]
Expand Down
Loading