org.signal.libsignal.protocol.IdentityKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libsignal-client Show documentation
Show all versions of libsignal-client Show documentation
Signal Protocol cryptography library for Java
//
// Copyright 2014-2016 Signal Messenger, LLC.
// SPDX-License-Identifier: AGPL-3.0-only
//
package org.signal.libsignal.protocol;
import static org.signal.libsignal.internal.FilterExceptions.filterExceptions;
import org.signal.libsignal.internal.Native;
import org.signal.libsignal.internal.NativeHandleGuard;
import org.signal.libsignal.protocol.ecc.Curve;
import org.signal.libsignal.protocol.ecc.ECPublicKey;
import org.signal.libsignal.protocol.util.Hex;
/**
* A class for representing an identity key.
*
* @author Moxie Marlinspike
*/
public class IdentityKey {
private final ECPublicKey publicKey;
public IdentityKey(ECPublicKey publicKey) {
this.publicKey = publicKey;
}
public IdentityKey(byte[] bytes, int offset) throws InvalidKeyException {
this.publicKey = Curve.decodePoint(bytes, offset);
}
public IdentityKey(byte[] bytes) throws InvalidKeyException {
this.publicKey = Curve.decodePoint(bytes, 0);
}
public IdentityKey(long nativeHandle) {
this.publicKey = new ECPublicKey(nativeHandle);
}
public ECPublicKey getPublicKey() {
return publicKey;
}
public byte[] serialize() {
return publicKey.serialize();
}
public String getFingerprint() {
return Hex.toString(publicKey.serialize());
}
public boolean verifyAlternateIdentity(IdentityKey other, byte[] signature) {
try (NativeHandleGuard guard = new NativeHandleGuard(this.publicKey);
NativeHandleGuard otherGuard = new NativeHandleGuard(other.publicKey); ) {
return filterExceptions(
() ->
Native.IdentityKey_VerifyAlternateIdentity(
guard.nativeHandle(), otherGuard.nativeHandle(), signature));
}
}
@Override
public boolean equals(Object other) {
if (other == null) return false;
if (!(other instanceof IdentityKey)) return false;
return publicKey.equals(((IdentityKey) other).getPublicKey());
}
@Override
public int hashCode() {
return publicKey.hashCode();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy