Back to project page BLEMeshChat.
The source code is released under:
GNU General Public License
If you think the Android project BLEMeshChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pro.dbro.ble.protocol; // w w w . java 2 s. c om import android.support.annotation.NonNull; /** * An Identity for the local peer * Created by davidbrodsky on 10/13/14. */ public class OwnedIdentityPacket extends IdentityPacket { public final byte[] secretKey; public OwnedIdentityPacket(@NonNull final byte[] secretKey, @NonNull final byte[] publicKey, @NonNull String alias, byte[] rawPacket) { super(publicKey, alias, null, rawPacket); this.secretKey = secretKey; } }