diff options
| author | Marvin W <git@larma.de> | 2021-03-23 15:05:50 +0100 |
|---|---|---|
| committer | Marvin W <git@larma.de> | 2021-03-23 15:11:00 +0100 |
| commit | b393d4160182873ea2acd9fbc6421f7e1a3adb9e (patch) | |
| tree | 77ac2fe22b0750e7ea443822cf71bc937a16dd16 /plugins/crypto-vala/src | |
| parent | 9fed5ea8650d6e7735fca4b3fe2cf4fc29f81c33 (diff) | |
| download | dino-b393d4160182873ea2acd9fbc6421f7e1a3adb9e.tar.gz | |
Add support for SRTP
Diffstat (limited to 'plugins/crypto-vala/src')
| -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 |
