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.crypto; //w w w . j a va 2 s .c o m /** * Created by davidbrodsky on 10/22/14. */ public class KeyPair { public final byte[] publicKey; public final byte[] secretKey; public KeyPair(byte[] publicKey, byte[] secretKey) { this.publicKey = publicKey; this.secretKey = secretKey; } }