예제 #1
0
파일: hellokey.go 프로젝트: fedgrant/tonika
func (hk *HelloKey) String() string { return rsa64.PrivToBase64(hk.RSAPrivKey()) }
예제 #2
0
파일: msg.go 프로젝트: fedgrant/tonika
func (cmk *CipherMsgKey) String() string {
	return rsa64.PrivToBase64(cmk.rsa)
}
예제 #3
0
파일: sigkey.go 프로젝트: fedgrant/tonika
func (sk *SigKey) String() string {
	return rsa64.PrivToBase64(sk.RsaPrivKey())
}