aboutsummaryrefslogtreecommitdiff
path: root/pelican/content/CoretestHashesC5G.md
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2021-02-15 23:55:13 +0000
committerRob Austein <sra@hactrn.net>2021-02-15 23:55:13 +0000
commit86202308b68db7a6cf299c5fe3cdee4dc1850330 (patch)
tree267929b96cc0f386112b07ab49a4debc0af347dd /pelican/content/CoretestHashesC5G.md
parenta255b67f6d487703db648c58ee1e50c0aa85c2a6 (diff)
Try mapping source: and browser: links
This turns out to be less useful than expected, because somehow for every single link in the wiki, the source repository is not quite in the obvios plae with cgit. Might be a cgit configuration issue, but this gets wonky enough that it's probably simpler just to expand the JSON file we already have for the filter rules so that it includes other magic stuff like a URL map for this kind of link.
Diffstat (limited to 'pelican/content/CoretestHashesC5G.md')
-rw-r--r--pelican/content/CoretestHashesC5G.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/pelican/content/CoretestHashesC5G.md b/pelican/content/CoretestHashesC5G.md
index 57c0310..381fba8 100644
--- a/pelican/content/CoretestHashesC5G.md
+++ b/pelican/content/CoretestHashesC5G.md
@@ -40,24 +40,24 @@ SHA-1 and SHA-256 hash functions from a host computer via a serial
interface connected to a FPGA device. The subsystem consists of:
-- [sha1](browser:/core/sha1): A HW implementation of the SHA-1 hash function.
+- [sha1](https://git.cryptech.is/core/sha1): A HW implementation of the SHA-1 hash function.
-- [sha56](browser:/core/sha256): A HW implementation of the SHA-256 hash function.
+- [sha56](https://git.cryptech.is/core/sha256): A HW implementation of the SHA-256 hash function.
-- [coretest](browser:/core/coretest): A command parser that accepts read/write commands from a
+- [coretest](https://git.cryptech.is/core/coretest): A command parser that accepts read/write commands from a
host, executes the commands and sends the response.
-- [uart](browser:/core/usrt): A simple serial interface that connects coretest to the host.
+- [uart](https://git.cryptech.is/core/usrt): A simple serial interface that connects coretest to the host.
-- [coretest_hashes](browser:/core/coretest_hashes): A top level wrapper that connects all the cores as
+- [coretest_hashes](https://git.cryptech.is/core/coretest_hashes): A top level wrapper that connects all the cores as
well as connecting the rxd and txd ports on the uart to external pins as well as clk and reset. This core repo also contains the Python command line program hash_tester we will be using to talk to coretester and perform tests of the sha1 and sha256 cores.
@@ -417,7 +417,7 @@ hash_tester.py
This is a Python2.x program that uses Pyserial [5] to open up a serial
port and talk to coretest via the uart. The command and response format
used is a very simple byte oriented format. For more info, see the
-README.md in [the top of coretest](browser:/core/coretest).
+README.md in [the top of coretest](https://git.cryptech.is/core/coretest).
The program hash_tester.py needs to know which serial interface to
use. This is defined in the main() function (yes, VERY ugly). You will