aboutsummaryrefslogtreecommitdiff
path: root/crypto-vala/src/random.vala
blob: 3f5d3ba940ee152c062e8785076678f3b37f97e1 (plain) (blame)
1
2
3
4
5
namespace Crypto {
public static void randomize(uint8[] buffer) {
    GCrypt.Random.randomize(buffer);
}
}