summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/libgcryptif.cpp
blob: 6f3a994fc08a68b1de4b6944a4581c574a5cf3cb (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
/***************************************************************************
 *                                                                         *
 *   copyright (C) 2004 by Michael Buesch                                  *
 *   email: mbuesch@freenet.de                                             *
 *                                                                         *
 *   hashPassphrase() is derived from GnuPG and is                         *
 *   Copyright (C) 1998, 1999, 2000, 2001, 2003                            *
 *   Free Software Foundation, Inc.                                        *
 *                                                                         *
 *   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.                         *
 *                                                                         *
 ***************************************************************************/

#include "libgcryptif.h"

#ifdef CONFIG_PWMANAGER_GCRY

#include "pwmdoc.h"
#include "randomizer.h"

#include <gcrypt.h>

PwMerror LibGCryptIf::encrypt(unsigned char **outBuf,
			      size_t *outBufLen,
			      unsigned char *inBuf,
			      size_t inBufLen,
			      const unsigned char *key,
			      size_t keylen,
			      char _algo)
{
	PwMerror ret = e_success;
	gcry_error_t err;
	gcry_cipher_hd_t handle;
	size_t blklen;
	size_t unpaddedLen = inBufLen;
	size_t cipherKeylen;
	unsigned char *hashedKey;
	unsigned char salt[STRING2KEY_SALTLEN];
	int algo = mapCipherId(_algo);

	if (!inBufLen || !keylen)
		return e_invalidArg;

	// test if algo is ready for encryption
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_TEST_ALGO,
				    0, 0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_TEST_ALGO failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// get the algo block length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_BLKLEN,
				    0,
				    &blklen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_GET_BLKLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	/* double check if we have enough space.
	 * We have only 1024 extra bytes for padding and salt.
	 */
	BUG_ON(blklen > 1024 - STRING2KEY_SALTLEN);
	// get the algo key length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_KEYLEN,
				    0,
				    &cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_GET_KEYLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// now open the algo and get a handle
	err = gcry_cipher_open(&handle,
			       algo,
			       GCRY_CIPHER_MODE_CBC,
			       0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_open() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// hash the "key" to a fixed size hash matching "cipherKeylen"
	hashedKey = new unsigned char[cipherKeylen];
	hashPassphrase(key, keylen, salt, hashedKey, cipherKeylen, true);
	// so now set the hashed key
	err = gcry_cipher_setkey(handle, hashedKey, cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_setkey() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		delete [] hashedKey;
		goto out_close;
	}
	delete [] hashedKey;
	/* allocate a buffer for the encrypted data.
	 * The size of the buffer is the inBuf length, but blklen
	 * aligned and plus the length of the salt, that is appended.
	 */
	*outBufLen = getBufLen(unpaddedLen, blklen) + STRING2KEY_SALTLEN;
	*outBuf = new unsigned char[*outBufLen];
	padData(inBuf, unpaddedLen, blklen);
	// encrypt the padded data
	err = gcry_cipher_encrypt(handle,
				  *outBuf,
				  *outBufLen - STRING2KEY_SALTLEN,
				  inBuf,
				  *outBufLen - STRING2KEY_SALTLEN);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_encrypt() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out_delete;
	}
	// append the salt to the encrypted data
	memcpy(*outBuf + *outBufLen - STRING2KEY_SALTLEN, salt, STRING2KEY_SALTLEN);
	goto out_close;
out_delete:
	delete [] *outBuf;
out_close:
	gcry_cipher_close(handle);
out:
	return ret;
}

PwMerror LibGCryptIf::decrypt(unsigned char **outBuf,
			      size_t *outBufLen,
			      const unsigned char *inBuf,
			      size_t inBufLen,
			      const unsigned char *key,
			      size_t keylen,
			      char _algo)
{
	PwMerror ret = e_success;
	gcry_error_t err;
	gcry_cipher_hd_t handle;
	size_t cipherKeylen;
	unsigned char *hashedKey;
	unsigned char salt[STRING2KEY_SALTLEN];
	int algo = mapCipherId(_algo);

	if (!inBufLen || !keylen)
		return e_invalidArg;

	// test if algo is ready for encryption
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_TEST_ALGO,
				    0, 0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): GCRYCTL_TEST_ALGO failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// get algo key length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_KEYLEN,
				    0,
				    &cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): GCRYCTL_GET_KEYLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// extract the salt of the encrypted data buffer
	memcpy(salt, inBuf + inBufLen - STRING2KEY_SALTLEN, STRING2KEY_SALTLEN);
	// open the algo and get a handle
	err = gcry_cipher_open(&handle,
			       algo,
			       GCRY_CIPHER_MODE_CBC,
			       0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): gcry_cipher_open() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// hash the "key" to a fixed size hash matching "cipherKeylen"
	hashedKey = new unsigned char[cipherKeylen];
	hashPassphrase(key, keylen, salt, hashedKey, cipherKeylen, false);
	// so now set the hashed key
	err = gcry_cipher_setkey(handle, hashedKey, cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): gcry_cipher_setkey() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		delete [] hashedKey;
		goto out_close;
	}
	delete [] hashedKey;
	*outBufLen = inBufLen - STRING2KEY_SALTLEN;
	*outBuf = new unsigned char[*outBufLen];
	// decrypt the data
	err = gcry_cipher_decrypt(handle,
				  *outBuf,
				  *outBufLen,
				  inBuf,
				  *outBufLen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_encrypt() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out_delete;
	}
	// remove all random padding
	unpadData(*outBuf, outBufLen);
	goto out_close;
out_delete:
	delete [] *outBuf;
out_close:
	gcry_cipher_close(handle);
out:
	return ret;
}

PwMerror LibGCryptIf::hash(unsigned char **outBuf,
			   size_t *outBufLen,
			   const unsigned char *inBuf,
			   size_t inBufLen,
			   char _algo)
{
	PwMerror ret = e_success;
	unsigned int hashLen;
	int algo = mapHashId(_algo);

	hashLen = gcry_md_get_algo_dlen(algo);
	*outBufLen = hashLen;
	*outBuf = new unsigned char[*outBufLen];
	gcry_md_hash_buffer(algo,
			    *outBuf,
			    inBuf,
			    inBufLen);
	return ret;
}

unsigned int LibGCryptIf::hashLength(char _algo)
{
	unsigned int ret;
	int algo = mapHashId(_algo);
	ret = gcry_md_get_algo_dlen(algo);
	return ret;
}

int LibGCryptIf::mapCipherId(char algo)
{
	switch (algo) {
	case PWM_CRYPT_AES128:
		return GCRY_CIPHER_AES;
	case PWM_CRYPT_AES192:
		return GCRY_CIPHER_AES192;
	case PWM_CRYPT_AES256:
		return GCRY_CIPHER_AES256;
	case PWM_CRYPT_3DES:
		return GCRY_CIPHER_3DES;
	case PWM_CRYPT_TWOFISH:
		return GCRY_CIPHER_TWOFISH;
	case PWM_CRYPT_TWOFISH128:
		return GCRY_CIPHER_TWOFISH128;
	default:
		BUG();
	}
	return GCRY_CIPHER_NONE;
}

int LibGCryptIf::mapHashId(char algo)
{
	switch (algo) {
	case PWM_HASH_SHA1:
		return GCRY_MD_SHA1;
	case PWM_HASH_SHA256:
		return GCRY_MD_SHA256;
	case PWM_HASH_SHA384:
		return GCRY_MD_SHA384;
	case PWM_HASH_SHA512:
		return GCRY_MD_SHA512;
	case PWM_HASH_MD5:
		return GCRY_MD_MD5;
	case PWM_HASH_RMD160:
		return GCRY_MD_RMD160;
	case PWM_HASH_TIGER:
		return GCRY_MD_TIGER;
	default:
		BUG();
	}
	return GCRY_MD_NONE;
}

bool LibGCryptIf::hashPassphrase(const unsigned char *pw,
				 size_t pwlen,
				 unsigned char *salt,
				 unsigned char *key,
				 size_t keylen,
				 bool create)
{
	DEK dek;
	STRING2KEY s2k;
	bool ret;

	dek.keylen = keylen;
	s2k.mode = 1;
	s2k.hash_algo = mapHashId(conf()->confGlobHashAlgo());
	s2k.count = 0;
	if (!create)
		memcpy(s2k.salt, salt, STRING2KEY_SALTLEN);
	ret = doHashPassphrase(&dek,
			       pw,
			       pwlen,
			       &s2k,
			       create);
	if (!ret)
		goto out;
	memcpy(key, dek.key, dek.keylen);
	if (create)
		memcpy(salt, s2k.salt, STRING2KEY_SALTLEN);
out:
	return ret;
}


bool LibGCryptIf::doHashPassphrase(DEK *dek,
				   const unsigned char *pw,
				   size_t pwlen,
				   STRING2KEY *s2k,
				   bool create)
{
	// This function is derived from GnuPG-1.2.5-rc2
	gcry_md_hd_t md;
	gcry_error_t err;
	bool ret = true;
	size_t pass, i;
	size_t used = 0;

	PWM_ASSERT(s2k->hash_algo);
	BUG_ON(!(dek->keylen > 0 && dek->keylen <= array_size(dek->key)));

	err = gcry_md_open(&md, s2k->hash_algo, 0);
	if (err != GPG_ERR_NO_ERROR) {
		ret = false;
		goto out;
	}
	for (pass = 0; used < dek->keylen; pass++) {
		if (pass) {
			gcry_md_reset(md);
			for (i = 0; i < pass; i++) // preset the hash context
			gcry_md_putc(md, 0);
		}
		if (s2k->mode == 1 || s2k->mode == 3) {
			size_t len2 = pwlen + 8;
			size_t count = len2;

			if (create && !pass) {
				Randomizer *rnd = Randomizer::obj();
				const unsigned int salt_len = 8;
				string rndBuf(rnd->genRndBuf(salt_len));
				memcpy(s2k->salt, rndBuf.c_str(), salt_len);
				if (s2k->mode == 3)
					s2k->count = 96; // 65536 iterations
			}
			if (s2k->mode == 3) {
				count = (16ul + (s2k->count & 15)) << ((s2k->count >> 4) + 6);
				if (count < len2)
					count = len2;
			}
			// a little bit complicated because we need a ulong for count
			while (count > len2) { // maybe iterated+salted
				gcry_md_write(md, s2k->salt, 8);
				gcry_md_write(md, pw, pwlen);
				count -= len2;
			}
			if (count < 8) {
				gcry_md_write(md, s2k->salt, count);
			} else {
				gcry_md_write(md, s2k->salt, 8);
				count -= 8;
				gcry_md_write(md, pw, count);
			}
		} else
			gcry_md_write(md, pw, pwlen);
		gcry_md_final(md);
		i = gcry_md_get_algo_dlen(s2k->hash_algo);
		if (i > dek->keylen - used)
			i = dek->keylen - used;
		memcpy(dek->key+used, gcry_md_read(md, s2k->hash_algo), i);
		used += i;
	}
	gcry_md_close(md);
out:
	return ret;
}

void LibGCryptIf::padData(unsigned char *buf,
			  size_t bufLen,
			  size_t boundary)
{
	size_t numPadBytes = boundary - ((bufLen + 1) % boundary);
	buf[bufLen] = static_cast<char>(0x01);
	size_t i = 0;
	Randomizer *rnd = Randomizer::obj();
	char c;
	unsigned char *b;
	while (i < numPadBytes) {
		c = rnd->genRndChar();
		if (c == static_cast<char>(0x01))
			continue;
		b = buf + bufLen + 1 + i;
		*b = c;
		++i;
	}
}

void LibGCryptIf::unpadData(const unsigned char *buf,
		 	    size_t *bufLen)
{
	size_t pos;
	BUG_ON(*bufLen % 8);
	pos = *bufLen - 1;
	while (buf[pos] != static_cast<char>(0x01)) {
		BUG_ON(!pos);
		--pos;
	}
	*bufLen = pos;
}

#endif // CONFIG_PWMANAGER_GCRY

#ifdef CONFIG_PWMANAGER_CRYPTO

#include "pwmdoc.h"
#include "randomizer.h"

#include <openssl/crypto.h>

PwMerror LibGCryptIf::encrypt(unsigned char **outBuf,
			      size_t *outBufLen,
			      unsigned char *inBuf,
			      size_t inBufLen,
			      const unsigned char *key,
			      size_t keylen,
			      char _algo)
{
	PwMerror ret = e_success;
	gcry_error_t err;
	gcry_cipher_hd_t handle;
	size_t blklen;
	size_t unpaddedLen = inBufLen;
	size_t cipherKeylen;
	unsigned char *hashedKey;
	unsigned char salt[STRING2KEY_SALTLEN];
	int algo = mapCipherId(_algo);

	if (!inBufLen || !keylen)
		return e_invalidArg;

	// test if algo is ready for encryption
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_TEST_ALGO,
				    0, 0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_TEST_ALGO failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// get the algo block length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_BLKLEN,
				    0,
				    &blklen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_GET_BLKLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	/* double check if we have enough space.
	 * We have only 1024 extra bytes for padding and salt.
	 */
	BUG_ON(blklen > 1024 - STRING2KEY_SALTLEN);
	// get the algo key length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_KEYLEN,
				    0,
				    &cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): GCRYCTL_GET_KEYLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// now open the algo and get a handle
	err = gcry_cipher_open(&handle,
			       algo,
			       GCRY_CIPHER_MODE_CBC,
			       0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_open() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// hash the "key" to a fixed size hash matching "cipherKeylen"
	hashedKey = new unsigned char[cipherKeylen];
	hashPassphrase(key, keylen, salt, hashedKey, cipherKeylen, true);
	// so now set the hashed key
	err = gcry_cipher_setkey(handle, hashedKey, cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_setkey() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		delete [] hashedKey;
		goto out_close;
	}
	delete [] hashedKey;
	/* allocate a buffer for the encrypted data.
	 * The size of the buffer is the inBuf length, but blklen
	 * aligned and plus the length of the salt, that is appended.
	 */
	*outBufLen = getBufLen(unpaddedLen, blklen) + STRING2KEY_SALTLEN;
	*outBuf = new unsigned char[*outBufLen];
	padData(inBuf, unpaddedLen, blklen);
	// encrypt the padded data
	err = gcry_cipher_encrypt(handle,
				  *outBuf,
				  *outBufLen - STRING2KEY_SALTLEN,
				  inBuf,
				  *outBufLen - STRING2KEY_SALTLEN);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_encrypt() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out_delete;
	}
	// append the salt to the encrypted data
	memcpy(*outBuf + *outBufLen - STRING2KEY_SALTLEN, salt, STRING2KEY_SALTLEN);
	goto out_close;
out_delete:
	delete [] *outBuf;
out_close:
	gcry_cipher_close(handle);
out:
	return ret;
}

PwMerror LibGCryptIf::decrypt(unsigned char **outBuf,
			      size_t *outBufLen,
			      const unsigned char *inBuf,
			      size_t inBufLen,
			      const unsigned char *key,
			      size_t keylen,
			      char _algo)
{
	PwMerror ret = e_success;
	gcry_error_t err;
	gcry_cipher_hd_t handle;
	size_t cipherKeylen;
	unsigned char *hashedKey;
	unsigned char salt[STRING2KEY_SALTLEN];
	int algo = mapCipherId(_algo);

	if (!inBufLen || !keylen)
		return e_invalidArg;

	// test if algo is ready for encryption
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_TEST_ALGO,
				    0, 0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): GCRYCTL_TEST_ALGO failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// get algo key length
	err = gcry_cipher_algo_info(algo,
				    GCRYCTL_GET_KEYLEN,
				    0,
				    &cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): GCRYCTL_GET_KEYLEN failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// extract the salt of the encrypted data buffer
	memcpy(salt, inBuf + inBufLen - STRING2KEY_SALTLEN, STRING2KEY_SALTLEN);
	// open the algo and get a handle
	err = gcry_cipher_open(&handle,
			       algo,
			       GCRY_CIPHER_MODE_CBC,
			       0);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): gcry_cipher_open() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out;
	}
	// hash the "key" to a fixed size hash matching "cipherKeylen"
	hashedKey = new unsigned char[cipherKeylen];
	hashPassphrase(key, keylen, salt, hashedKey, cipherKeylen, false);
	// so now set the hashed key
	err = gcry_cipher_setkey(handle, hashedKey, cipherKeylen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doDecrypt(): gcry_cipher_setkey() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		delete [] hashedKey;
		goto out_close;
	}
	delete [] hashedKey;
	*outBufLen = inBufLen - STRING2KEY_SALTLEN;
	*outBuf = new unsigned char[*outBufLen];
	// decrypt the data
	err = gcry_cipher_decrypt(handle,
				  *outBuf,
				  *outBufLen,
				  inBuf,
				  *outBufLen);
	if (err != GPG_ERR_NO_ERROR) {
		printDebug(string("LibGCryptIf::doEncrypt(): gcry_cipher_encrypt() failed: ")
			   + gcry_strerror(err));
		ret = e_cryptNotImpl;
		goto out_delete;
	}
	// remove all random padding
	unpadData(*outBuf, outBufLen);
	goto out_close;
out_delete:
	delete [] *outBuf;
out_close:
	gcry_cipher_close(handle);
out:
	return ret;
}

PwMerror LibGCryptIf::hash(unsigned char **outBuf,
			   size_t *outBufLen,
			   const unsigned char *inBuf,
			   size_t inBufLen,
			   char _algo)
{
	PwMerror ret = e_success;
	unsigned int hashLen;
	int algo = mapHashId(_algo);

	hashLen = gcry_md_get_algo_dlen(algo);
	*outBufLen = hashLen;
	*outBuf = new unsigned char[*outBufLen];
	gcry_md_hash_buffer(algo,
			    *outBuf,
			    inBuf,
			    inBufLen);
	return ret;
}

unsigned int LibGCryptIf::hashLength(char _algo)
{
	unsigned int ret;
	int algo = mapHashId(_algo);
	ret = gcry_md_get_algo_dlen(algo);
	return ret;
}

int LibGCryptIf::mapCipherId(char algo)
{
	switch (algo) {
	case PWM_CRYPT_AES128:
		return GCRY_CIPHER_AES;
	case PWM_CRYPT_AES192:
		return GCRY_CIPHER_AES192;
	case PWM_CRYPT_AES256:
		return GCRY_CIPHER_AES256;
	case PWM_CRYPT_3DES:
		return GCRY_CIPHER_3DES;
	case PWM_CRYPT_TWOFISH:
		return GCRY_CIPHER_TWOFISH;
	case PWM_CRYPT_TWOFISH128:
		return GCRY_CIPHER_TWOFISH128;
	default:
		BUG();
	}
	return GCRY_CIPHER_NONE;
}

int LibGCryptIf::mapHashId(char algo)
{
	switch (algo) {
	case PWM_HASH_SHA1:
		return GCRY_MD_SHA1;
	case PWM_HASH_SHA256:
		return GCRY_MD_SHA256;
	case PWM_HASH_SHA384:
		return GCRY_MD_SHA384;
	case PWM_HASH_SHA512:
		return GCRY_MD_SHA512;
	case PWM_HASH_MD5:
		return GCRY_MD_MD5;
	case PWM_HASH_RMD160:
		return GCRY_MD_RMD160;
	case PWM_HASH_TIGER:
		return GCRY_MD_TIGER;
	default:
		BUG();
	}
	return GCRY_MD_NONE;
}

bool LibGCryptIf::hashPassphrase(const unsigned char *pw,
				 size_t pwlen,
				 unsigned char *salt,
				 unsigned char *key,
				 size_t keylen,
				 bool create)
{
	DEK dek;
	STRING2KEY s2k;
	bool ret;

	dek.keylen = keylen;
	s2k.mode = 1;
	s2k.hash_algo = mapHashId(conf()->confGlobHashAlgo());
	s2k.count = 0;
	if (!create)
		memcpy(s2k.salt, salt, STRING2KEY_SALTLEN);
	ret = doHashPassphrase(&dek,
			       pw,
			       pwlen,
			       &s2k,
			       create);
	if (!ret)
		goto out;
	memcpy(key, dek.key, dek.keylen);
	if (create)
		memcpy(salt, s2k.salt, STRING2KEY_SALTLEN);
out:
	return ret;
}


bool LibGCryptIf::doHashPassphrase(DEK *dek,
				   const unsigned char *pw,
				   size_t pwlen,
				   STRING2KEY *s2k,
				   bool create)
{
	// This function is derived from GnuPG-1.2.5-rc2
	gcry_md_hd_t md;
	gcry_error_t err;
	bool ret = true;
	size_t pass, i;
	size_t used = 0;

	PWM_ASSERT(s2k->hash_algo);
	BUG_ON(!(dek->keylen > 0 && dek->keylen <= array_size(dek->key)));

	err = gcry_md_open(&md, s2k->hash_algo, 0);
	if (err != GPG_ERR_NO_ERROR) {
		ret = false;
		goto out;
	}
	for (pass = 0; used < dek->keylen; pass++) {
		if (pass) {
			gcry_md_reset(md);
			for (i = 0; i < pass; i++) // preset the hash context
			gcry_md_putc(md, 0);
		}
		if (s2k->mode == 1 || s2k->mode == 3) {
			size_t len2 = pwlen + 8;
			size_t count = len2;

			if (create && !pass) {
				Randomizer *rnd = Randomizer::obj();
				const unsigned int salt_len = 8;
				string rndBuf(rnd->genRndBuf(salt_len));
				memcpy(s2k->salt, rndBuf.c_str(), salt_len);
				if (s2k->mode == 3)
					s2k->count = 96; // 65536 iterations
			}
			if (s2k->mode == 3) {
				count = (16ul + (s2k->count & 15)) << ((s2k->count >> 4) + 6);
				if (count < len2)
					count = len2;
			}
			// a little bit complicated because we need a ulong for count
			while (count > len2) { // maybe iterated+salted
				gcry_md_write(md, s2k->salt, 8);
				gcry_md_write(md, pw, pwlen);
				count -= len2;
			}
			if (count < 8) {
				gcry_md_write(md, s2k->salt, count);
			} else {
				gcry_md_write(md, s2k->salt, 8);
				count -= 8;
				gcry_md_write(md, pw, count);
			}
		} else
			gcry_md_write(md, pw, pwlen);
		gcry_md_final(md);
		i = gcry_md_get_algo_dlen(s2k->hash_algo);
		if (i > dek->keylen - used)
			i = dek->keylen - used;
		memcpy(dek->key+used, gcry_md_read(md, s2k->hash_algo), i);
		used += i;
	}
	gcry_md_close(md);
out:
	return ret;
}

void LibGCryptIf::padData(unsigned char *buf,
			  size_t bufLen,
			  size_t boundary)
{
	size_t numPadBytes = boundary - ((bufLen + 1) % boundary);
	buf[bufLen] = static_cast<char>(0x01);
	size_t i = 0;
	Randomizer *rnd = Randomizer::obj();
	char c;
	unsigned char *b;
	while (i < numPadBytes) {
		c = rnd->genRndChar();
		if (c == static_cast<char>(0x01))
			continue;
		b = buf + bufLen + 1 + i;
		*b = c;
		++i;
	}
}

void LibGCryptIf::unpadData(const unsigned char *buf,
		 	    size_t *bufLen)
{
	size_t pos;
	BUG_ON(*bufLen % 8);
	pos = *bufLen - 1;
	while (buf[pos] != static_cast<char>(0x01)) {
		BUG_ON(!pos);
		--pos;
	}
	*bufLen = pos;
}

#endif // CONFIG_PWMANAGER_CRYPTO