crypto 0.1.3

A D Library of encrypto, decrypto(3DES, AES, TEA, RSA...), encode, hash, and message digital signatures.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

A D Library of encryption, decryption, encode, hash, and message digital signatures.

The same functional and fully compatible C++ project: https://github.com/shove70/crypt

AES:

import crypto.aes;

string key = "12341234123412341234123412341234";
ubyte[] message = cast(ubyte[])"123412341234123412341234123412341";

ubyte[] buffer = AESUtils.encrypt!AES128(message, key);
buffer = AESUtils.decrypt!AES128(buffer, key);

assert(message == buffer);

XTEA:

import crypto.tea.xtea;

int[4] key = [1, 2, 3, 4];
int rounds = 64;
ubyte[] message = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14];

ubyte[] buffer = Xtea.encrypt(message, key, rounds);
buffer = Xtea.decrypt(buffer, key, rounds);

assert(message == buffer);

RSA:

import crypto.rsa;

RSAKeyPair keyPair = RSA.generateKeyPair(1024);
writeln(keyPair.privateKey);
writeln(keyPair.publicKey);

string data = "Data that needs to be encrypted";

ubyte[] en = RSA.encrypt(keyPair.privateKey, cast(ubyte[])data);
ubyte[] de = RSA.decrypt(keyPair.publicKey, en);
writeln(cast(string)de);

assert(cast(string)de = data);

For more examples, see unittest, Thanks.

Authors:
  • Shove
Dependencies:
none
Versions:
0.2.18 2023-Sep-05
0.2.17 2022-Jan-25
0.2.16 2020-Dec-03
0.2.15 2020-Oct-14
0.2.14 2020-Sep-01
Show all 29 versions
Download Stats:
  • 0 downloads today

  • 4 downloads this week

  • 11 downloads this month

  • 11686 downloads total

Score:
2.2
Short URL:
crypto.dub.pm