| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=674318
|
|
|
|
|
|
|
|
|
|
|
| |
* In empathy-tls-test.c use a proper PKCS#11 mock module,
which we can place certificate anchors and pinned certificates in.
* Fix EmpathyTlsVerifier to check for server trust assertions
not client ones, this was a bug highlighted by fixing tests.
https://bugzilla.gnome.org/show_bug.cgi?id=668186
https://bugzilla.gnome.org/show_bug.cgi?id=668261
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=668186
|
|
|
|
|
|
|
|
|
|
|
| |
Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy
with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref.
I used this command to generate this patch:
for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done
See Danielle's blog for explanation of possible bug _free can do:
http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/
|
| |
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=636258#c3
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=636258#c3
|
|
|
|
|
| |
Rather than cluttering up configure, lookup the relevant
directory at runtime.
|
|
|
|
|
|
| |
Add various tests which load gnome-keyring PKCS#11 modules and
use them in the TLS verification. These are the standalone
versions of the builtin gnome-keyring PKCS#11 modules.
|
|
|
|
|
| |
This test depends on the certificates you have in gnome-keyring,
will fix this dependency in later commits.
|
|
Create a mock o.f.T.Authentication.TLSCertificate object and connect
to it in various tests.
Loads certificate data from certificates/ subdir
|