bump product version to 4.1.6.2
[LibreOffice.git] / crashrep / source / win32 / base64.cxx
bloba0b8769f6bc50b1435e12f5190b394c8a0ff3a48
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #include <stdio.h>
21 #include <string.h>
22 #include "base64.h"
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;
31 size_t nBytes = 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 );
40 if ( nBytes )
42 unsigned long value =
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];
54 if ( nBytes > 1 )
56 out_buffer[2] = base64_tab[(value >> 6) & 0x3F];
57 if ( nBytes > 2 )
58 out_buffer[3] = base64_tab[(value >> 0) & 0x3F];
61 if ( nLineLength >= 76 )
63 fputs( "\n", fout );
64 nLineLength = 0;
67 nBytesWritten += fwrite( out_buffer, 1, sizeof(out_buffer), fout );
68 nLineLength += sizeof(out_buffer);
70 } while ( nBytes );
72 return nBytesWritten;
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */