mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 18:20:39 +01:00
40 lines
735 B
ObjectPascal
40 lines
735 B
ObjectPascal
// $Id$
|
|
|
|
// base64-encodes data from StdIn and writes the output to StdOut
|
|
// (c) 1999 Sebastian Guenther
|
|
|
|
{$MODE objfpc}
|
|
|
|
program b64enc;
|
|
uses classes, base64, sysutils;
|
|
var
|
|
b64encoder: TBase64EncodingStream;
|
|
InputStream, OutputStream: TStream;
|
|
IsEnd: Boolean;
|
|
begin
|
|
|
|
InputStream := THandleStream.Create(StdInputHandle);
|
|
OutputStream := THandleStream.Create(StdOutputHandle);
|
|
|
|
b64encoder := TBase64EncodingStream.Create(OutputStream);
|
|
|
|
while not IsEnd do
|
|
try
|
|
b64encoder.WriteByte(InputStream.ReadByte);
|
|
except
|
|
on e: EStreamError do IsEnd := True;
|
|
end;
|
|
|
|
b64encoder.Free;
|
|
InputStream.Free;
|
|
OutputStream.Free;
|
|
end.
|
|
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.2 2000-07-13 11:33:03 michael
|
|
+ removed logs
|
|
|
|
}
|