anotherim-desktop/crypto-vala/src/random.vala
2021-05-14 19:26:05 +02:00

5 lines
106 B
Vala

namespace Crypto {
public static void randomize(uint8[] buffer) {
GCrypt.Random.randomize(buffer);
}
}