Skip to content

Commit 51cc0ef

Browse files
committed
Change first and second in PrfValues to private
1 parent 7d4e7a9 commit 51cc0ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webauthn-server-core/src/main/java/com/yubico/webauthn/data/Extensions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ public static class PrfValues {
783783
* @see <a href="https://www.w3.org/TR/2025/WD-webauthn-3-20250127/#prf-extension">§10.1.4.
784784
* Pseudo-random function extension (prf)</a>
785785
*/
786-
@JsonProperty @NonNull public final ByteArray first;
786+
@JsonProperty @NonNull private final ByteArray first;
787787

788788
/**
789789
* The second PRF input to evaluate, if any, or the result of that evaluation.
@@ -793,7 +793,7 @@ public static class PrfValues {
793793
* @see <a href="https://www.w3.org/TR/2025/WD-webauthn-3-20250127/#prf-extension">§10.1.4.
794794
* Pseudo-random function extension (prf)</a>
795795
*/
796-
@JsonProperty public final ByteArray second;
796+
@JsonProperty private final ByteArray second;
797797

798798
@JsonCreator
799799
private PrfValues(

0 commit comments

Comments
 (0)