On Thursday, 29 May 2025 at 08:30:39 UTC, Dom DiSc wrote:
On Thursday, 29 May 2025 at 01:50:51 UTC, Murilo wrote:
I've written a code in D which implements the RSA algorithm,
so that others may learn how to do it.
Here is the link:
You messed up the link (the parentheses are wrong somehow).
On Thursday, 29 May 2025 at 01:50:51 UTC, Murilo wrote:
I've written a code in D which implements the RSA algorithm, so
that others may learn how to do it.
Here is the link:
You messed up the link (the parentheses are wrong somehow).
This works:
https://github.com/MuriloMir/RSA-algorithm
I've written a code in D which implements the RSA algorithm, so
that others may learn how to do it.
Here is the link:
https://github.com/MuriloMir/RSA-algorithm](https://github.com/MuriloMir/RSA-algorithm
Hi All,
We have a requirement as below, and I tried the libraries such
as std.digest, crypto, botan etc but no luck, hence request you
suggestion's on how to achieve the below requirement.
Array!string -> data compression -> Data Encryption -> Hash
statement -> st
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example AES256) and save a password to decrypt it later,
so you can copy the password.
I haven't done
On Monday, 17 May 2021 at 17:08:41 UTC, noid wrote:
On Monday, 17 May 2021 at 17:03:39 UTC, Imperatorn wrote:
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example
On Monday, 17 May 2021 at 16:59:28 UTC, mw wrote:
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example AES256) and save a password to decrypt it later,
so you can
On Monday, 17 May 2021 at 17:03:39 UTC, Imperatorn wrote:
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example AES256) and save a password to decrypt it later,
so
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example AES256) and save a password to decrypt it later,
so you can copy the password.
I couldn't find any w
On Monday, 17 May 2021 at 16:54:18 UTC, noid wrote:
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file
(for example AES256) and save a password to decrypt it later,
so you can copy the password.
I couldn't find any w
Hi! I am pretty new on Dlang and I wanted to make a small
password manager that used some sort of encryption on a file (for
example AES256) and save a password to decrypt it later, so you
can copy the password.
I couldn't find any way of doing encryption on Dlang, is there a
lib that
On Monday, 29 July 2019 at 14:37:54 UTC, 0x wrote:
On a project I was asked to
a- Compute SHA-256 of a password
b- Do a BigInteger, convert to Hex String
c- Encrypt the key using a public key with the following
parameters
Entropy: I'm given some numbers
Modulus: also given long num
On Monday, 29 July 2019 at 14:37:54 UTC, 0x wrote:
On a project I was asked to
a- Compute SHA-256 of a password
b- Do a BigInteger, convert to Hex String
c- Encrypt the key using a public key with the following
parameters
Entropy: I'm given some numbers
Modulus: also given long num
On a project I was asked to
a- Compute SHA-256 of a password
b- Do a BigInteger, convert to Hex String
c- Encrypt the key using a public key with the following
parameters
Entropy: I'm given some numbers
Modulus: also given long numbers
[encrypt using RSA algorithm]
So far I'm familiar wit
Hi All,
I have tried encrypting a message using public key and sending
message to client, who decrypts using private key. I have tried
with openssl d package. Below is my code. However it always fails
in creating the context and exits by throwing exception. Key that
i am using is RSA key.
P
On Friday, 25 April 2014 at 19:06:33 UTC, brad clawsie wrote:
My code compiles and fails silently.
How do you want it to fail? C code doesn't throw exceptions.
AES_set_decrypt_key is needed before AES_decrypt.
AES_set_decrypt_key(chunk.ptr, 128, &wctx);
Justin Whear:
brad clawsie:
b = cast(ubyte[]) s;
Better to use std.string.representation.
It doesn't look like you're allocating space for `e` or `d`,
e.g. `auto e
= new ubyte[](256);`, so those arrays have a length of 0, in
which case
the encrypt/decrypt functions are just trashing
On Fri, 25 Apr 2014 19:06:31 +, brad clawsie wrote:
> hi everyone.
>
> I'm trying to symmetrically encrypt some text using the openssl
> bindings. My code compiles and fails silently. Clearly there is
> something very wrong with it - it could be my novice D skills, or my
> misuse of the opens
hi everyone.
I'm trying to symmetrically encrypt some text using the openssl
bindings. My code compiles and fails silently. Clearly there is
something very wrong with it - it could be my novice D skills, or
my misuse of the openssl binding.
auto chunk = new ubyte[](16);
foreach(ref x
20 matches
Mail list logo