Home | History | Annotate | Download | only in openssh

Lines Matching defs:b64

3049 	char *b64 = NULL;
3151 if ((b64 = sshbuf_dtob64(encoded)) == NULL) {
3159 for (i = 0; i < strlen(b64); i++) {
3160 if ((r = sshbuf_put_u8(blob, b64[i])) != 0)
3188 if (b64 != NULL) {
3189 explicit_bzero(b64, strlen(b64));
3190 free(b64);