Skip to content

Commit 96ae419

Browse files
committed
Improve wording
1 parent 1c4fac3 commit 96ae419

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/main/java/org/keepassxc/Connection.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,8 @@ public JSONObject requestAutotype(String url) throws IOException, KeepassProxyAc
674674

675675
/**
676676
* Request passkeys-register from the KeePassXC database (KeePassXC 2.8.0 and newer).
677-
* @param publicKey An object containing all required information for the public key.
678-
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API">Web Authentication API</a> for publicKey contents.
677+
* @param publicKey An object containing public key-based credential.
678+
* @see <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials</a>.
679679
* @param origin The origin the request originates from in the form {@code https://...}
680680
* @param list A list of pairs of associateID and IDKeyPublicKey stored on association.
681681
* @return An object that contains the result of the operation. In case the Passkey could be registered, the response
@@ -710,8 +710,8 @@ public JSONObject passkeysRegister(JSONObject publicKey, String origin, List<Map
710710

711711
/**
712712
* Request passkeys-get from the KeePassXC database (KeePassXC 2.8.0 and newer).
713-
* @param publicKey An object containing all required information for the public key.
714-
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API">Web Authentication API</a> for publicKey contents.
713+
* @param publicKey An object containing public key-based credential.
714+
* @see <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials</a>.
715715
* @param origin The origin the request originates from in the form {@code https://...}
716716
* @param list A list of pairs of associateID and IDKeyPublicKey stored on association.
717717
* @return An object that contains the result of the operation. In case authenticating with the Passkey was successful, the response

src/main/java/org/purejava/KeepassProxyAccess.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,8 @@ public boolean requestAutotype(String url) {
426426

427427
/**
428428
* Request passkeys-register from the KeePassXC database (KeePassXC 2.8.0 and newer).
429-
* @param publicKey An object containing all required information for the public key.
430-
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API">Web Authentication API</a> for publicKey contents.
429+
* @param publicKey An object containing public key-based credential.
430+
* @see <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials</a>.
431431
* @param origin The origin the request originates from in the form {@code https://...}
432432
* @param list A list of pairs of associateID and IDKeyPublicKey stored on association.
433433
* @return An object that contains the result of the operation. In case the Passkey could be registered, the response
@@ -466,8 +466,8 @@ public JSONObject passkeysRegister(JSONObject publicKey, String origin, List<Map
466466

467467
/**
468468
* Request passkeys-get from the KeePassXC database (KeePassXC 2.8.0 and newer).
469-
* @param publicKey An object containing all required information for the public key.
470-
* @see <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API">Web Authentication API</a> for publicKey contents.
469+
* @param publicKey An object containing public key-based credential.
470+
* @see <a href="https://www.w3.org/TR/webauthn-3/">Web Authentication: An API for accessing Public Key Credentials</a>.
471471
* @param origin The origin the request originates from in the form {@code https://...}
472472
* @param list A list of pairs of associateID and IDKeyPublicKey stored on association.
473473
* @return An object that contains the result of the operation. In case authenticating with the Passkey was successful, the response

0 commit comments

Comments
 (0)