mirror of
https://github.com/jlowellwofford/entropy.git
synced 2025-04-04 20:50:17 -05:00
26 lines
356 B
Go
26 lines
356 B
Go
package entropy
|
|
|
|
func GetEntCnt() (int, error) {
|
|
return getEntCnt()
|
|
}
|
|
|
|
func AddToEntCnt(add int) error {
|
|
return addToEntCnt(add)
|
|
}
|
|
|
|
func AddEntropy(cnt int, buf []byte) error {
|
|
return addEntropy(cnt, buf)
|
|
}
|
|
|
|
func ZapEntCnt() error {
|
|
return zapEntCnt()
|
|
}
|
|
|
|
func ClearPool() error {
|
|
return clearPool()
|
|
}
|
|
|
|
func ReseedCrng() error {
|
|
return reseedCrng()
|
|
}
|