summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/binentrygen.cpp
blob: f156a5ebff54b21f2ada036fc3a227bda9f4c35a (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/***************************************************************************
 *                                                                         *
 *   copyright (C) 2004 by Michael Buesch                                  *
 *   email: mbuesch@freenet.de                                             *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License version 2        *
 *   as published by the Free Software Foundation.                         *
 *                                                                         *
 ***************************************************************************/

/***************************************************************************
 * copyright (C) 2004 by Ulf Schenk
 * This file is originaly based on version 1.0.1 of pwmanager
 * and was modified to run on embedded devices that run microkde
 *
 * $Id$
 **************************************************************************/  

#include "binentrygen.h"
#include "base64.h"

#include "pwmexception.h"
#include "globalstuff.h"

void BinEntryGen::encode(const QByteArray &data,
			 PwMDataItem *ret,
			 DataType type)
{
	ret->clear();
	ret->name = tostr(static_cast<int>(type));
	ret->binary = true;
	if (data.size() == 0)
		return;
	Base64 b64;
	string d(data.data(), data.size());
	ret->pw = b64.encode(d);
}

void BinEntryGen::decode(const PwMDataItem &data,
			 QByteArray *ret,
			 DataType *type)
{
	BUG_ON(!data.binary);
	int t =  strtol(data.name.c_str(), 0, 10);
	*type = static_cast<DataType>(t);
	switch (*type) {
		case None:
		case KWalletMap:
		case KWalletStream:
			break;
		default:
			*type = None;
	}
	if (data.pw == "") {
		ret->fill(0);
		ret->resize(0);
		return;
	}
	Base64 b64;
	string d(b64.decode(data.pw));
	ret->duplicate(d.c_str(), d.length());
}

BinEntryGen::DataType BinEntryGen::binType(const PwMDataItem &data)
{
	if (!data.binary)
		return None;
	int type = strtol(data.name.c_str(), 0, 10);
	return (static_cast<DataType>(type));
}