1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
24 static const char base64_tab
[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
26 extern "C" size_t base64_encode( FILE *fin
, FILE *fout
)
28 size_t nLineLength
= 0;
29 size_t nBytesWritten
= 0;
35 unsigned char in_buffer
[3];
37 memset( in_buffer
, 0, sizeof(in_buffer
) );
38 nBytes
= fread( in_buffer
, 1, sizeof(in_buffer
), fin
);
43 ((unsigned long)in_buffer
[0]) << 16 |
44 ((unsigned long)in_buffer
[1]) << 8 |
45 ((unsigned long)in_buffer
[2]) << 0;
47 unsigned char out_buffer
[4];
49 memset( out_buffer
, '=', sizeof(out_buffer
) );
51 out_buffer
[0] = base64_tab
[(value
>> 18) & 0x3F];
52 out_buffer
[1] = base64_tab
[(value
>> 12) & 0x3F];
56 out_buffer
[2] = base64_tab
[(value
>> 6) & 0x3F];
58 out_buffer
[3] = base64_tab
[(value
>> 0) & 0x3F];
61 if ( nLineLength
>= 76 )
67 nBytesWritten
+= fwrite( out_buffer
, 1, sizeof(out_buffer
), fout
);
68 nLineLength
+= sizeof(out_buffer
);
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */