memguard/memguard.go

46 lines
899 B
Go

package memguard
import (
"github.com/awnumar/memguard/core"
"github.com/awnumar/memguard/memcall"
)
func init() {
// Disable core dumps on unixesque systems. Does nothing on windows :(
memcall.DisableCoreDumps()
}
/*
ScrambleBytes overwrites an arbitrary buffer with cryptographically-secure random bytes.
*/
func ScrambleBytes(buf []byte) {
core.Scramble(buf)
}
/*
WipeBytes overwrites an arbitrary buffer with zeroes.
*/
func WipeBytes(buf []byte) {
core.Wipe(buf)
}
/*
Purge resets the session key to a fresh value and destroys all existing LockedBuffers. Existing Enclave objects will no longer be decryptable.
*/
func Purge() {
core.Purge()
}
/*
SafePanic wipes all it can before calling panic(v).
*/
func SafePanic(v interface{}) {
core.Panic(v)
}
/*
SafeExit destroys everything sensitive before exiting with a specified status code.
*/
func SafeExit(c int) {
core.Exit(c)
}