Skip to content
Snippets Groups Projects
Commit 32b3bacc authored by Dirk Balfanz's avatar Dirk Balfanz
Browse files

making SessionData serializable so we can turn it into (encrypted)

session ids when need.
parent 023bea30
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,6 @@ public class SecurityKeyData {
private final X509Certificate attestationCert;
public SecurityKeyData(byte[] keyHandle, byte[] publicKey, X509Certificate attestationCert) {
super();
this.keyHandle = keyHandle;
this.publicKey = publicKey;
this.attestationCert = attestationCert;
......
package com.google.u2f.server.data;
public class SessionData {
import java.io.Serializable;
public class SessionData implements Serializable {
private static final long serialVersionUID = 1750990095756334568L;
private final String accountName;
private final byte[] challenge;
private final String appId;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment