mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-26 11:28:22 +01:00
1) A /v2/keys controller. 2) Separate wire protocol PreKey POJOs from database PreKey objects. 3) Separate wire protocol PreKey submission and response POJOs. 4) Introduce a new update/response JSON format for /v2/keys.
9 lines
144 B
Java
9 lines
144 B
Java
package org.whispersystems.textsecuregcm.entities;
|
|
|
|
public interface PreKeyBase {
|
|
|
|
public long getKeyId();
|
|
public String getPublicKey();
|
|
|
|
}
|