Search in sources :

Example 1 with ECKeyPair

use of org.whispersystems.libaxolotl.ecc.ECKeyPair in project Conversations by siacs.

the class SQLiteAxolotlStore method generateIdentityKeyPair.

private static IdentityKeyPair generateIdentityKeyPair() {
    Log.i(Config.LOGTAG, AxolotlService.LOGPREFIX + " : " + "Generating axolotl IdentityKeyPair...");
    ECKeyPair identityKeyPairKeys = Curve.generateKeyPair();
    return new IdentityKeyPair(new IdentityKey(identityKeyPairKeys.getPublicKey()), identityKeyPairKeys.getPrivateKey());
}
Also used : IdentityKey(org.whispersystems.libaxolotl.IdentityKey) ECKeyPair(org.whispersystems.libaxolotl.ecc.ECKeyPair) IdentityKeyPair(org.whispersystems.libaxolotl.IdentityKeyPair)

Aggregations

IdentityKey (org.whispersystems.libaxolotl.IdentityKey)1 IdentityKeyPair (org.whispersystems.libaxolotl.IdentityKeyPair)1 ECKeyPair (org.whispersystems.libaxolotl.ecc.ECKeyPair)1