blob: c7aa144e498300fd06db7263dd805721cfee6e19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// base64-decodes data from StdIn and writes the output to StdOut
// (c) 1999 Sebastian Guenther
{$MODE objfpc}
program b64dec;
uses classes, base64, sysutils;
var
b64decoder: TBase64DecodingStream;
InputStream: TStream;
IsEnd: Boolean;
begin
InputStream := THandleStream.Create(StdInputHandle);
b64decoder := TBase64DecodingStream.Create(InputStream);
IsEnd := False;
while not IsEnd do
try
Write(Chr(b64decoder.ReadByte));
except
on e: EStreamError do IsEnd := True;
end;
b64decoder.Free;
InputStream.Free;
end.
|