com.pusher.client.channel.impl.message.EncryptedReceivedData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pusher-java-client Show documentation
Show all versions of pusher-java-client Show documentation
This is a Java client library for Pusher, targeted at core Java and Android.
The newest version!
package com.pusher.client.channel.impl.message;
import com.pusher.client.util.internal.Base64;
public class EncryptedReceivedData {
private String nonce;
private String ciphertext;
public byte[] getNonce() {
return Base64.decode(nonce);
}
public byte[] getCiphertext() {
return Base64.decode(ciphertext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy