mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
1. The things we're really trying to protect - contact identities, message contents, etc - can't be erased from memory because they're encapsulated inside objects we don't control. 2. Long-term secrets can't be protected by erasing them from memory because they're stored in the database and the database key has to be held in memory whenever the app's running. 3. If the runtime uses a compacting garbage collector then we have no way to ensure an object is erased from memory. 4. Trying to erase secrets from memory makes the code more complex. Conclusion: Let's not try to protect secrets from an attacker who can read arbitrary memory locations.
22 lines
743 B
Java
22 lines
743 B
Java
package org.briarproject.api.crypto;
|
|
|
|
import org.briarproject.api.ContactId;
|
|
import org.briarproject.api.TransportId;
|
|
import org.briarproject.api.lifecycle.Service;
|
|
import org.briarproject.api.transport.Endpoint;
|
|
import org.briarproject.api.transport.StreamContext;
|
|
|
|
public interface KeyManager extends Service {
|
|
|
|
/**
|
|
* Returns a {@link org.briarproject.api.transport.StreamContext
|
|
* StreamContext} for sending data to the given contact over the given
|
|
* transport, or null if an error occurs or the contact does not support
|
|
* the transport.
|
|
*/
|
|
StreamContext getStreamContext(ContactId c, TransportId t);
|
|
|
|
/** Called whenever an endpoint has been added. */
|
|
void endpointAdded(Endpoint ep, int maxLatency, byte[] initialSecret);
|
|
}
|