diff options
author | Marvin W <git@larma.de> | 2021-05-14 19:26:05 +0200 |
---|---|---|
committer | Marvin W <git@larma.de> | 2021-05-14 19:26:05 +0200 |
commit | 6399892bf2c53fc3701438c752718638baff8e27 (patch) | |
tree | f2d60570240109e5f65f1250807ce90812b484f2 /crypto-vala/src/random.vala | |
parent | bec73ed3714fc89627392b1dfc74d1b919dbe355 (diff) | |
download | dino-6399892bf2c53fc3701438c752718638baff8e27.tar.gz dino-6399892bf2c53fc3701438c752718638baff8e27.zip |
Move crypto-vala to shared library
Diffstat (limited to 'crypto-vala/src/random.vala')
-rw-r--r-- | crypto-vala/src/random.vala | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto-vala/src/random.vala b/crypto-vala/src/random.vala new file mode 100644 index 00000000..3f5d3ba9 --- /dev/null +++ b/crypto-vala/src/random.vala @@ -0,0 +1,5 @@ +namespace Crypto { +public static void randomize(uint8[] buffer) { + GCrypt.Random.randomize(buffer); +} +}
\ No newline at end of file |