Class OwlClientRegistration
There is one client and one server communicating between each other.
An instance of OwlServerRegistration represents one server, and
an instance of OwlClientRegistration represents one client.
These together make up the main machine through which user registration is facilitated.
To execute the registration, construct an OwlServerRegistration on the server end,
and construct an OwlClientRegistration on the client end.
Each Owl registration will need a new and distinct OwlServerRegistration and OwlClientRegistration.
You cannot use the same OwlServerRegistration or OwlClientRegistration for multiple exchanges.
For user login go to OwlClient and OwlServer.
To execute the user registration phase, both
OwlServerRegistration and OwlClientRegistration must be constructed.
The following communication between OwlServerRegistration and OwlClientRegistration, must be
facilitated over a secure communications channel as the leakage of the payload sent,
would allow an attacker to reconstruct the secret password.
Call the following methods in this order, the client initiates every exchange.
-
initiateUserRegistration()- The client sends payload to the server over a secure channel. -
OwlServerRegistration.registerUseronServer(OwlInitialRegistration)- The server uses the payload received from the client to calculate a user credential payload that is to be safely stored on the server.
This class is stateful and NOT threadsafe.
Each instance should only be used for ONE complete Owl exchange
(i.e. a new OwlServerRegistration and OwlClientRegistration should be constructed for each new Owl exchange).
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final booleanstatic final boolean -
Constructor Summary
ConstructorsConstructorDescriptionOwlClientRegistration(String clientId, char[] password) Convenience constructor for a newOwlClientRegistrationthat uses theOwlCurves.NIST_P256elliptic curve, a SHA-256 digest, and a defaultSecureRandomimplementation.OwlClientRegistration(String clientId, char[] password, OwlCurve curve) Convenience constructor for a newOwlClientRegistrationthat uses a SHA-256 digest and a defaultSecureRandomimplementation.OwlClientRegistration(String clientId, char[] password, OwlCurve curve, Digest digest, SecureRandom random) Construct a newOwlClientRegistration. -
Method Summary
Modifier and TypeMethodDescriptionbooleanGet the status of the user registration.Initiates user registration with the server.
-
Field Details
-
REGISTRATION_NOT_CALLED
public static final boolean REGISTRATION_NOT_CALLED- See Also:
-
REGISTRATION_CALLED
public static final boolean REGISTRATION_CALLED- See Also:
-
-
Constructor Details
-
OwlClientRegistration
Convenience constructor for a newOwlClientRegistrationthat uses theOwlCurves.NIST_P256elliptic curve, a SHA-256 digest, and a defaultSecureRandomimplementation.After construction, the
statewill beREGISTRATION_NOT_CALLED.- Parameters:
clientId- unique identifier of this client. The server and client in the exchange must NOT share the same id.password- shared secret. A defensive copy of this array is made (and cleared onceinitiateUserRegistration()is called). Caller should clear the input password as soon as possible.- Throws:
NullPointerException- if any argument is nullIllegalArgumentException- if password is empty
-
OwlClientRegistration
Convenience constructor for a newOwlClientRegistrationthat uses a SHA-256 digest and a defaultSecureRandomimplementation.After construction, the
statewill beREGISTRATION_NOT_CALLED.- Parameters:
clientId- unique identifier of this client.. The server and client in the exchange must NOT share the same id.password- shared secret. A defensive copy of this array is made (and cleared onceinitiateUserRegistration()is called). Caller should clear the input password as soon as possible.curve- elliptic curve SeeOwlCurvesfor standard curves.- Throws:
NullPointerException- if any argument is nullIllegalArgumentException- if password is empty
-
OwlClientRegistration
public OwlClientRegistration(String clientId, char[] password, OwlCurve curve, Digest digest, SecureRandom random) Construct a newOwlClientRegistration.After construction, the
registrationStatewill beREGISTRATION_NOT_CALLED.- Parameters:
clientId- unique identifier of this client. The server and client in the exchange must NOT share the same id.password- shared secret. A defensive copy of this array is made (and cleared onceinitiateUserRegistration()is called). Caller should clear the input password as soon as possible.curve- elliptic curve. SeeOwlCurvesfor standard curvesdigest- digest to use during zero knowledge proofs and key confirmation (SHA-256 or stronger preferred)random- source of secure random data for x1 and x2, and for the zero knowledge proofs- Throws:
NullPointerException- if any argument is nullIllegalArgumentException- if password is empty
-
-
Method Details
-
getRegistrationState
public boolean getRegistrationState()Get the status of the user registration. I.E. whether or not this server has registered a user already. See theREGSITRATION_*constants for possible values.- Returns:
- True if the user has been registered or false otherwise
-
initiateUserRegistration
Initiates user registration with the server. Creates the registration payloadOwlInitialRegistrationand sends it to the server. MUST be sent over a secure channel.Must be called prior to
OwlServerRegistration.registerUseronServer(OwlInitialRegistration)- Returns:
OwlInitialRegistration- Throws:
IllegalStateException- if this function is called more than once
-