2022-12-13 14:36:35 +00:00
|
|
|
package frostfscrypto
|
2022-10-12 11:46:48 +00:00
|
|
|
|
|
|
|
import "encoding/hex"
|
|
|
|
|
|
|
|
// StringifyKeyBinary returns string with HEX representation of source.
|
|
|
|
// Format can be changed and it's unsafe to rely on it beyond human-readable output.
|
|
|
|
func StringifyKeyBinary(src []byte) string {
|
|
|
|
return hex.EncodeToString(src)
|
|
|
|
}
|