Stef Walter
446648da52
egg-hex: Bring over changes from gnome-keyring and gcr
2012-11-07 23:15:44 +01:00
Stef Walter
e666db528e
Remove some unused test code
2012-11-06 13:37:01 +01:00
Stef Walter
7cea18071b
Bring over a new version of the secure memory code from gcr
...
* This allows libraries to share the pool if they have the same
version of the secure memory code.
2012-10-27 12:23:39 +02:00
Xi Wang
275d314d57
Fix incorrect loop condition in egg_hkdf_perform()
...
This does not cause a change in behavior (as evidenced by tests,
at least on linux when built with gcc) but is more correct code,
and less likely to be miscompiled.
The condition (i < 256) in the following loop is always false since i
is of type guchar, which is at most 255.
guchar i;
...
for (i = 1; i < 256; ++i) { ... }
This patch changes i to a larger type gint.
Also in the loop we have:
gcry_md_write (md2, &i, 1);
change it to use gcry_md_putc().
2012-10-23 21:41:38 +02:00
Stef Walter
125289ae45
Fix license header issues
...
* Update to LGPL 2.1
* Fix typos in license comments
* Update FSF address
https://bugzilla.gnome.org/show_bug.cgi?id=673194
2012-03-31 15:33:25 +02:00
Stef Walter
dd83ac0db3
Only copy the correct amount of bytes from SecretValue
...
* When transferring to a null-terminated password
2012-03-25 12:17:03 +02:00
Stef Walter
d797ef2ba3
Testing item stuff, and fixing bugs
2012-02-03 20:44:45 +01:00
Stef Walter
dea9a3a043
Test creating items and collections
2012-02-03 20:44:45 +01:00
Stef Walter
f2e275f25e
Prompting and item deletion
2012-01-13 14:45:55 +01:00
Stef Walter
a075105bf4
Fix problem when compiling without valgrind
2011-11-19 08:04:28 +01:00
Stef Walter
17fade3173
Implement gsecret_service_get_secrets_for_paths() and friends
...
* Lots of testing, fine tuning and other bits too.
2011-11-12 08:08:12 +01:00
Stef Walter
4893c73c5b
Valgrind integration, refactor build process
...
* Cleanup secure memory allocator for valgrind.
* Bring valgrind headers in.
* Add lots of suppressions for glib, gdbus, gcrypt
* Fix up a bunch of bugs where things weren't getting freed
* Add new 'make check-memory' target
2011-11-06 13:41:21 +01:00
Stef Walter
e670fe5645
Fix for deprecations in glib 2.31.0
2011-11-06 13:38:51 +01:00
Stef Walter
51896081f0
Add --enable-debug and --enable-coverage, egg tests etc
2011-09-25 21:20:21 +02:00
Stef Walter
ef85c4ff45
Add dependency on libgcrypt
...
* This can be disabled using --disable-libgcrypt, which then disables
encryption of secrets in transit to the secret service
2011-09-25 10:03:48 +02:00
Stef Walter
b1b54f525d
More Implementation of GSecretService session related code.
2011-09-25 08:22:36 +02:00
Stef Walter
3dfd7aa70f
Initial module setup. Implement GSecretData
2011-08-08 17:43:47 +02:00