833ca25fa0
* New function gcry_kdf_derive implementing OpenPGP S2K algorithms and PBKDF2. * Support for WindowsCE. * Support for ECDH. * Support for OAEP and PSS methods as described by RFC-3447. * Fixed PKCS v1.5 code to always return the leading zero. * New format specifiers "%M" and "%u" for gcry_sexp_build. * Support opaque MPIs with "%m" and "%M" in gcry_sexp_build. * New functions gcry_pk_get_curve and gcry_pk_get_param to map ECC parameters to a curve name and to retrieve parameter values. * gcry_mpi_cmp applied to opaque values has a defined semantic now. * Uses the Intel AES-NI instructions if available. * The use of the deprecated Alternative Public Key Interface (gcry_ac_*) will now print compile time warnings. * The module register subsystem has been deprecated. This subsystem is not flexible enough and would always require ABI changes to extend the internal interfaces. It will eventually be removed. Please contact us on the gcrypt-devel mailing list to discuss whether you really need this feature or how it can be replaced by an internal plugin mechanism. * CTR mode may now be used with data chunks of arbitrary length.
12 lines
537 B
Text
12 lines
537 B
Text
$NetBSD: patch-bb,v 1.2 2011/07/13 21:21:52 adam Exp $
|
|
|
|
--- src/cipher.h.orig 2009-04-02 09:25:32.000000000 +0000
|
|
+++ src/cipher.h
|
|
@@ -135,6 +135,7 @@ extern gcry_cipher_spec_t _gcry_cipher_s
|
|
extern gcry_cipher_spec_t _gcry_cipher_spec_camellia128;
|
|
extern gcry_cipher_spec_t _gcry_cipher_spec_camellia192;
|
|
extern gcry_cipher_spec_t _gcry_cipher_spec_camellia256;
|
|
+extern gcry_cipher_spec_t _gcry_cipher_spec_idea;
|
|
|
|
extern cipher_extra_spec_t _gcry_cipher_extraspec_tripledes;
|
|
extern cipher_extra_spec_t _gcry_cipher_extraspec_aes;
|