📄 readme
字号:
consistent. The three types are now CRYPT_KEYSET_ODBC for databases accessed
through an ODBC interface, CRYPT_KEYSET_DATABASE for databases with the
backend-specific interface code compiled into cryptlib, and
CRYPT_KEYSET_PLUGIN for databases accessed via the cryptlib database plugin
interface. The CRYPT_KEYSET_DATABASE type can be selected in the usual manner
at compile time with the USE_xxx compile options, see the manual for more
details on databases and compile options.
Changes in 3.1 beta 4
=====================
The changes in this release are mostly to fix a variety of minor problems that
cropped up in beta 3 related to portability across different systems. One
notable change is the inclusion of the CRYPT_OPTION_CERT_OBLIVIOUS
configuration option. This option is present in order to allow cryptlib to
handle the large number of broken certificates in use. Enabling this option
(setting it to TRUE) will cause cryptlib to ignore all certificate extensions
except key usage and the CA flag, making it compatible with other PKI
software. A future version of cryptlib will replace this option with a
multivalue selection allowing a choice of checking ranging from very little
(in order to be compatible with existing software and to process existing
certificates) through to full PKIX compliance (which will, however, reject a
large number of certificates in use today).
Changes in 3.1 beta 3
=====================
The way in which GeneralNames and DNs in GeneralNames are selected has
changed. Until now GeneralNames were selected with:
cryptSetAttribute( cryptCert, attributeID, CRYPT_UNUSED );
which selected the GeneralName with the given attributeID and also updated the
attribute cursor. Selecting the DN within the GeneralName required a second
selection to specify the DN. This special-case behaviour was inconsistent
with the way other attributes were handled, and caused some confusion for
users, as well as obscuring the fact that the attribute cursor was being
updated as it would be for an explicit attribute selection. Beta 3 changes
the selection mechanism so that it matches that used for all other attributes:
cryptSetAttribute( cryptCert, CRYPT_CERTINFO_CURRENT_EXTENSION,
attributeID );
(or whatever alternative attribute cursor mechanism is preferred). In
addition, it's no longer necessary to perform a two-stage select for DNs in
GeneralNames, since these are now implicitly selected by selecting the
GeneralName that contains them. This means that handling of GeneralName
attributes is now consistent with all other attribute types.
Because GeneralNames are now automatically selected, you need to be careful
when working with a DN such as the certificate subject name after selecting a
GeneralName, since a GeneralName contains its own DN which will be the one
that's accessed after selecting the GeneralName. For example if you set an
email address (which is part of the GeneralName), this will select the
GeneralName, and any subsequent DN accesses will refer to the DN inside the
GeneralName rather than the subject name DN. It's good practice to move back
to the subject name with:
cryptSetAttribute( cryptCert, CRYPT_CERTINFO_SUBJECTNAME,
CRYPT_UNUSED );
after working with a GeneralName to make sure that you're referring to the
correct DN.
Microsoft broke the Jet (MS Access) database engine at around SP4 (opinions on
the exact time vary). This version, or newer versions, may be installed
automatically when applying service packs or installing other software
(different broken versions of Jet are installed in Win2K SP2 and SP3, for
example, and it's built into Windows XP). The symptoms are that when running
the self-test you'll get an error message "Cannot open any more tables" even
though no tables are open, or more seriously a deadlock inside the VC++
runtime file access routines. The details of this problem are discussed in
Microsoft Knowledge Base Article 304536, Microsoft Knowledge Base Article
282010, and Microsoft Knowledge Base Article 239114.
The Microsoft-recommended fix is to upgrade to Jet SP6. This typically
requires downloading and installing the SP6 upgrade from the Microsoft
Download Centre, simply installing recent MDAC components won't work since
there were no Jet components included after MDAC 2.5 SP2, and installing
Office XP or Access 2002 may not work either since the setup programs only
update system files in certain situations and to a certain level. On the
other hand Jet SP6 may not install unless it detects an appropriate service
pack level on the system.
Non-Microsoft advice is to downgrade to a version of Jet at SP3 or earlier by
replacing msjetoledb40.dll and msjet40.dll with files from JET OLE DB SP3,
since even the latest version (SP6) still appears to exhibit these problems.
A better solution is to avoid the use of Jet entirely, and in particular you
should *never* use Jet in a production environment since it's far too buggy
and unstable to trust live data to (it was probably named Jet because it both
sucks and blows).
Changes in 3.1 beta 2
=====================
The last two type names that didn't follow the pattern xxx_TYPE, CRYPT_ALGO
and CRYPT_MODE, have now been brought into line with the other names, so you
need to change the type names to CRYPT_ALGO_TYPE and CRYPT_MODE_TYPE if you're
using them in your code.
SSHv2 server support is now present.
PKCS #11 devices can now be auto-detected by specifying the device name as
"[Autodetect]" if the device name isn't known.
Pre-connected network sockets can be supplied to sessions as the
CRYPT_SESSINFO_NETWORKSOCKET attribute, rather than having cryptlib
connect/disconnect the socket itself.
The PKCS #15 format has had various features added to it over time (see the
note for 3.0 beta 1), cryptlib has supported these in a read-only manner,
meaning that it creates keysets that are as backwards-compatible as possible
with old versions of the code that used earlier versions of PKCS #15. In
order to make some features like certificate update in a keyset possible, it's
necessary to write keyset fields from newer versions of PKCS #15. All betas
after this one will write these newer fields in order to enable advanced
features of PKCS #15. Anyone still using very old betas should upgrade to a
current version in order to take advantage of the advanced features supported
by newer-format PKCS #15 keysets.
Changes in 3.1 beta 1
=====================
Beta 1 includes support for PGP and OpenPGP, which is handled in standard
envelope fashion with a data format of CRYPT_FORMAT_PGP. Note that there are
a number of incompatible and semi-compatible variants of PGP in existence,
with the major types being PGP 2.x, PGP 5.x, NAI PGP, GPG, and the ckt PGP
builds, and many interesting lesser variations such as the disastry builds
that take PGP 2.x and update it to support OpenPGP ciphers without actually
being OpenPGP. An overview of different PGP versions can be found at
http://rmarq.pair.com/pgp/, and detailed information on incompatibilities can
be found at http://home.arcor.de/kraven/pgp/pgpindex.html. cryptlib has been
tested against most normal versions of PGP, but there will certainly be
versions out there that produce data that cryptlib can't read (one example
being a version that uses random key IDs in encrypted data in order to obscure
who the data is encrypted for, which also makes it impossible to decrypt with
any normal PGP version). If you run into something produced by one of these
oddball versions, please send me a copy so that I can determine whether it's
worth adding custom code to support it.
The PGP data format imposes a number of restrictions on the standard
enveloping process, which include:
- Use of nested signed data is discouraged unless you add an intermediate
layer of encryption, since PGP doesn't directly handle nested signatures.
- When signing data, the nested content type can only be the default (data)
for the reason given above.
- It's not possible to mix password and public-key key exchange actions in
the same message. Similarly, it's not possible to have more than one
password key exchange action in one message.
- Handling of separate hashing for detached signatures is somewhat peculiar
and requires special care.
Changes in 3.0 release
======================
cryptlib 3.1 will introduce a new function cryptFlushData() to replace the
current practice of calling cryptPushData() will all-null parameters, a change
required for languages like Delphi and VB that don't handle C null pointers
too well. This function is already present in 3.0 for forwards-compatibility
purposes, it's recommended that you update your code to call cryptFlushData()
in place of cryptPushData() with null parameters (although the existing
cryptPushData() mechanism will still work).
The Unix randomness-gathering code will now check for and use EGD/PRNGD if
they're available.
The requirement that cryptlib be built via a network share under Windows has
been removed.
HTTP keyset access (CRYPT_KEYSET_HTTP) formerly required that the keyset be
opened without a name being given, with the full URL being specified as the
key ID to retrieve keys. This was both somewhat inconsistent with the other
keyset types, and didn't work well with persistent connections, for example
where multiple certificates were being read from a single server. This has
been changed so that the server URL is given when the keyset is opened as it
is for other keyset types, and a key ID is given when reading individual keys.
When reading keys with a fixed URL (with no per-key ID), the special ID
"[none]" can be used to indicate that the server URL points directly at the
certificate. In the simplest case the previous usage:
cryptKeysetOpen( &cryptKeyset, CRYPT_UNUSED, CRYPT_KEYSET_HTTP, NULL,
CRYPT_KEYOPT_READONLY );
cryptGetPublicKey( cryptKeyset, &cryptCert, CRYPT_KEYID_NAME,
"http://www.server.com/cert.der" );
now becomes:
cryptKeysetOpen( &cryptKeyset, CRYPT_UNUSED, CRYPT_KEYSET_HTTP,
"http://www.server.com/cert.der", CRYPT_KEYOPT_READONLY );
cryptGetPublicKey( cryptKeyset, &cryptCert, CRYPT_KEYID_NAME,
"[none]" );
Reading multiple certificates, for example via a CGI interface on the server,
is done with:
cryptKeysetOpen( &cryptKeyset, CRYPT_UNUSED, CRYPT_KEYSET_HTTP,
"http://www.server.com/certstore.cgi",
CRYPT_KEYOPT_READONLY );
cryptGetPublicKey( cryptKeyset, &cryptCert, CRYPT_KEYID_NAME,
"user1" );
cryptGetPublicKey( cryptKeyset, &cryptCert, CRYPT_KEYID_NAME,
"user2" );
cryptGetPublicKey( cryptKeyset, &cryptCert, CRYPT_KEYID_NAME,
"user3" );
Changes in 3.0 final beta
=========================
The cryptlib 3.0 final release divides the network timeout parameter into two
parts, a CRYPT_OPTION_NET_CONNECTTIMEOUT which is applied during the
connection setup process and a CRYPT_OPTION_NET_TIMEOUT which is applied
during reads and writes (although in practice writes are almost always
instantaneous). This means that it's now possible to avoid nonblocking I/O if
required.
Use of SSL/TLS client certificates is now enabled.
The final version of the S/MIME PasswordRecipientInfo (PWRI) RFC contained a
change in the way the key wrap algorithm is identified. The cryptlib final
release produces a PWRI that follows the final RFC, but will also read the
older format produced by earlier versions of cryptlib. If it's necessary to
generate PWRI data in the old format, you can change the "#if 1" in
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -