Class OwlClientRegistration
- java.lang.Object
-
- org.bouncycastle.crypto.agreement.owl.OwlClientRegistration
-
public class OwlClientRegistration extends java.lang.ObjectA client in the Owl key exchange protocol specifically for the user registration phase.There is one client and one server communicating between each other. An instance of
OwlServerRegistrationrepresents one server, and an instance ofOwlClientRegistrationrepresents one client. These together make up the main machine through which user registration is facilitated.To execute the registration, construct an
OwlServerRegistrationon the server end, and construct anOwlClientRegistrationon the client end. Each Owl registration will need a new and distinctOwlServerRegistrationandOwlClientRegistration. You cannot use the sameOwlServerRegistrationorOwlClientRegistrationfor multiple exchanges.For user login go to
OwlClientandOwlServer. To execute the user registration phase, bothOwlServerRegistrationandOwlClientRegistrationmust be constructed.The following communication between
OwlServerRegistrationandOwlClientRegistration, 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
OwlServerRegistrationandOwlClientRegistrationshould be constructed for each new Owl exchange). -
-
-
Field Summary
Fields Modifier and Type Field Description static booleanREGISTRATION_CALLEDstatic booleanREGISTRATION_NOT_CALLED
-
Constructor Summary
Constructors Constructor Description OwlClientRegistration(java.lang.String clientId, char[] password)Convenience constructor for a newOwlClientRegistrationthat uses theOwlCurves.NIST_P256elliptic curve, a SHA-256 digest, and a defaultSecureRandomimplementation.OwlClientRegistration(java.lang.String clientId, char[] password, OwlCurve curve)Convenience constructor for a newOwlClientRegistrationthat uses a SHA-256 digest and a defaultSecureRandomimplementation.OwlClientRegistration(java.lang.String clientId, char[] password, OwlCurve curve, Digest digest, java.security.SecureRandom random)Construct a newOwlClientRegistration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetRegistrationState()Get the status of the user registration.OwlInitialRegistrationinitiateUserRegistration()Initiates user registration with the server.
-
-
-
Field Detail
-
REGISTRATION_NOT_CALLED
public static final boolean REGISTRATION_NOT_CALLED
- See Also:
- Constant Field Values
-
REGISTRATION_CALLED
public static final boolean REGISTRATION_CALLED
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OwlClientRegistration
public OwlClientRegistration(java.lang.String clientId, char[] password)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:
java.lang.NullPointerException- if any argument is nulljava.lang.IllegalArgumentException- if password is empty
-
OwlClientRegistration
public OwlClientRegistration(java.lang.String clientId, char[] password, OwlCurve curve)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:
java.lang.NullPointerException- if any argument is nulljava.lang.IllegalArgumentException- if password is empty
-
OwlClientRegistration
public OwlClientRegistration(java.lang.String clientId, char[] password, OwlCurve curve, Digest digest, java.security.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:
java.lang.NullPointerException- if any argument is nulljava.lang.IllegalArgumentException- if password is empty
-
-
Method Detail
-
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
public OwlInitialRegistration 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:
java.lang.IllegalStateException- if this function is called more than once
-
-