mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 11:31:00 -05:00
New utility function base64_valid().
For when you want to tell the difference between a base64-encoded string and some other kind of string that might replace it.
This commit is contained in:
1
misc.h
1
misc.h
@ -114,6 +114,7 @@ strbuf *base64_decode_sb(ptrlen data);
|
||||
void base64_encode_bs(BinarySink *bs, ptrlen data, int cpl);
|
||||
void base64_encode_fp(FILE *fp, ptrlen data, int cpl);
|
||||
strbuf *base64_encode_sb(ptrlen data, int cpl);
|
||||
bool base64_valid(ptrlen data);
|
||||
|
||||
struct bufchain_granule;
|
||||
struct bufchain_tag {
|
||||
|
Reference in New Issue
Block a user