diff options
Diffstat (limited to 'plugins/crypto-vala/src/random.vala')
-rw-r--r-- | plugins/crypto-vala/src/random.vala | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/crypto-vala/src/random.vala b/plugins/crypto-vala/src/random.vala new file mode 100644 index 00000000..3f5d3ba9 --- /dev/null +++ b/plugins/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 |