summaryrefslogtreecommitdiff
path: root/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2008-07-11 15:50:46 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2008-07-11 15:50:46 +0000
commit14c7f45cdae826f88dc539c8c38dd95caf305731 (patch)
tree832da054b7cfb2dc6fd63339af736625f31d21aa /utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS
parent7c84ede3781c27db73403bd6302f320c76a58c8c (diff)
downloadrockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.tar.gz
rockbox-14c7f45cdae826f88dc539c8c38dd95caf305731.zip
Add zook's ZenUtils to SVN
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18010 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS')
-rwxr-xr-xutils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS69
1 files changed, 69 insertions, 0 deletions
diff --git a/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS
new file mode 100755
index 0000000000..577c5adac5
--- /dev/null
+++ b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/BUGS
@@ -0,0 +1,69 @@
1Legend:
2 - = open bug
3 * = fixed bug
4
54.1.0:
6 - SuSE 9.2 (x86) compiler is buggy: the MMX-optimized version fails all
7 test vectors. Since all other Linux distro's handle this perfectly it's
8 up to them to fix this bug.
9
103.1.0:
11 * Error in final result computation of mpextgcd_w in certain circumstances.
12 * PowerPC 64-bit assembler symbols aren't defined according to LSB 1.3.
13
143.0.0:
15 - Can't seem to generate 64-bit shared libraries on AIX; use
16 --disable-shared on this platform for now.
17 - Intel icc can't cope with gcj headers. There's also a problem in
18 combination with aio.h; solution should be to not test gcj when using
19 this compiler. As a workaround, you can specify --without-javaglue.
20 - GCC 3.3 produces faster output for Blowfish on Pentium 4 than the
21 included assembler source; try coding two Blowfish rounds (without swap)
22 in C and compile to assembler to see how GCC accomplishes this.
23
242.3.0pre:
25 * bug in certain instances of computing modular inverse.
26 * incorrectly translated intel-style assembler version of x86 mp32odd
27 and mp32even routines into gnu assembler format.
28 * base64 decoding of '+' and '/' characters is wrong.
29 * incorrect testing of the result of the gcd operation in mp32prndconone.
30 * Chinese Remainer Theorem for RSA private key operation doesn't work
31 * incorrect header file inclusion when --disable-threads is selected or
32 when no multithreading is available.
33
342.2.0:
35 [ Released by Jeff Johnson of RedHat, Inc.; lint & doxygen enhanced version
36 of 2.1.0. ]
37
382.1.0:
39 * Entropy gathering from /dev/dsp contained error; size in words of entropy
40 data to gather was overwritten with audio sample size - which resulted in
41 much less entropy.
42
432.0.0:
44 - Chinese Remainder Theorem for RSA private key operation doesn't work; it
45 needs fixing.
46
471.1.2:
48 * SHA-1 i586 assembler code uses local variables below the current stack
49 frame.
50
511.1.1:
52 * discrete logarithm domain parameter generator calculations contains bugs
53 - was detected in this release but present since the first release.
54
551.1.0:
56 * The javaglue produces a NullPointerException when initializing with a
57 null IV; this should be treated correctly, i.e. as an all zero IV.
58
591.0.2:
60
611.0.1:
62 * The Windows 2000 bug is still around
63
641.0.0:
65 * On Windows 2000, the entropy system gets error WAVERR_BADFORMAT in
66 waveInOpen; So far I've been unable to determine why the system does this
67 for format WAVE_FORMAT_PCM. Suggestions to fix this problem are more than
68 welcome.
69 * The assembler code for SHA-1 in gnu/fips180opt.gas.i586.s contains bugs.