44 lines
1.3 KiB
Java
Raw Normal View History

/**
* 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.
*
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/>.
*/
package org.whispersystems.textsecure.crypto;
2011-12-20 10:20:44 -08:00
import org.spongycastle.crypto.params.ECPrivateKeyParameters;
2011-12-20 10:20:44 -08:00
/**
* Holder for public and private identity key pair.
*
* @author Moxie Marlinspike
*/
public class IdentityKeyPair {
2011-12-20 10:20:44 -08:00
private final IdentityKey publicKey;
private final ECPrivateKeyParameters privateKey;
2011-12-20 10:20:44 -08:00
public IdentityKeyPair(IdentityKey publicKey, ECPrivateKeyParameters privateKey) {
this.publicKey = publicKey;
this.privateKey = privateKey;
2011-12-20 10:20:44 -08:00
}
public IdentityKey getPublicKey() {
return publicKey;
2011-12-20 10:20:44 -08:00
}
public ECPrivateKeyParameters getPrivateKey() {
return privateKey;
}
2011-12-20 10:20:44 -08:00
}