[Title] Add packaging/nettle.spec to build nettle on OBS system
[external/nettle.git] / TODO
1 Public key support, analogous to that provided by RSAREF. Suggested by
2 Dan Egnor. Signatures are done now, but RSA encryption is still
3 missing. References:
4
5   http://download.gale.org/rsaref20.tar.Z
6   http://www.openssl.org/docs/crypto/evp.html
7   http://www.openssl.org/docs/crypto/rsa.html
8
9 More feedback modes, in order of decreasing priority:  CBC-MAC, OFB,
10 and CFB. Suggested by Rafael 'Dido' Sevilla. References:
11
12   http://csrc.nist.gov/encryption/modes/Recommendation/Modes01.pdf
13
14 Valgrind reports errors on the des-compat test program. Investigate.
15
16
17 Change the convention for declaring function pointers. Instead of for
18 example
19
20   typedef void *
21   nettle_realloc_func(void *ctx, void *p, unsigned length);
22
23 use
24
25   typedef void
26   nettle_realloc_func(void *ctx, void *p, unsigned length);
27
28 The make rules for building position independent *_p.o files doesn't
29 get dependencies right.