From 3c4b79ab9154a66ce4428914fc5df59987560c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Tue, 28 Nov 2023 15:50:23 +0300 Subject: [PATCH] Fix typos in domain separation string (#75) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Philipp Krüger --- spec/private-wnfs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/private-wnfs.md b/spec/private-wnfs.md index a8e32c7..a51eb89 100644 --- a/spec/private-wnfs.md +++ b/spec/private-wnfs.md @@ -422,7 +422,7 @@ In order to do that, the node name accumulator needs to be turned into revision- This is done by deriving a name segment from the revision's skip ratchet state and accumulating that it the node's name accumulator: ```ts -const revisionSegment = hashToPrime("wnfs/1.0/segment derivation from temporal", header.ratchet, 32) +const revisionSegment = hashToPrime("wnfs/1.0/revision segment derivation from ratchet", header.ratchet, 32) const revisionedName = header.name.add(revsisionSegment) ```