mirror of
https://github.com/Sneed-Group/sidtoday
synced 2024-12-23 11:12:34 -06:00
26 lines
1.2 KiB
Markdown
26 lines
1.2 KiB
Markdown
# SIDtoday Files
|
|
|
|
_SIDtoday_ is the internal newsletter for the NSA's most important division, the Signals Intelligence Directorate. _The Intercept_ released four years' worth of newsletters in batches, starting with 2003, after editorial review.
|
|
|
|
You can read our _SIDtoday_ reporting and browse the documents online [here](https://theintercept.com/snowden-sidtoday).
|
|
|
|
This repository contains _SIDtoday_ articles released by _The Intercept_, in PDF format and organized by year.
|
|
|
|
## Downloading and verifying
|
|
|
|
You can download all of the documents release so far as a zip file [here](https://github.com/firstlookmedia/sidtoday/archive/master.zip).
|
|
|
|
Every commit in this repository is cryptographically signed using PGP. If you'd like to verify the integrity of the documents, you can either use [GitHub's interface](https://github.com/blog/2144-gpg-signature-verification), or you can manually verify the signatures like this:
|
|
|
|
```sh
|
|
# Download the signing keys
|
|
gpg --recv-keys "927F419D7EC82C2F149C1BD1403C2657CD994F73"
|
|
gpg --recv-keys "6C577D0B6ABD6AF3D513EF47A72F3B3D3E45FD67"
|
|
|
|
# Clone the git repository
|
|
git clone https://github.com/firstlookmedia/sidtoday.git
|
|
cd sidtoday
|
|
|
|
# Verify the signatures on each commit
|
|
git log --show-signature
|
|
```
|