[Cryptech-Commits] [wiki] 36/75: Fix publication dates

git at cryptech.is git at cryptech.is
Fri Oct 8 18:52:02 UTC 2021


This is an automated email from the git hooks/post-receive script.

sra at hactrn.net pushed a commit to branch production
in repository wiki.

commit 88aaae1214226791cb1a862d02319a8470eea7e4
Author: Rob Austein <sra at hactrn.net>
AuthorDate: Sun Feb 14 21:23:06 2021 +0000

    Fix publication dates
---
 extract.py                                     | 18 +++++++++++-------
 pelican/content/ASICImplementations.md         |  2 +-
 pelican/content/AlphaBoard.md                  |  3 ++-
 pelican/content/AlphaBoardComponents.md        |  2 +-
 pelican/content/AlphaBoardPictures.md          |  3 ++-
 pelican/content/AlphaBoardReview.md            |  2 +-
 pelican/content/AlphaBoardStrategy.md          |  2 +-
 pelican/content/AlphaReviewLog.md              |  2 +-
 pelican/content/AlphaSchematics.md             |  2 +-
 pelican/content/AlphaSealedBags.md             |  3 ++-
 pelican/content/AssuredTooChain.md             |  2 +-
 pelican/content/BerlinWorkshop.md              |  2 +-
 pelican/content/BinaryPackages.md              |  3 ++-
 pelican/content/BuildingFromSource.md          |  3 ++-
 pelican/content/ConfigureFPGA.md               |  2 +-
 pelican/content/CoretestHashesC5G.md           |  2 +-
 pelican/content/CoretestHashesNovena.md        |  2 +-
 pelican/content/DNSSEC%2FRequirements.md       |  2 +-
 pelican/content/DNSSEC.md                      |  2 +-
 pelican/content/Dashboard.md                   |  2 +-
 pelican/content/DevBridgeBoard.md              |  3 ++-
 pelican/content/DevelopersGuide.md             |  2 +-
 pelican/content/DisasterRecovery.md            |  2 +-
 pelican/content/DocMeet.md                     |  2 +-
 pelican/content/Documents.md                   |  2 +-
 pelican/content/EDAToolchainSurvey.md          |  2 +-
 pelican/content/ExternalProjects.md            |  3 ++-
 pelican/content/ExternalProjectsTorHSM.md      |  3 ++-
 pelican/content/GettingStartedNovena.md        |  2 +-
 pelican/content/Hardware.md                    |  2 +-
 pelican/content/InterconnectStandards.md       |  2 +-
 pelican/content/Joachim%20Str%C3%B6mbergson.md |  2 +-
 pelican/content/MailingLists.md                |  2 +-
 pelican/content/MiscStuff.md                   |  2 +-
 pelican/content/NoisyDiode.md                  |  2 +-
 pelican/content/OpenCryptoChip.md              |  2 +-
 pelican/content/OpenDNSSEC.md                  |  3 ++-
 pelican/content/PKCS11Proxy.md                 |  2 +-
 pelican/content/PostAlphaPlan.md               |  3 ++-
 pelican/content/PrahaWorkshop.md               |  2 +-
 pelican/content/PrahaWorkshopSSH.md            |  2 +-
 pelican/content/ProjectArchive.md              |  2 +-
 pelican/content/ProjectManagement.md           |  2 +-
 pelican/content/ProjectMetadata.md             |  2 +-
 pelican/content/ProjectStatus.md               |  2 +-
 pelican/content/QuickStart.md                  |  3 ++-
 pelican/content/RandomnessTesting.md           |  2 +-
 pelican/content/RelatedWork.md                 |  2 +-
 pelican/content/ReleaseNotes.md                |  3 ++-
 pelican/content/Requirements.md                |  2 +-
 pelican/content/RoughV1.md                     |  3 ++-
 pelican/content/SecureChannel.md               |  3 ++-
 pelican/content/SideChannel.md                 |  2 +-
 pelican/content/StateOfPlay.md                 |  2 +-
 pelican/content/SunetInitialDevelopment.md     |  2 +-
 pelican/content/TRNGDevelopment.md             |  2 +-
 pelican/content/UpgradeToKSNG.md               |  3 ++-
 pelican/content/Upgrading.md                   |  3 ++-
 pelican/content/UsingSTLink.md                 |  3 ++-
 pelican/content/WhoWeAre.md                    |  2 +-
 pelican/content/WikiStart.md                   |  3 ++-
 61 files changed, 89 insertions(+), 67 deletions(-)

diff --git a/extract.py b/extract.py
index ab77f01..33a49e1 100755
--- a/extract.py
+++ b/extract.py
@@ -40,12 +40,6 @@ attachment_query = '''
     filename, time
 '''
 
-markdown_header = '''\
-Date: {0.isotime}
-Title: {0.name}
-
-'''.format
-
 def attachment_link(row):
     h   = lambda whatever: hashlib.sha1(whatever.encode()).hexdigest()
     h1  = h(row.id)
@@ -79,6 +73,14 @@ class Row(sqlite3.Row):
     def isotime(self):
         return time.strftime("%Y-%m-%d %H:%M", time.gmtime(self.time))
 
+def markdown_header(row, first_published):
+    if row.name in first_published:
+        modtime = "Modified: {}\n".format(row.isotime)
+    else:
+        modtime = ""
+        first_published[row.name] = row.isotime
+    return "Title: {}\nDate: {}\n{}\n".format(row.name, first_published[row.name], modtime)
+
 def main():
 
     for dn in ("wiki", "pelican"):
@@ -91,6 +93,8 @@ def main():
 
     keep = Filter()
 
+    first_published = {}
+
     db = sqlite3.connect("trac.db")
     db.row_factory = Row
 
@@ -100,7 +104,7 @@ def main():
             print(slug, row.version)
             with open("wiki/{}.trac".format(slug), "w") as f:
                 f.write(row.text)
-            md = markdown_header(row) + trac2md.WikiToMD(row.text, slug)
+            md = markdown_header(row, first_published) + trac2md.WikiToMD(row.text, slug)
             with open("pelican/content/{}.md".format(slug), "w") as f:
                 f.write(md)
 
diff --git a/pelican/content/ASICImplementations.md b/pelican/content/ASICImplementations.md
index e8901fd..d362f63 100644
--- a/pelican/content/ASICImplementations.md
+++ b/pelican/content/ASICImplementations.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: ASICImplementations
+Date: 2016-12-15 22:44
 
 # Development of a Cryptech ASIC Implementation
 
diff --git a/pelican/content/AlphaBoard.md b/pelican/content/AlphaBoard.md
index 0fa7237..8240bd8 100644
--- a/pelican/content/AlphaBoard.md
+++ b/pelican/content/AlphaBoard.md
@@ -1,5 +1,6 @@
-Date: 2019-01-22 08:46
 Title: AlphaBoard
+Date: 2016-12-15 22:39
+Modified: 2019-01-22 08:46
 
 # Alpha Board
 
diff --git a/pelican/content/AlphaBoardComponents.md b/pelican/content/AlphaBoardComponents.md
index a307efc..614e416 100644
--- a/pelican/content/AlphaBoardComponents.md
+++ b/pelican/content/AlphaBoardComponents.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: AlphaBoardComponents
+Date: 2016-12-15 22:43
 
 # CrypTech Alpha Board BOM and PCB design requirement sketch
 This document contains a list of component level description and requirements for the Crypteh Alpha board.  
diff --git a/pelican/content/AlphaBoardPictures.md b/pelican/content/AlphaBoardPictures.md
index 377a80b..82cd254 100644
--- a/pelican/content/AlphaBoardPictures.md
+++ b/pelican/content/AlphaBoardPictures.md
@@ -1,5 +1,6 @@
-Date: 2017-05-19 17:49
 Title: AlphaBoardPictures
+Date: 2016-12-15 22:44
+Modified: 2017-05-19 17:49
 
 
 ## High resolution pictures of the Alpha board
diff --git a/pelican/content/AlphaBoardReview.md b/pelican/content/AlphaBoardReview.md
index e6e87bb..2419842 100644
--- a/pelican/content/AlphaBoardReview.md
+++ b/pelican/content/AlphaBoardReview.md
@@ -1,4 +1,4 @@
-Date: 2016-12-15 22:44
 Title: AlphaBoardReview
+Date: 2016-12-15 22:44
 
 ## Alpha board Layout review
diff --git a/pelican/content/AlphaBoardStrategy.md b/pelican/content/AlphaBoardStrategy.md
index 05e3bac..f83d7dd 100644
--- a/pelican/content/AlphaBoardStrategy.md
+++ b/pelican/content/AlphaBoardStrategy.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: AlphaBoardStrategy
+Date: 2016-12-15 22:43
 
 # The Cryptech Alpha Board
 
diff --git a/pelican/content/AlphaReviewLog.md b/pelican/content/AlphaReviewLog.md
index d25ccd0..bb671b3 100644
--- a/pelican/content/AlphaReviewLog.md
+++ b/pelican/content/AlphaReviewLog.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: AlphaReviewLog
+Date: 2016-12-15 22:43
 
 # Review feedback of the Alpha schematics
 
diff --git a/pelican/content/AlphaSchematics.md b/pelican/content/AlphaSchematics.md
index 9b8e73b..f1b0ca9 100644
--- a/pelican/content/AlphaSchematics.md
+++ b/pelican/content/AlphaSchematics.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: AlphaSchematics
+Date: 2016-12-15 22:39
 
 The Alpha schematics are almost finished!
 
diff --git a/pelican/content/AlphaSealedBags.md b/pelican/content/AlphaSealedBags.md
index 6c4d4c9..e4ed2bd 100644
--- a/pelican/content/AlphaSealedBags.md
+++ b/pelican/content/AlphaSealedBags.md
@@ -1,5 +1,6 @@
-Date: 2016-12-16 14:12
 Title: AlphaSealedBags
+Date: 2016-12-16 14:09
+Modified: 2016-12-16 14:12
 
 
 ## Chain of custody
diff --git a/pelican/content/AssuredTooChain.md b/pelican/content/AssuredTooChain.md
index 8666e09..060a194 100644
--- a/pelican/content/AssuredTooChain.md
+++ b/pelican/content/AssuredTooChain.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: AssuredTooChain
+Date: 2016-12-15 22:44
 
 # Issues of an Assured Tool-Chain
 
diff --git a/pelican/content/BerlinWorkshop.md b/pelican/content/BerlinWorkshop.md
index 5e80099..ff8ce0b 100644
--- a/pelican/content/BerlinWorkshop.md
+++ b/pelican/content/BerlinWorkshop.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: BerlinWorkshop
+Date: 2016-12-15 22:43
 
 # CRYPTECH Workshop Agenda
 ### 15-16 July 2016
diff --git a/pelican/content/BinaryPackages.md b/pelican/content/BinaryPackages.md
index 4330625..cf2c070 100644
--- a/pelican/content/BinaryPackages.md
+++ b/pelican/content/BinaryPackages.md
@@ -1,5 +1,6 @@
-Date: 2019-09-03 15:23
 Title: BinaryPackages
+Date: 2016-12-15 22:44
+Modified: 2019-09-03 15:23
 
 [[PageOutline]]
 
diff --git a/pelican/content/BuildingFromSource.md b/pelican/content/BuildingFromSource.md
index 8aafb17..cfe29c1 100644
--- a/pelican/content/BuildingFromSource.md
+++ b/pelican/content/BuildingFromSource.md
@@ -1,5 +1,6 @@
-Date: 2017-05-17 21:28
 Title: BuildingFromSource
+Date: 2017-05-13 17:47
+Modified: 2017-05-17 21:28
 
 [[PageOutline]]
 
diff --git a/pelican/content/ConfigureFPGA.md b/pelican/content/ConfigureFPGA.md
index d32d3a3..6048dff 100644
--- a/pelican/content/ConfigureFPGA.md
+++ b/pelican/content/ConfigureFPGA.md
@@ -1,4 +1,4 @@
-Date: 2016-12-15 22:39
 Title: ConfigureFPGA
+Date: 2016-12-15 22:39
 
 *Page Under Development*
diff --git a/pelican/content/CoretestHashesC5G.md b/pelican/content/CoretestHashesC5G.md
index aff2dd2..ff381df 100644
--- a/pelican/content/CoretestHashesC5G.md
+++ b/pelican/content/CoretestHashesC5G.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: CoretestHashesC5G
+Date: 2016-12-15 22:43
 
 # How to start using coretest_hashes on the TerasIC C5G Board
 This is a writeup on how to setup, build and testrun the coretest_hashes
diff --git a/pelican/content/CoretestHashesNovena.md b/pelican/content/CoretestHashesNovena.md
index 86f15e7..dac8435 100644
--- a/pelican/content/CoretestHashesNovena.md
+++ b/pelican/content/CoretestHashesNovena.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: CoretestHashesNovena
+Date: 2016-12-15 22:44
 
 # How to start using coretest_hashes on the Novena PVT1
 
diff --git a/pelican/content/DNSSEC%2FRequirements.md b/pelican/content/DNSSEC%2FRequirements.md
index 178ab5e..435b93a 100644
--- a/pelican/content/DNSSEC%2FRequirements.md
+++ b/pelican/content/DNSSEC%2FRequirements.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: DNSSEC/Requirements
+Date: 2016-12-15 22:44
 
 # DNSSEC Requirements
 
diff --git a/pelican/content/DNSSEC.md b/pelican/content/DNSSEC.md
index 2df98bf..a95f61a 100644
--- a/pelican/content/DNSSEC.md
+++ b/pelican/content/DNSSEC.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: DNSSEC
+Date: 2016-12-15 22:43
 
 # DNSSEC
 
diff --git a/pelican/content/Dashboard.md b/pelican/content/Dashboard.md
index 6382901..dfc6a1b 100644
--- a/pelican/content/Dashboard.md
+++ b/pelican/content/Dashboard.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: Dashboard
+Date: 2016-12-15 22:44
 
 # Project Status Dashboard
 
diff --git a/pelican/content/DevBridgeBoard.md b/pelican/content/DevBridgeBoard.md
index 697d792..fd94f0f 100644
--- a/pelican/content/DevBridgeBoard.md
+++ b/pelican/content/DevBridgeBoard.md
@@ -1,5 +1,6 @@
-Date: 2021-02-14 17:30
 Title: DevBridgeBoard
+Date: 2016-12-15 22:43
+Modified: 2021-02-14 17:30
 
 [[PageOutline]]
 
diff --git a/pelican/content/DevelopersGuide.md b/pelican/content/DevelopersGuide.md
index 85899e3..4a6fb34 100644
--- a/pelican/content/DevelopersGuide.md
+++ b/pelican/content/DevelopersGuide.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: DevelopersGuide
+Date: 2016-12-15 22:39
 
 *Page Under Development*
 
diff --git a/pelican/content/DisasterRecovery.md b/pelican/content/DisasterRecovery.md
index bd4f5e2..277b2ab 100644
--- a/pelican/content/DisasterRecovery.md
+++ b/pelican/content/DisasterRecovery.md
@@ -1,5 +1,5 @@
-Date: 2017-05-13 00:30
 Title: DisasterRecovery
+Date: 2017-05-13 00:30
 
 # Disaster Recovery
 
diff --git a/pelican/content/DocMeet.md b/pelican/content/DocMeet.md
index c6ceff7..41c5f1c 100644
--- a/pelican/content/DocMeet.md
+++ b/pelican/content/DocMeet.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: DocMeet
+Date: 2016-12-15 22:39
 
 # Documents, Meetings, etc.
 
diff --git a/pelican/content/Documents.md b/pelican/content/Documents.md
index 44d0dc1..21589ed 100644
--- a/pelican/content/Documents.md
+++ b/pelican/content/Documents.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: Documents
+Date: 2016-12-15 22:43
 
 # Presentations and Design Documents
 
diff --git a/pelican/content/EDAToolchainSurvey.md b/pelican/content/EDAToolchainSurvey.md
index e17f221..b54355a 100644
--- a/pelican/content/EDAToolchainSurvey.md
+++ b/pelican/content/EDAToolchainSurvey.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: EDAToolchainSurvey
+Date: 2016-12-15 22:43
 
 The major issue is finding tools that allows a designer, user to verify that the RTL source code (in Verilog or VHDL) matches what is generated at the physical level. As part of the project we need to investigate the current status of open tools in the toolchain for implementation and verification of hardware. This includes RTL simulation, synthesis, place & route, netlist verification, timing analysis and configuration file generation and analysis. (This implies that the target is an FP [...]
 
diff --git a/pelican/content/ExternalProjects.md b/pelican/content/ExternalProjects.md
index 47c92a0..a2a790a 100644
--- a/pelican/content/ExternalProjects.md
+++ b/pelican/content/ExternalProjects.md
@@ -1,5 +1,6 @@
-Date: 2018-09-17 10:27
 Title: ExternalProjects
+Date: 2018-09-17 10:12
+Modified: 2018-09-17 10:27
 
 External projects using [CrypTech](https://cryptech.is/) technology.
 
diff --git a/pelican/content/ExternalProjectsTorHSM.md b/pelican/content/ExternalProjectsTorHSM.md
index 1351b46..9e6e0c0 100644
--- a/pelican/content/ExternalProjectsTorHSM.md
+++ b/pelican/content/ExternalProjectsTorHSM.md
@@ -1,5 +1,6 @@
-Date: 2018-10-01 14:38
 Title: ExternalProjectsTorHSM
+Date: 2018-09-17 10:26
+Modified: 2018-10-01 14:38
 
 # External project TorHSM
 
diff --git a/pelican/content/GettingStartedNovena.md b/pelican/content/GettingStartedNovena.md
index 4f71ead..08a0583 100644
--- a/pelican/content/GettingStartedNovena.md
+++ b/pelican/content/GettingStartedNovena.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: GettingStartedNovena
+Date: 2016-12-15 22:44
 
 [[PageOutline]]
 
diff --git a/pelican/content/Hardware.md b/pelican/content/Hardware.md
index c97b272..19c278b 100644
--- a/pelican/content/Hardware.md
+++ b/pelican/content/Hardware.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: Hardware
+Date: 2016-12-15 22:43
 
 # Cryptech Hardware
 
diff --git a/pelican/content/InterconnectStandards.md b/pelican/content/InterconnectStandards.md
index 8961475..b9384a6 100644
--- a/pelican/content/InterconnectStandards.md
+++ b/pelican/content/InterconnectStandards.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: InterconnectStandards
+Date: 2016-12-15 22:44
 
 # Comparison of On-Chip Bus Standards
 
diff --git a/pelican/content/Joachim%20Str%C3%B6mbergson.md b/pelican/content/Joachim%20Str%C3%B6mbergson.md
index eac7775..ccce290 100644
--- a/pelican/content/Joachim%20Str%C3%B6mbergson.md
+++ b/pelican/content/Joachim%20Str%C3%B6mbergson.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:54
 Title: Joachim Strömbergson
+Date: 2016-12-15 22:54
 
 # Joachim Strömbergson
 ## Bio
diff --git a/pelican/content/MailingLists.md b/pelican/content/MailingLists.md
index a2c2307..ca49e2f 100644
--- a/pelican/content/MailingLists.md
+++ b/pelican/content/MailingLists.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: MailingLists
+Date: 2016-12-15 22:39
 
 # Communications
 
diff --git a/pelican/content/MiscStuff.md b/pelican/content/MiscStuff.md
index 76f5767..3ee83d2 100644
--- a/pelican/content/MiscStuff.md
+++ b/pelican/content/MiscStuff.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: MiscStuff
+Date: 2016-12-15 22:39
 
 # References & Miscellaneous
 
diff --git a/pelican/content/NoisyDiode.md b/pelican/content/NoisyDiode.md
index 8090ff9..83c446f 100644
--- a/pelican/content/NoisyDiode.md
+++ b/pelican/content/NoisyDiode.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: NoisyDiode
+Date: 2016-12-15 22:44
 
 
 ## Noisy Diode entropy source
diff --git a/pelican/content/OpenCryptoChip.md b/pelican/content/OpenCryptoChip.md
index 299193a..9591f49 100644
--- a/pelican/content/OpenCryptoChip.md
+++ b/pelican/content/OpenCryptoChip.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: OpenCryptoChip
+Date: 2016-12-15 22:44
 
 [[PageOutline]]
 
diff --git a/pelican/content/OpenDNSSEC.md b/pelican/content/OpenDNSSEC.md
index 9bbfe29..6c27410 100644
--- a/pelican/content/OpenDNSSEC.md
+++ b/pelican/content/OpenDNSSEC.md
@@ -1,5 +1,6 @@
-Date: 2017-05-13 21:34
 Title: OpenDNSSEC
+Date: 2016-12-15 22:43
+Modified: 2017-05-13 21:34
 
 # DNSSEC signing using OpenDNSSEC and a Cryptech alpha board rev03
 
diff --git a/pelican/content/PKCS11Proxy.md b/pelican/content/PKCS11Proxy.md
index 9de7dd7..58dc151 100644
--- a/pelican/content/PKCS11Proxy.md
+++ b/pelican/content/PKCS11Proxy.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: PKCS11Proxy
+Date: 2016-12-15 22:44
 
 The pkcs11-proxy is a way to tunnel PKCS11 over TCP (TLS). This page explains how to build and install PKCS11 proxy on the novena. There are various forks of this on github. We're going to use the SUNET fork since it support TLS-PSK for authentication out of the box. The proxy does not currently support different word length on each side of the tunnel so to use it with the novena platform your PKCS11 client must be 32 bit.
 
diff --git a/pelican/content/PostAlphaPlan.md b/pelican/content/PostAlphaPlan.md
index f238e1c..b90fa91 100644
--- a/pelican/content/PostAlphaPlan.md
+++ b/pelican/content/PostAlphaPlan.md
@@ -1,5 +1,6 @@
-Date: 2017-05-16 14:53
 Title: PostAlphaPlan
+Date: 2016-12-15 22:44
+Modified: 2017-05-16 14:53
 
 
 The core dev team had a design meeting in Berlin after the alpha workshop. We came up with a plan for the hardware and the software work for the next few months:
diff --git a/pelican/content/PrahaWorkshop.md b/pelican/content/PrahaWorkshop.md
index 6217ecb..19611fd 100644
--- a/pelican/content/PrahaWorkshop.md
+++ b/pelican/content/PrahaWorkshop.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: PrahaWorkshop
+Date: 2016-12-15 22:44
 
 [[PageOutline]]
 
diff --git a/pelican/content/PrahaWorkshopSSH.md b/pelican/content/PrahaWorkshopSSH.md
index 18a17d3..38cd059 100644
--- a/pelican/content/PrahaWorkshopSSH.md
+++ b/pelican/content/PrahaWorkshopSSH.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: PrahaWorkshopSSH
+Date: 2016-12-15 22:43
 
 ## The list of all known SSH keys
 
diff --git a/pelican/content/ProjectArchive.md b/pelican/content/ProjectArchive.md
index 424984a..2ceb6d3 100644
--- a/pelican/content/ProjectArchive.md
+++ b/pelican/content/ProjectArchive.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: ProjectArchive
+Date: 2016-12-15 22:44
 
 *Page Under Construction*
 
diff --git a/pelican/content/ProjectManagement.md b/pelican/content/ProjectManagement.md
index b8f468d..9a6c018 100644
--- a/pelican/content/ProjectManagement.md
+++ b/pelican/content/ProjectManagement.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: ProjectManagement
+Date: 2016-12-15 22:44
 
 [[PageOutline]]
 
diff --git a/pelican/content/ProjectMetadata.md b/pelican/content/ProjectMetadata.md
index e741afa..bfc8474 100644
--- a/pelican/content/ProjectMetadata.md
+++ b/pelican/content/ProjectMetadata.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: ProjectMetadata
+Date: 2016-12-15 22:43
 
 
 # Project Metadata
diff --git a/pelican/content/ProjectStatus.md b/pelican/content/ProjectStatus.md
index d58bb46..3e468b8 100644
--- a/pelican/content/ProjectStatus.md
+++ b/pelican/content/ProjectStatus.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: ProjectStatus
+Date: 2016-12-15 22:44
 
 *Page Under Development*
 
diff --git a/pelican/content/QuickStart.md b/pelican/content/QuickStart.md
index a476a8f..a510db1 100644
--- a/pelican/content/QuickStart.md
+++ b/pelican/content/QuickStart.md
@@ -1,5 +1,6 @@
-Date: 2017-05-13 20:39
 Title: QuickStart
+Date: 2016-12-15 22:43
+Modified: 2017-05-13 20:39
 
 [[PageOutline]]
 *Page Under Development*
diff --git a/pelican/content/RandomnessTesting.md b/pelican/content/RandomnessTesting.md
index 315248b..085ad76 100644
--- a/pelican/content/RandomnessTesting.md
+++ b/pelican/content/RandomnessTesting.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: RandomnessTesting
+Date: 2016-12-15 22:43
 
 # Randomness Testing Tools
 
diff --git a/pelican/content/RelatedWork.md b/pelican/content/RelatedWork.md
index 1129822..92c97d3 100644
--- a/pelican/content/RelatedWork.md
+++ b/pelican/content/RelatedWork.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: RelatedWork
+Date: 2016-12-15 22:44
 
 # Related Work
 
diff --git a/pelican/content/ReleaseNotes.md b/pelican/content/ReleaseNotes.md
index 0f61495..822e122 100644
--- a/pelican/content/ReleaseNotes.md
+++ b/pelican/content/ReleaseNotes.md
@@ -1,5 +1,6 @@
-Date: 2017-05-13 19:18
 Title: ReleaseNotes
+Date: 2017-05-13 19:06
+Modified: 2017-05-13 19:18
 
 [[PageOutline]]
 
diff --git a/pelican/content/Requirements.md b/pelican/content/Requirements.md
index ad9406a..8f4a592 100644
--- a/pelican/content/Requirements.md
+++ b/pelican/content/Requirements.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:39
 Title: Requirements
+Date: 2016-12-15 22:39
 
 # HSM Requirements
 
diff --git a/pelican/content/RoughV1.md b/pelican/content/RoughV1.md
index 3eb6ab1..09d93ec 100644
--- a/pelican/content/RoughV1.md
+++ b/pelican/content/RoughV1.md
@@ -1,5 +1,6 @@
-Date: 2021-02-14 17:33
 Title: RoughV1
+Date: 2016-12-15 22:43
+Modified: 2021-02-14 17:33
 
 # Rough Cut at v0.01 Proof of Concept Feature Set
 
diff --git a/pelican/content/SecureChannel.md b/pelican/content/SecureChannel.md
index b03b0f6..baf4f6c 100644
--- a/pelican/content/SecureChannel.md
+++ b/pelican/content/SecureChannel.md
@@ -1,5 +1,6 @@
-Date: 2017-07-27 19:02
 Title: SecureChannel
+Date: 2017-07-27 00:24
+Modified: 2017-07-27 19:02
 
 # Secure Channel
 
diff --git a/pelican/content/SideChannel.md b/pelican/content/SideChannel.md
index 583bf67..afe5730 100644
--- a/pelican/content/SideChannel.md
+++ b/pelican/content/SideChannel.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: SideChannel
+Date: 2016-12-15 22:44
 
 
 # Side Channel Attacks
diff --git a/pelican/content/StateOfPlay.md b/pelican/content/StateOfPlay.md
index 4207ddc..edfa862 100644
--- a/pelican/content/StateOfPlay.md
+++ b/pelican/content/StateOfPlay.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: StateOfPlay
+Date: 2016-12-15 22:44
 
 [[PageOutline]]
 
diff --git a/pelican/content/SunetInitialDevelopment.md b/pelican/content/SunetInitialDevelopment.md
index 452facb..196d912 100644
--- a/pelican/content/SunetInitialDevelopment.md
+++ b/pelican/content/SunetInitialDevelopment.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: SunetInitialDevelopment
+Date: 2016-12-15 22:43
 
 # Planning for SUNET funded Cryptech Work
 The following documents the first two development steps in Cryptech
diff --git a/pelican/content/TRNGDevelopment.md b/pelican/content/TRNGDevelopment.md
index 38e2f54..db798b7 100644
--- a/pelican/content/TRNGDevelopment.md
+++ b/pelican/content/TRNGDevelopment.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:44
 Title: TRNGDevelopment
+Date: 2016-12-15 22:44
 
 # TRNG Development
 One, if not THE key functionality in the Cryptech system is the True Random Number Generator (TRNG). We therefore need to discuss, investigate and test to find a TRNG that we and the users of Cryptech can trust and can verify to be trusted.
diff --git a/pelican/content/UpgradeToKSNG.md b/pelican/content/UpgradeToKSNG.md
index cc9fbe5..b4a7db7 100644
--- a/pelican/content/UpgradeToKSNG.md
+++ b/pelican/content/UpgradeToKSNG.md
@@ -1,5 +1,6 @@
-Date: 2016-12-22 22:53
 Title: UpgradeToKSNG
+Date: 2016-12-22 22:33
+Modified: 2016-12-22 22:53
 
 [[PageOutline]]
 
diff --git a/pelican/content/Upgrading.md b/pelican/content/Upgrading.md
index ef22187..3cb22c9 100644
--- a/pelican/content/Upgrading.md
+++ b/pelican/content/Upgrading.md
@@ -1,5 +1,6 @@
-Date: 2018-04-07 23:03
 Title: Upgrading
+Date: 2017-05-12 23:15
+Modified: 2018-04-07 23:03
 
  [[PageOutline]]
 
diff --git a/pelican/content/UsingSTLink.md b/pelican/content/UsingSTLink.md
index 45c94d5..a44eb53 100644
--- a/pelican/content/UsingSTLink.md
+++ b/pelican/content/UsingSTLink.md
@@ -1,5 +1,6 @@
-Date: 2019-01-24 14:37
 Title: UsingSTLink
+Date: 2017-05-13 03:37
+Modified: 2019-01-24 14:37
 
 # Using ST-LINK
 
diff --git a/pelican/content/WhoWeAre.md b/pelican/content/WhoWeAre.md
index eb0e7ec..0475b61 100644
--- a/pelican/content/WhoWeAre.md
+++ b/pelican/content/WhoWeAre.md
@@ -1,5 +1,5 @@
-Date: 2016-12-15 22:43
 Title: WhoWeAre
+Date: 2016-12-15 22:43
 
 # Who We Are
 
diff --git a/pelican/content/WikiStart.md b/pelican/content/WikiStart.md
index 65d160c..f9c5109 100644
--- a/pelican/content/WikiStart.md
+++ b/pelican/content/WikiStart.md
@@ -1,5 +1,6 @@
-Date: 2017-05-13 20:30
 Title: WikiStart
+Date: 2016-12-15 20:46
+Modified: 2017-05-13 20:30
 
 [[PageOutline]]
 



More information about the Commits mailing list