annotate ui/icons.qrc @ 359:f6ce186cebc2

If DO_RELEASE_BUILD is set use pubkey-release and test with it This currently fails because polarssl rejects keys with a public exponent larger then 64 bit. With the following patch all tests pass. But this currently awaits upstream comment. https://polarssl.org/discussions/bug-report-issues/rsa-keys-with-large-public-exponents-are-rejected --- rsa.c.orig 2014-04-10 17:22:32.727290031 +0200 +++ rsa.c 2014-04-10 17:22:38.847410225 +0200 @@ -154,7 +154,7 @@ return( POLARSSL_ERR_RSA_KEY_CHECK_FAILED ); if( mpi_msb( &ctx->E ) < 2 || - mpi_msb( &ctx->E ) > 64 ) + mpi_msb( &ctx->E ) > POLARSSL_MPI_MAX_BITS ) return( POLARSSL_ERR_RSA_KEY_CHECK_FAILED ); return( 0 );
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 10 Apr 2014 17:50:44 +0200
parents f84d9ad9bfa9
children 340b8759d005
rev   line source
0
cb0cde2c5eb9 Initial commit. Basically a Hello World with a Tray Icon.
Andre Heinecke <aheinecke@intevation.de>
parents:
diff changeset
1 <!DOCTYPE RCC><RCC version="1.0">
cb0cde2c5eb9 Initial commit. Basically a Hello World with a Tray Icon.
Andre Heinecke <aheinecke@intevation.de>
parents:
diff changeset
2 <qresource>
cb0cde2c5eb9 Initial commit. Basically a Hello World with a Tray Icon.
Andre Heinecke <aheinecke@intevation.de>
parents:
diff changeset
3 <file>img/tray_22.png</file>
208
135eae057491 Add the logo.png as a resource
Andre Heinecke <andre.heinecke@intevation.de>
parents: 0
diff changeset
4 <file>img/logo.png</file>
209
f84d9ad9bfa9 Added new images and icons.
Raimund Renkert <rrenkert@intevation.de>
parents: 208
diff changeset
5 <file>img/logo-small.png</file>
f84d9ad9bfa9 Added new images and icons.
Raimund Renkert <rrenkert@intevation.de>
parents: 208
diff changeset
6 <file>img/list-add.png</file>
f84d9ad9bfa9 Added new images and icons.
Raimund Renkert <rrenkert@intevation.de>
parents: 208
diff changeset
7 <file>img/list-remove.png</file>
0
cb0cde2c5eb9 Initial commit. Basically a Hello World with a Tray Icon.
Andre Heinecke <aheinecke@intevation.de>
parents:
diff changeset
8 </qresource>
cb0cde2c5eb9 Initial commit. Basically a Hello World with a Tray Icon.
Andre Heinecke <aheinecke@intevation.de>
parents:
diff changeset
9 </RCC>

http://wald.intevation.org/projects/trustbridge/