MarshalSignature converts []byte signature into string.
(signature []byte)
| 210 | |
| 211 | // MarshalSignature converts []byte signature into string. |
| 212 | func MarshalSignature(signature []byte) string { |
| 213 | return base64.StdEncoding.EncodeToString(signature) |
| 214 | } |
| 215 | |
| 216 | func ProofChainFindLatest(persona string) (pc *ProofChain, err error) { |
| 217 | pc = new(ProofChain) |
no outgoing calls