From 90efa8ff2e486e6ffbafdb976d22be11e1f8d5c4 Mon Sep 17 00:00:00 2001 From: facundoolano Date: Sat, 17 Jun 2023 18:11:53 -0300 Subject: [PATCH] add salsa paper --- README.md | 2 ++ papers.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index b91efcd..1ad79c5 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ See the [sources](#sources) and [selection criteria](#selection-criteria) below. * A Method for Obtaining Digital Signatures and Public-Key Cryptosystems. [Rivest, Shamir, Adleman (1978)](https://dl.acm.org/doi/pdf/10.1145/359340.359342). * How To Share A Secret. [Shamir (1979)](https://web.mit.edu/6.857/OldStuff/Fall03/ref/Shamir-HowToShareASecret.pdf). * A Digital Signature Based on a Conventional Encryption Function. [Merkle (1987)](https://people.eecs.berkeley.edu/~raluca/cs261-f15/readings/merkle.pdf). + * The Salsa20 family of stream ciphers. [Bernstein (2007)](https://cr.yp.to/snuffle/salsafamily-20071225.pdf). 1. **Time, Clocks, and the Ordering of Events in a Distributed System. [Lamport (1978)](https://lamport.azurewebsites.net/pubs/time-clocks.pdf).** \ @@ -373,6 +374,7 @@ See the [sources](#sources) and [selection criteria](#selection-criteria) below. 1. Why the Internet only just works. [Handley (2006)](http://www0.cs.ucl.ac.uk/staff/m.handley/papers/only-just-works.pdf). 1. Bigtable: A Distributed Storage System for Structured Data. [Chang et al (2006)](https://static.googleusercontent.com/media/research.google.com/en//archive/bigtable-osdi06.pdf). 1. Performance Anti-Patterns. [Smaalders (2006)](https://queue.acm.org/detail.cfm?id=1117403). +1. The Salsa20 family of stream ciphers. [Bernstein (2007)](https://cr.yp.to/snuffle/salsafamily-20071225.pdf). 1. Paxos made live - An Engineering Perspective. [Chandra, Griesemer, Redstone (2007)](https://www.cs.utexas.edu/users/lorenzo/corsi/cs380d/papers/paper2-1.pdf). 1. **Dynamo, Amazon’s Highly Available Key-value store. [DeCandia et al (2007)](https://www.allthingsdistributed.com/files/amazon-dynamo-sosp2007.pdf).** 1. **On Designing and Deploying Internet Scale Services. [Hamilton (2007)](https://s3.amazonaws.com/systemsandpapers/papers/hamilton.pdf).** diff --git a/papers.yml b/papers.yml index 7276f55..010eed1 100644 --- a/papers.yml +++ b/papers.yml @@ -404,6 +404,10 @@ author: Merkle year: 1987 link: https://people.eecs.berkeley.edu/~raluca/cs261-f15/readings/merkle.pdf + - title: The Salsa20 family of stream ciphers + author: Bernstein + year: 2007 + link: https://cr.yp.to/snuffle/salsafamily-20071225.pdf - title: Time, Clocks, and the Ordering of Events in a Distributed System author: Lamport