2013-08-21 17:25:19 -07: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.
|
2013-08-21 17:25:19 -07:00
|
|
|
*
|
2011-12-20 10:20:44 -08:00
|
|
|
* 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-21 17:25:19 -07:00
|
|
|
package org.whispersystems.textsecure.crypto;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
import org.whispersystems.textsecure.crypto.ecc.ECPrivateKey;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-08-21 17:25:19 -07:00
|
|
|
/**
|
|
|
|
* Holder for public and private identity key pair.
|
|
|
|
*
|
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*/
|
|
|
|
public class IdentityKeyPair {
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-08-21 17:25:19 -07:00
|
|
|
private final IdentityKey publicKey;
|
2013-11-10 04:15:29 -08:00
|
|
|
private final ECPrivateKey privateKey;
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
public IdentityKeyPair(IdentityKey publicKey, ECPrivateKey privateKey) {
|
2013-08-21 17:25:19 -07:00
|
|
|
this.publicKey = publicKey;
|
|
|
|
this.privateKey = privateKey;
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
|
2013-08-21 17:25:19 -07:00
|
|
|
public IdentityKey getPublicKey() {
|
|
|
|
return publicKey;
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|
|
|
|
|
2013-11-10 04:15:29 -08:00
|
|
|
public ECPrivateKey getPrivateKey() {
|
2013-08-21 17:25:19 -07:00
|
|
|
return privateKey;
|
|
|
|
}
|
2011-12-20 10:20:44 -08:00
|
|
|
}
|