-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
56 lines (41 loc) · 2.12 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
This library provides access to the following Non-Deterministic random number generators
1. Quantum Random Bit Generator at Ruder Boskovic Institute (Croatia, http://random.irb.hr)
Generation method: photonic emission in semiconductors
(c) 2010-2011 Roberto Javier Godoy
(c) 2007 Brendan Burns,
(c) 2007 Radomir Stevanovic and Rudjer Boskovic Institute.
2. TRNG www.random.org by Mads Haahr
Generation method: atmospheric noise
(c) 2008-2009 Roberto Javier Godoy
random.org random.irb.hr
Peak quota 122 KiB/day 100 MiB/day
Maximum sustained quota 24.41 KiB/day 33.03 MiB/day
Transport HTTP/HTTPS TCP (non encrypted protocol)
Login required NO YES
Any suggestion is strongly encouraged and it will be enthusiastly received
by the author of this software ([email protected])
Caveat user:
I'm not good at documenting things... if you think that something is not
clear, or you are absolutely lost about how to using this library, just
write me; I will be glad to help you.
If something doesn't work as expected, please tell me (either by mail, or by
filling a bug with the SourceForge project bug tracker
Requirements:
Java SE 1.6
Optional:
Jakarta commons-loggin library, downloadable from http://commons.apache.org/logging/
---------
Changes in v1.0
- Add support for QRBG from Ruder Boskovic Institute
- Update www.random.org certificate
Changes in v0.2
- Add proxy for org.apache.commons.logging.LogFactory (avoiding direct dependency on the library)
- Fix endless loop when RjgodoyProvider is the default provider and a PRNG is used
- Remove duplicate log messages in MH_SecureRandomSpi constructor and RjgodoyProvider
- Fix issue when loading certificate from JAR file
Changes in v0.1
- Add trim() in MH_HttpCient.checkQuota()
Known Bugs
- when using SSL, the KeyGenerator uses the default SecureRandom.
this blocks if we are the default SecureRandom. This behaviour cannot be overriden
using Java API.