2001-12-18 Marcus Brinkmann <marcus@g10code.de>
[gpgme.git] / NEWS
1
2  * New interface gpgme_set_protocol() to set the protocol and thus the
3    crypto engine to be used by the context.  Currently, the OpenPGP
4    and the CMS protocols are supported.  They are specified by the new
5    preprocessor symbols GPGME_PROTOCOL_OpenPGP and GPGME_PROTOCOL_CMS.
6    A new context uses the OpenPGP engine by default.
7
8  * gpgme_get_engine_info() returns information for all crypto engines
9    compiled into the library.  The XML format has changed.  To
10    reliably get the version of a crypto engine, the <version> tag
11    after the appropriate <protocol> tag has to be looked for.
12
13  * New interface gpgme_engine_check_version(), obsoleting
14    gpgme_check_engine().  Check the version of all engines you are
15    supporting in your software.
16
17  * GpgmeKey lists the user ids in the order as they are returned by
18    GnuPG, first the primary key with index 0, then the sub-user ids.
19
20  * New operation gpgme_op_decrypt_verify() to decrypt and verify
21    signatures simultaneously.
22
23  * The new interface gpgme_op_keylist_end() terminates a pending
24    keylist operation.  A keylist operation is also terminated when
25    gpgme_op_keylist_next() returns GPGME_EOF.
26
27  * GPGME can be compiled without GnuPG being installed (`--with-gpg=PATH'),
28    cross-compiled, or even compiled without support for GnuPG
29    (`--without-gpg').
30
31  * GPGME can be compiled with support for GpgSM (GnuPG for S/MIME,
32    `--with-gpgsm=PATH').  It is enabled by default if the `gpgsm' is found
33    in the path, but it can also be compiled without support for GpgSM
34    (`--without-gpgsm').
35
36  * CryptPlug modules for GPGME are included and can be enabled at
37    configure time (`--enable-gpgmeplug').  There is one module which
38    uses the GnuPG engine (`gpgmeplug') and one module which uses the
39    GpgSM engine (`gpgsmplug').
40
41 * Interface changes relative to the latest 0.2.x release:
42 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
43 gpgme_key_get_as_xml            CHANGED: Sub-user ids reversed in order.
44 gpgme_key_get_string_attr       CHANGED: User ids reversed in order.
45 gpgme_key_get_ulong_attr        CHANGED: User ids reversed in order.
46 gpgme_get_engine_info           CHANGED: New format, extended content.
47 gpgme_engine_check_version      NEW
48 gpgme_decrypt_verify_start      NEW
49 gpgme_decrypt_verify            NEW
50 gpgme_op_keylist_next           NEW
51 gpgme_set_protocol              NEW
52 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
53
54
55 Noteworthy changes in version 0.2.3 (2001-09-17)
56 ------------------------------------------------
57
58  * New function gpgme_get_op_info which can be used to get the micalg
59    parameter needed for MOSS.
60
61  * New functions gpgme_get_armor and gpgme_get_textmode.
62
63  * The usual bug fixes and some minor functionality improvements.
64
65  * Added a simple encryption component for MS-Windows; however the
66    build procedure might have some problems.
67
68
69 Noteworthy changes in version 0.2.2 (2001-06-12)
70 ------------------------------------------------
71  
72  * Implemented a key cache.
73
74  * Fixed a race condition under W32 and some other bug fixes.
75
76
77 Noteworthy changes in version 0.2.1 (2001-04-02)
78 ------------------------------------------------
79
80  * Changed debug output and GPGME_DEBUG variable (gpgme/debug.c)
81
82  * Handle GnuPG's new key capabilities output and support revocation
83    et al. attributes
84
85  * Made the W32 support more robust.
86
87
88  Copyright 2001 g10 Code GmbH
89
90  This file is free software; as a special exception the author gives
91  unlimited permission to copy and/or distribute it, with or without
92  modifications, as long as this notice is preserved.
93
94  This file is distributed in the hope that it will be useful, but
95  WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
96  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.