Enum HomekitSRP6ServerSession.State

    • Enum Constant Detail

      • STEP_1

        public static final HomekitSRP6ServerSession.State STEP_1
        The user identity 'I' is received from the client and the server has returned its public value 'B' based on the matching password verifier 'v'. The session is ready to proceed to STEP_2.
      • STEP_2

        public static final HomekitSRP6ServerSession.State STEP_2
        The client public key 'A' and evidence message 'M1' are received and the server has replied with its own evidence message 'M2'. The session is finished (authentication was successful or failed).
    • Method Detail

      • values

        public static HomekitSRP6ServerSession.State[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HomekitSRP6ServerSession.State c : HomekitSRP6ServerSession.State.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static HomekitSRP6ServerSession.State valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null