summaryrefslogtreecommitdiff
path: root/PORTING
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2008-05-24 16:50:07 +0000
committerJeffrey Stedfast <fejj@src.gnome.org>2008-05-24 16:50:07 +0000
commitcf204efa0c6d5c0dc5cbfec20cdd15808f04aa8d (patch)
treebd06d4f1e76d7c0e3fffd673856a9e4381871c15 /PORTING
parentc02e2b6b37275ecd4c25480b02331fa1018b301f (diff)
downloadgmime-cf204efa0c6d5c0dc5cbfec20cdd15808f04aa8d.tar.gz
updated
svn path=/trunk/; revision=1268
Diffstat (limited to 'PORTING')
-rw-r--r--PORTING17
1 files changed, 17 insertions, 0 deletions
diff --git a/PORTING b/PORTING
index db44647a..fba4ce4d 100644
--- a/PORTING
+++ b/PORTING
@@ -44,6 +44,23 @@ Similarly, calls to g_mime_part_write_to_stream() or
g_mime_message_write_to_stream() should be replaced with calls to
g_mime_object_write_to_stream() instead.
+For the sake of consistency, functions such as g_mime_cipher_sign()
+were renamed to g_mime_cipher_context_sign() in order to match their
+class name. The old names have been deprecated but the symbols are
+still there to ease migration. Below is a mapping of the function name
+changes:
+
+GMime 2.2 Name | GMime 2.4 Name
+-------------------------------------------------------------
+g_mime_cipher_hash_id g_mime_cipher_context_hash_id
+g_mime_cipher_hash_name g_mime_cipher_context_hash_name
+g_mime_cipher_sign g_mime_cipher_context_sign
+g_mime_cipher_verify g_mime_cipher_context_verify
+g_mime_cipher_encrypt g_mime_cipher_context_encrypt
+g_mime_cipher_decrypt g_mime_cipher_context_decrypt
+g_mime_cipher_import_keys g_mime_cipher_context_import_keys
+g_mime_cipher_export_keys g_mime_cipher_context_export_keys
+
Porting from GMime 2.0 to GMime 2.2
-----------------------------------