From d02e060b43fb60cffcefb067f555cf93e83a0c59 Mon Sep 17 00:00:00 2001 From: Samuel Lucas <63159663+samuel-lucas6@users.noreply.github.com> Date: Sun, 12 May 2024 11:53:24 +0100 Subject: [PATCH] Correct Operations formatting. --- README.md | 18 ++++++++++-------- draft-lucas-balloon-hashing.md | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 669e03f..625dd14 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,16 @@ This is the working area for the individual Internet-Draft, "Balloon Hashing". ## Known Implementations -- C#: [samuel-lucas6/Balloon.NET](https://github.com/samuel-lucas6/Balloon.NET) -- Rust: [RustCrypto/balloon-hash](https://github.com/RustCrypto/password-hashes/tree/master/balloon-hash) -- Python: [nachonavarro/balloon-hashing](https://github.com/nachonavarro/balloon-hashing) -- Go: [unkaktus/balloon](https://github.com/unkaktus/balloon) -- Dart: [elliotwutingfeng/balloon_hashing](https://github.com/elliotwutingfeng/balloon_hashing) -- Julia: [elliotwutingfeng/BalloonHashing.jl](https://github.com/elliotwutingfeng/BalloonHashing.jl) -- Kotlin: [elliotwutingfeng/balloon-hashing-kotlin](https://github.com/elliotwutingfeng/balloon-hashing-kotlin) -- Ruby: [elliotwutingfeng/balloon-hashing](https://github.com/elliotwutingfeng/balloon-hashing) +| Language | Name | +| -------- | ----------------------------------------------------------------------------------------------------- | +| C# | [samuel-lucas6/Balloon.NET](https://github.com/samuel-lucas6/Balloon.NET) | +| Rust | [RustCrypto/balloon-hash](https://github.com/RustCrypto/password-hashes/tree/master/balloon-hash) | +| Python | [nachonavarro/balloon-hashing](https://github.com/nachonavarro/balloon-hashing) | +| Go | [unkaktus/balloon](https://github.com/unkaktus/balloon) | +| Dart | [elliotwutingfeng/balloon_hashing](https://github.com/elliotwutingfeng/balloon_hashing) | +| Julia | [elliotwutingfeng/BalloonHashing.jl](https://github.com/elliotwutingfeng/BalloonHashing.jl) | +| Kotlin | [elliotwutingfeng/balloon-hashing-kotlin](https://github.com/elliotwutingfeng/balloon-hashing-kotlin) | +| Ruby | [elliotwutingfeng/balloon-hashing](https://github.com/elliotwutingfeng/balloon-hashing) | ## Contributing diff --git a/draft-lucas-balloon-hashing.md b/draft-lucas-balloon-hashing.md index 2b5da6a..fcb2262 100644 --- a/draft-lucas-balloon-hashing.md +++ b/draft-lucas-balloon-hashing.md @@ -249,7 +249,7 @@ Operations: - `a ^ b`: the bitwise XOR of `a` and `b`. - `a % b`: the remainder when dividing `a` by `b`. - `a || b`: the concatenation of `a` and `b`. -- `a[i]`: index 'i' of byte array/list 'a'. +- `a[i]`: index `i` of byte array/list `a`. - `a.Length`: the length of `a` in bytes. - `a.Slice(i, l)`: the copy of `l` bytes from byte array `a`, starting at index `i`. - `List(i, l)`: the creation of a new list containing `i` byte arrays, each with length `l`.