~ubuntu-branches/ubuntu/precise/nettle/precise

« back to all changes in this revision

Viewing changes to testsuite/dsa-test.c

  • Committer: Bazaar Package Importer
  • Author(s): Magnus Holmgren
  • Date: 2009-08-02 17:20:28 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090802172028-vyuluns8dgyxmtfg
Tags: 2.0-1
* Merge with experimental branch.
  - There was no lsh-utils 2.0.3-2 in Debian, so the conflict is with
    lsh-utils < 2.0.4-dfsg-1.
  - Drop the transitional libnettle-dev package that was in experimental. 
    Due to the split, depending packages will need sourceful uploads anyway.
* New upstream version.
  - Drop 30_sparc_aes_include.dpatch; incorporated upstream.
* Add debug package.
* nettle-dev.doc-info: Correct Section and Document.
* Bump Standards-Version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
int
4
4
test_main(void)
5
5
{
6
 
#if WITH_PUBLIC_KEY
7
6
  struct dsa_public_key pub;
8
7
  struct dsa_private_key key;
9
8
 
44
43
  dsa_private_key_clear(&key);
45
44
 
46
45
  SUCCESS();
47
 
  
48
 
#else /* !WITH_PUBLIC_KEY */
49
 
  SKIP();
50
 
#endif /* !WITH_PUBLIC_KEY */
51
46
}