it.auties.whatsapp.model.sync.KeyIdSpec Maven / Gradle / Ivy
package it.auties.whatsapp.model.sync;
import it.auties.whatsapp.model.sync.KeyId;
import it.auties.protobuf.stream.ProtobufInputStream;
import it.auties.protobuf.stream.ProtobufOutputStream;
public class KeyIdSpec {
public static byte[] encode(KeyId protoInputObject) {
if(protoInputObject == null) {
return null;
}
var outputStream = new ProtobufOutputStream();
outputStream.writeBytes(1, protoInputObject.id());
return outputStream.toByteArray();
}
public static KeyId decode(byte[] input) {
if(input == null) {
return null;
}
var inputStream = new ProtobufInputStream(input);
byte[] id = null;
while(inputStream.readTag()) {
switch(inputStream.index()) {
case 1 -> id = inputStream.readBytes();
default -> inputStream.skipBytes();
}
}
return new it.auties.whatsapp.model.sync.KeyId(id);
}
}