Hi,
How can I create a SHA256 signature hash in D? Something similar
to the PHP code below:
```php
openssl_sign($body, $signature, $secret, OPENSSL_ALGO_SHA256);
```
I've tried the code below without success:
```d
auto signature =
body.representation.hmac!SHA256(secret.representation).toHex
On Monday, 17 June 2024 at 19:45:18 UTC, realhet wrote:
Hello,
I'm having a weird case of access violation.
Often times, you are focused on something that isn't the problem,
but *triggers* the problem. Not saying it's not a compiler error,
it could be. But chances are pretty low.
If you c
Hi,
Has anyone here had experience implementing the Google Auth
Library in DLang? Specifically, I am looking for guidance on
handling OAuth 2.0 using JWT. Are there any current libraries
available for this purpose?
and GDC 14:
https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=09992f8b881aa2dfbee1e9d6954c3ca90cd3fe41
So GDC 14.1 includes the D language at v2.108.0.
This is wonderful:
Synchronizing with the upstream release of v2.108.0.
BTW, if the following two pages are updated with version
information,
Hello,
I'm having a weird case of access violation.
I tried to narrow the problem and put up a reproducible testCase
on compilerexploer, but it requires my framework too which
overrides std.stdio.writeln() in order to produce colorful text,
and logging, etc.
The error is an access violation
On Monday, 17 June 2024 at 16:20:55 UTC, mw wrote:
On Monday, 17 June 2024 at 15:33:46 UTC, Dejan Lekic wrote:
On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
Hi,
What's the latest GDC stable release version?
Stable release version is the same as stable GCC release
version. Find it here:
On Monday, 17 June 2024 at 15:33:46 UTC, Dejan Lekic wrote:
On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
Hi,
What's the latest GDC stable release version?
Stable release version is the same as stable GCC release
version. Find it here: https://gcc.gnu.org/
(GDC is part of the GCC proj
On Sunday, 16 June 2024 at 16:26:08 UTC, mw wrote:
Hi,
What's the latest GDC stable release version?
Stable release version is the same as stable GCC release version.
Find it here: https://gcc.gnu.org/
(GDC is part of the GCC project for years)
On Monday, 17 June 2024 at 05:05:06 UTC, Jonathan M Davis wrote:
alias Unshared(T) = T;
alias Unshared(T: shared U, U) = U;
...
Unshared is an eponymous template.
https://dlang.org/spec/template.html#implicit_template_properties
And it's using a shortcut syntax.
...
The second templat