~ubuntu-branches/ubuntu/quantal/nettle/quantal

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Bazaar Package Importer
  • Author(s): Marek Habersack
  • Date: 2004-05-04 15:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20040504155602-7jbhw5mabvwksl3j
Tags: upstream-1.10
ImportĀ upstreamĀ versionĀ 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
Counter, 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.