blake2-d 0.1

2021-12-23 Thread dd via Digitalmars-d-announce
Hey people, I'm announcing my implementation of the BLAKE2 hashing algorithm package at https://github.com/dd86k/blake2-d blake2-d supports (so far) the b and s variants at version v0.1.0. Tested results with OpenSSL and these tests are reinforced in unittests. Sadly, HMAC is not yet

Re: sha3-d

2021-11-01 Thread dd via Digitalmars-d-announce
On Friday, 29 October 2021 at 16:02:14 UTC, Luís Ferreira wrote: On Fri, 2021-10-29 at 15:13 +, dd via Digitalmars-d-announce wrote: Hello all! When I submitted my work to Phobos[1] earlier this year, it was rejected. (Understandably) So I made a DUB package and forgot to announce

Re: sha3-d

2021-11-01 Thread dd via Digitalmars-d-announce
On Saturday, 30 October 2021 at 09:59:38 UTC, Johan wrote: The readme mentions compilation with `-b release-nobounds`. 1. These are flags for DUB (?), can you add/replace it with the conversion to actual compiler flags? I can do a manual compilation section. Though, it is documentation

sha3-d

2021-10-29 Thread dd via Digitalmars-d-announce
Hello all! When I submitted my work to Phobos[1] earlier this year, it was rejected. (Understandably) So I made a DUB package and forgot to announce it here! Package: https://code.dlang.org/packages/sha3-d Source: https://github.com/dd86k/sha3-d [1] https://github.com/dlang/phobos/pull/7713

Re: sha3-d

2021-10-29 Thread dd via Digitalmars-d-announce
On Friday, 29 October 2021 at 15:18:39 UTC, WebFreak001 wrote: Awesome! Haven't had the need to use SHA-3 yet myself, but given all the other growing ecosystems where this could be of use it's nice to have this high-performance implementation already. SHA-3 has been in use in SQLite and in

Re: sha3-d

2021-11-05 Thread dd via Digitalmars-d-announce
On Friday, 5 November 2021 at 07:00:06 UTC, bauss wrote: What was the reasoning? I can't imagine it being worse than some of the terrible modules like std.json? I have nothing against the decision, but you can read the comments here: https://github.com/dlang/phobos/pull/7713 I should still

Re: DMD now incorporates a disassembler

2022-01-07 Thread dd via Digitalmars-d-announce
On Friday, 7 January 2022 at 21:41:55 UTC, Walter Bright wrote: Compile with -vasm to see it! Enjoy! Oh very nice! I need to finish my debugger/disassembler project.