package org.snmp4j.asn1;

import java.io.IOException;
import java.io.OutputStream;

/* JADX INFO: loaded from: classes.dex */
public interface BERSerializable {
    void decodeBER(BERInputStream bERInputStream) throws IOException;

    void encodeBER(OutputStream outputStream) throws IOException;

    int getBERLength();

    int getBERPayloadLength();
}
