2011-12-20 10:20:44 -08:00
|
|
|
/**
|
2013-11-10 04:15:29 -08:00
|
|
|
* Copyright (C) 2013 Open Whisper Systems
|
2011-12-20 10:20:44 -08:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2013-08-17 18:37:18 -07:00
|
|
|
package org.whispersystems.textsecure.crypto;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-11-25 17:00:20 -08:00
|
|
|
|
2013-08-17 18:37:18 -07:00
|
|
|
import android.content.Context;
|
|
|
|
|
2013-10-31 17:23:45 -07:00
|
|
|
import org.whispersystems.textsecure.crypto.protocol.CiphertextMessage;
|
2014-02-02 19:38:06 -08:00
|
|
|
import org.whispersystems.textsecure.storage.RecipientDevice;
|
2013-11-25 17:00:20 -08:00
|
|
|
import org.whispersystems.textsecure.storage.SessionRecordV1;
|
|
|
|
import org.whispersystems.textsecure.storage.SessionRecordV2;
|
2013-09-14 13:33:23 -07:00
|
|
|
|
2013-11-25 17:00:20 -08:00
|
|
|
public abstract class SessionCipher {
|
2013-09-14 13:33:23 -07:00
|
|
|
|
2013-11-25 17:00:20 -08:00
|
|
|
protected static final Object SESSION_LOCK = new Object();
|
2013-11-10 04:15:29 -08:00
|
|
|
|
2013-11-25 17:00:20 -08:00
|
|
|
public abstract CiphertextMessage encrypt(byte[] paddedMessage);
|
|
|
|
public abstract byte[] decrypt(byte[] decodedMessage) throws InvalidMessageException;
|
2013-08-19 17:31:34 -07:00
|
|
|
|
2014-02-02 19:38:06 -08:00
|
|
|
public static SessionCipher createFor(Context context,
|
|
|
|
MasterSecret masterSecret,
|
|
|
|
RecipientDevice recipient)
|
2013-08-19 17:31:34 -07:00
|
|
|
{
|
2013-11-25 17:00:20 -08:00
|
|
|
if (SessionRecordV2.hasSession(context, masterSecret, recipient)) {
|
|
|
|
return new SessionCipherV2(context, masterSecret, recipient);
|
2014-02-02 19:38:06 -08:00
|
|
|
} else if (SessionRecordV1.hasSession(context, recipient.getRecipientId())) {
|
|
|
|
return new SessionCipherV1(context, masterSecret, recipient.getRecipient());
|
2013-08-21 17:25:19 -07:00
|
|
|
} else {
|
2013-11-25 17:00:20 -08:00
|
|
|
throw new AssertionError("Attempt to initialize cipher for non-existing session.");
|
2013-08-21 17:25:19 -07:00
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
2013-08-19 17:31:34 -07:00
|
|
|
|
2013-11-25 17:00:20 -08:00
|
|
|
}
|