Files
José Luis González García 1fb217476a Support for multi-byte characters in passwords
Using iconv() to convert the password from the local character set to UTF-16LE used by BitLocker.
2017-08-22 09:14:27 +02:00

48 lines
1.4 KiB
C

/* -*- coding: utf-8 -*- */
/* -*- mode: c -*- */
/*
* Dislocker -- enables to read/write on BitLocker encrypted partitions under
* Linux
* Copyright (C) 2012-2013 Romain Coltel, Hervé Schauer Consultants
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
#ifndef ENCODING_H
#define ENCODING_H
#include <wchar.h>
#include "dislocker/common.h"
/*
* Prototypes of functions from encoding.c
*/
int utf16towchars(uint16_t* utf16, size_t utf16_length, wchar_t* utf32);
int asciitoutf16(const uint8_t* ascii, uint16_t* utf16);
int utf16bigtolittleendian(uint16_t* utf16, size_t utf16_length);
int toutf16(const uint8_t* inbuffer, uint8_t* outbuffer);
char* getlocalcharset();
char** buildcharactersetslist(void);
#endif /* ENCODING_H */