Package io.github.hapjava.server
Interface HomekitAuthInfo
-
public interface HomekitAuthInfoAuthentication info that must be provided when constructing a newHomekitServer. You will need to implement this interface yourself to provide the necessary callbacks to a persistent storage mechanism. All values provided must be constant across invocations or the accessories will require re-pairing within iOS.- Author:
- Andy Lintner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidcreateUser(String username, byte[] publicKey)Called during the pairing process, you should store the user and public key in a manner that the public key can later be retrieved usinggetUserPublicKey(String).StringgetMac()A unique MAC address to be advertised with the HomeKit information.StringgetPin()A pin code used for pairing the device.byte[]getPrivateKey()The private key used by the server during pairing and message encryption.BigIntegergetSalt()The Salt that will be used when hashing the pin code to send to the client.default StringgetSetupId()A setup Id used for pairing the device using QR Code.byte[]getUserPublicKey(String username)Called when an already paired iOS device is re-connecting.default booleanhasUser()Called to check if a user has been created.voidremoveUser(String username)Called when an iOS device needs to remove an existing pairing.
-
-
-
Method Detail
-
getPin
String getPin()
A pin code used for pairing the device. This pin will be required within iOS in order to complete pairing. The numbers cannot be sequential and should not have a repeating pattern.- Returns:
- the pin code, in the form ###-##-###
-
getSetupId
default String getSetupId()
A setup Id used for pairing the device using QR Code. It can be any alphanumeric combination of the length of 4.- Returns:
- setup id
-
getMac
String getMac()
A unique MAC address to be advertised with the HomeKit information. This does not have to be the MAC address of the network interface. You can generate this usingHomekitServer.generateMac().- Returns:
- the unique MAC address.
-
getSalt
BigInteger getSalt()
The Salt that will be used when hashing the pin code to send to the client. You should generate this usingHomekitServer.generateSalt().- Returns:
- the Salt.
-
getPrivateKey
byte[] getPrivateKey()
The private key used by the server during pairing and message encryption. You should generate this usingHomekitServer.generateKey()- Returns:
- the private key.
-
createUser
void createUser(String username, byte[] publicKey)
Called during the pairing process, you should store the user and public key in a manner that the public key can later be retrieved usinggetUserPublicKey(String). This must be stored in a persistent store as pairing will need to be reset if the information is lost.- Parameters:
username- the iOS device's username. The value will not be meaningful to anything but iOS.publicKey- the iOS device's public key.
-
removeUser
void removeUser(String username)
Called when an iOS device needs to remove an existing pairing. Subsequent calls togetUserPublicKey(String)for this username return null.- Parameters:
username- the username to delete from the persistent store.
-
getUserPublicKey
byte[] getUserPublicKey(String username)
Called when an already paired iOS device is re-connecting. The public key returned by this method will be compared with the signature of the pair verification request to validate the device.- Parameters:
username- the username of the iOS device to retrieve the public key for.- Returns:
- the previously stored public key for this user.
-
hasUser
default boolean hasUser()
Called to check if a user has been created. The homekit accessory advertises whether the accessory has already been paired. At this time, it's unclear whether multiple users can be created, however it is known that advertising as unpaired will break in iOS 9. The default value has been provided to maintain API compatibility for implementations targeting iOS 8.- Returns:
- whether a user has been created and stored
-
-