Move files
parent
40d2fd25d9
commit
c9ebcc580f
@ -1,4 +1,4 @@
|
||||
package org.session.libsignal.metadata;
|
||||
package org.session.libsignal.exceptions;
|
||||
|
||||
|
||||
public class InvalidMetadataMessageException extends Exception {
|
@ -1,4 +1,4 @@
|
||||
package org.session.libsignal.metadata;
|
||||
package org.session.libsignal.exceptions;
|
||||
|
||||
|
||||
public abstract class ProtocolException extends Exception {
|
@ -1,8 +1,6 @@
|
||||
package org.session.libsignal.metadata;
|
||||
package org.session.libsignal.exceptions;
|
||||
|
||||
|
||||
import org.session.libsignal.libsignal.InvalidMessageException;
|
||||
|
||||
public class ProtocolInvalidMessageException extends ProtocolException {
|
||||
public ProtocolInvalidMessageException(InvalidMessageException e, String sender, int senderDevice) {
|
||||
super(e, sender, senderDevice);
|
@ -1,23 +0,0 @@
|
||||
/**
|
||||
* Copyright (C) 2014-2016 Open Whisper Systems
|
||||
*
|
||||
* Licensed according to the LICENSE file in this repository.
|
||||
*/
|
||||
package org.session.libsignal.libsignal.state;
|
||||
|
||||
import org.session.libsignal.libsignal.IdentityKeyPair;
|
||||
|
||||
/**
|
||||
* Provides an interface to identity information.
|
||||
*
|
||||
* @author Moxie Marlinspike
|
||||
*/
|
||||
public interface IdentityKeyStore {
|
||||
/**
|
||||
* Get the local client's identity key pair.
|
||||
*
|
||||
* @return The local client's persistent identity key pair.
|
||||
*/
|
||||
public IdentityKeyPair getIdentityKeyPair();
|
||||
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue