mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-15 11:55:01 +00:00
5 lines
106 B
Vala
5 lines
106 B
Vala
|
namespace Crypto {
|
||
|
public static void randomize(uint8[] buffer) {
|
||
|
GCrypt.Random.randomize(buffer);
|
||
|
}
|
||
|
}
|