2013-11-10 04:15:29 -08:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2013 Open Whisper Systems
|
|
|
|
*
|
|
|
|
* 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;
|
2013-08-15 08:25:30 -07:00
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
import org.whispersystems.textsecure.crypto.ecc.ECKeyPair;
|
|
|
|
import org.whispersystems.textsecure.crypto.ecc.ECPrivateKey;
|
2013-08-17 18:37:18 -07:00
|
|
|
import org.whispersystems.textsecure.util.Util;
|
2013-08-15 08:25:30 -07:00
|
|
|
|
|
|
|
public class PreKeyPair {
|
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
private final MasterCipher masterCipher;
|
|
|
|
private final PreKeyPublic publicKey;
|
|
|
|
private final ECPrivateKey privateKey;
|
2013-08-15 08:25:30 -07:00
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
public PreKeyPair(MasterSecret masterSecret, ECKeyPair keyPair) {
|
2013-08-15 08:25:30 -07:00
|
|
|
this.masterCipher = new MasterCipher(masterSecret);
|
2013-11-10 04:15:29 -08:00
|
|
|
this.publicKey = new PreKeyPublic(keyPair.getPublicKey());
|
|
|
|
this.privateKey = keyPair.getPrivateKey();
|
2013-08-15 08:25:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public PreKeyPair(MasterSecret masterSecret, byte[] serialized) throws InvalidKeyException {
|
2013-11-10 04:15:29 -08:00
|
|
|
byte[] privateKeyBytes = new byte[serialized.length - PreKeyPublic.KEY_SIZE];
|
|
|
|
System.arraycopy(serialized, PreKeyPublic.KEY_SIZE, privateKeyBytes, 0, privateKeyBytes.length);
|
2013-08-15 08:25:30 -07:00
|
|
|
|
|
|
|
this.masterCipher = new MasterCipher(masterSecret);
|
2013-08-18 14:35:23 -07:00
|
|
|
this.publicKey = new PreKeyPublic(serialized, 0);
|
2013-11-10 04:15:29 -08:00
|
|
|
this.privateKey = masterCipher.decryptKey(this.publicKey.getType(), privateKeyBytes);
|
2013-08-15 08:25:30 -07:00
|
|
|
}
|
|
|
|
|
2013-08-18 14:35:23 -07:00
|
|
|
public PreKeyPublic getPublicKey() {
|
2013-08-15 08:25:30 -07:00
|
|
|
return publicKey;
|
|
|
|
}
|
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
public ECKeyPair getKeyPair() {
|
|
|
|
return new ECKeyPair(publicKey.getPublicKey(), privateKey);
|
2013-08-21 17:25:19 -07:00
|
|
|
}
|
|
|
|
|
2013-08-15 08:25:30 -07:00
|
|
|
public byte[] serialize() {
|
2013-08-18 14:35:23 -07:00
|
|
|
byte[] publicKeyBytes = publicKey.serialize();
|
2013-08-15 08:25:30 -07:00
|
|
|
byte[] privateKeyBytes = masterCipher.encryptKey(privateKey);
|
|
|
|
|
|
|
|
return Util.combine(publicKeyBytes, privateKeyBytes);
|
|
|
|
}
|
|
|
|
}
|