org.signal.libsignal.protocol.message.PlaintextContent 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.message;
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.InvalidMessageException;
import org.signal.libsignal.protocol.InvalidVersionException;
public final class PlaintextContent implements CiphertextMessage, NativeHandleGuard.Owner {
private final long unsafeHandle;
@Override
@SuppressWarnings("deprecation")
protected void finalize() {
Native.PlaintextContent_Destroy(this.unsafeHandle);
}
public long unsafeNativeHandleWithoutGuard() {
return unsafeHandle;
}
// Used by Rust.
@SuppressWarnings("unused")
private PlaintextContent(long unsafeHandle) {
this.unsafeHandle = unsafeHandle;
}
public PlaintextContent(DecryptionErrorMessage message) {
try (NativeHandleGuard messageGuard = new NativeHandleGuard(message)) {
this.unsafeHandle =
Native.PlaintextContent_FromDecryptionErrorMessage(messageGuard.nativeHandle());
}
}
public PlaintextContent(byte[] serialized)
throws InvalidMessageException, InvalidVersionException {
unsafeHandle =
filterExceptions(
InvalidMessageException.class,
InvalidVersionException.class,
() -> Native.PlaintextContent_Deserialize(serialized));
}
@Override
public byte[] serialize() {
try (NativeHandleGuard guard = new NativeHandleGuard(this)) {
return filterExceptions(() -> Native.PlaintextContent_GetSerialized(guard.nativeHandle()));
}
}
@Override
public int getType() {
return CiphertextMessage.PLAINTEXT_CONTENT_TYPE;
}
public byte[] getBody() {
try (NativeHandleGuard guard = new NativeHandleGuard(this)) {
return filterExceptions(() -> Native.PlaintextContent_GetBody(guard.nativeHandle()));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy