- Jan 15, 2014
-
-
akwizgran authored
-
- Jan 14, 2014
- Jan 13, 2014
-
-
akwizgran authored
Note that this is only the generator part of Fortuna, not the accumulator. The generator requires a seed, which is provided by a platform-specific implementation of SeedProvider. On Linux the implementation reads the seed from /dev/urandom.
-
- Jan 09, 2014
- Jan 08, 2014
- Jan 04, 2014
-
-
akwizgran authored
Offered and requested message IDs are stored in the database rather than being owned by DuplexConnections. This paves the way for moving to a simplex transport layer.
-
- Dec 22, 2013
-
-
akwizgran authored
-
- Dec 20, 2013
-
-
akwizgran authored
The distinction between inbox groups and other groups can be maintained internally, there's no need to represent it on the wire.
-
- Dec 19, 2013
- Dec 11, 2013
-
-
akwizgran authored
This produces a saner user experience when devices have differing clocks.
-
- Dec 10, 2013
-
-
akwizgran authored
-
- Nov 30, 2013
-
-
akwizgran authored
-
- Nov 29, 2013
-
-
akwizgran authored
-
- Nov 24, 2013
-
-
akwizgran authored
-
- Nov 22, 2013
-
-
akwizgran authored
-
- Nov 19, 2013
-
-
akwizgran authored
The Request packet now contains a list of message IDs, rather than a bitmap referring to the list of messages IDs in the Offer. This allows the Request to be understood out of context, e.g. if the Offer and Request are sent over separate connections or a connection is replayed.
-
akwizgran authored
-
akwizgran authored
-
- Sep 27, 2013
- Jul 27, 2013
-
-
akwizgran authored
The method used by Commons IO to get the available disk space fails on Android devices that lack a df binary - use the Android API instead.
-
- Jun 27, 2013
-
-
akwizgran authored
This removes the other projects' dependency on the Android API.
-
- Jun 17, 2013
-
-
akwizgran authored
-
- Jun 14, 2013
-
-
akwizgran authored
-
- Jun 13, 2013
-
-
akwizgran authored
-
akwizgran authored
Both devices try to make outgoing connections and accept incoming connections simultaneously. This should lead to faster connection establishment when there are asymmetrical connectivity problems, such as devices that are unable to receive LAN multicast packets or make themselves discoverable via Bluetooth.
-
- Jun 05, 2013
-
-
akwizgran authored
-
- May 16, 2013
-
-
akwizgran authored
See issue #3612607.
-
- May 15, 2013
- May 14, 2013
-
-
akwizgran authored
To fix issue #3611966, KeyManagerImpl's handling of TransportAddedEvent was made asynchronous. This made it possible for a thread to call KeyManager.endpointAdded() before the KeyManager had asynchronously handled the TransportAddedEvent from a previous call to DatabaseComponent.addTransport().
-
- May 04, 2013
-
-
akwizgran authored
CryptoExecutor and DatabaseExecutor now use bounded thread pools with unbounded queues, since running too many tasks in parallel is likely to harm performance; IncomingConnectionExecutor, PluginExecutor and ReliabilityExecutor use unbounded thread pools with direct handoff, since their tasks may run indefinitely. There are no longer any bounded executors, and all executors discard tasks when shutting down, which fixes issue #3612189. Responsibility for starting and stopping services has been moved from BriarService in briar-android to LifecycleManagerImpl in briar-core. However, BriarService is still responsible for stopping the Android-specific executors, which is ugly. It would be better if executors registered themselves with LifecycleManager.
-
- Apr 30, 2013
-
-
akwizgran authored
Android doesn't currently store bundles persistently, so it's premature to protect against accidental information leaks through persistent bundle storage. Protecting against deliberate information leaks by the OS is probably futile, so there's currently no need for bundle encryption.
-