sshbuf_b64tod
ASSERT_INT_EQ(sshbuf_b64tod(p1, "0A=="), 0);
ASSERT_INT_EQ(sshbuf_b64tod(p1, "0A8="), 0);
ASSERT_INT_EQ(sshbuf_b64tod(p1, "0A/QDw=="), 0);
if ((r = sshbuf_b64tod(b, tmp)) != 0)
if ((r = sshbuf_b64tod(buf, encoded)) != 0)
int sshbuf_b64tod(struct sshbuf *buf, const char *b64);
if ((r = sshbuf_b64tod(blob, blobcopy)) != 0) {
if ((r = sshbuf_b64tod(decoded, (char *)sshbuf_ptr(encoded))) != 0)
if ((r = sshbuf_b64tod(buf, b64)) != 0) {