1 | // Copyright (c) 2018, Yubico AB | |
2 | // All rights reserved. | |
3 | // | |
4 | // Redistribution and use in source and binary forms, with or without | |
5 | // modification, are permitted provided that the following conditions are met: | |
6 | // | |
7 | // 1. Redistributions of source code must retain the above copyright notice, this | |
8 | // list of conditions and the following disclaimer. | |
9 | // | |
10 | // 2. Redistributions in binary form must reproduce the above copyright notice, | |
11 | // this list of conditions and the following disclaimer in the documentation | |
12 | // and/or other materials provided with the distribution. | |
13 | // | |
14 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
15 | // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
16 | // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
17 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | |
18 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
19 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
20 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
21 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | |
22 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
23 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 | ||
25 | package com.yubico.webauthn.data; | |
26 | ||
27 | import com.fasterxml.jackson.annotation.JsonCreator; | |
28 | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | |
29 | import com.fasterxml.jackson.annotation.JsonProperty; | |
30 | import com.yubico.webauthn.RelyingParty; | |
31 | import com.yubico.webauthn.StartRegistrationOptions; | |
32 | import com.yubico.webauthn.extension.appid.AppId; | |
33 | import java.util.Collections; | |
34 | import java.util.HashSet; | |
35 | import java.util.Optional; | |
36 | import java.util.Set; | |
37 | import lombok.Builder; | |
38 | import lombok.Value; | |
39 | ||
40 | /** | |
41 | * Contains <a | |
42 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#client-extension-input">client | |
43 | * extension inputs</a> to a <code>navigator.credentials.create()</code> operation. All members are | |
44 | * optional. | |
45 | * | |
46 | * <p>The authenticator extension inputs are derived from these client extension inputs. | |
47 | * | |
48 | * @see <a href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-extensions">§9. WebAuthn | |
49 | * Extensions</a> | |
50 | */ | |
51 | @Value | |
52 | @Builder(toBuilder = true) | |
53 | @JsonIgnoreProperties(ignoreUnknown = true) | |
54 | public final class RegistrationExtensionInputs implements ExtensionInputs { | |
55 | ||
56 | private final AppId appidExclude; | |
57 | private final Boolean credProps; | |
58 | private final Extensions.CredentialProtection.CredentialProtectionInput credProtect; | |
59 | private final Extensions.LargeBlob.LargeBlobRegistrationInput largeBlob; | |
60 | private final Boolean uvm; | |
61 | ||
62 | @JsonCreator | |
63 | private RegistrationExtensionInputs( | |
64 | @JsonProperty("appidExclude") AppId appidExclude, | |
65 | @JsonProperty("credProps") Boolean credProps, | |
66 | @JsonProperty("credProtect") | |
67 | Extensions.CredentialProtection.CredentialProtectionInput credProtect, | |
68 | @JsonProperty("largeBlob") Extensions.LargeBlob.LargeBlobRegistrationInput largeBlob, | |
69 | @JsonProperty("uvm") Boolean uvm) { | |
70 | this.appidExclude = appidExclude; | |
71 | this.credProps = credProps; | |
72 | this.credProtect = credProtect; | |
73 | this.largeBlob = largeBlob; | |
74 | this.uvm = uvm; | |
75 | } | |
76 | ||
77 | /** | |
78 | * Merge <code>other</code> into <code>this</code>. Non-null field values from <code>this</code> | |
79 | * take precedence. | |
80 | * | |
81 | * @return a new {@link RegistrationExtensionInputs} instance with the settings from both <code> | |
82 | * this</code> and <code>other</code>. | |
83 | */ | |
84 | public RegistrationExtensionInputs merge(RegistrationExtensionInputs other) { | |
85 |
1
1. merge : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs::merge → KILLED |
return new RegistrationExtensionInputs( |
86 |
1
1. merge : negated conditional → KILLED |
this.appidExclude != null ? this.appidExclude : other.appidExclude, |
87 |
1
1. merge : negated conditional → KILLED |
this.credProps != null ? this.credProps : other.credProps, |
88 |
1
1. merge : negated conditional → KILLED |
this.credProtect != null ? this.credProtect : other.credProtect, |
89 |
1
1. merge : negated conditional → SURVIVED |
this.largeBlob != null ? this.largeBlob : other.largeBlob, |
90 |
1
1. merge : negated conditional → KILLED |
this.uvm != null ? this.uvm : other.uvm); |
91 | } | |
92 | ||
93 | /** | |
94 | * @return The value of the FIDO AppID Exclusion Extension (<code>appidExclude</code>) input if | |
95 | * configured, empty otherwise. | |
96 | * @see RegistrationExtensionInputsBuilder#appidExclude(AppId) | |
97 | * @see <a | |
98 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-appid-exclude-extension">§10.2. | |
99 | * FIDO AppID Exclusion Extension (appidExclude)</a> | |
100 | */ | |
101 | public Optional<AppId> getAppidExclude() { | |
102 |
1
1. getAppidExclude : replaced return value with Optional.empty for com/yubico/webauthn/data/RegistrationExtensionInputs::getAppidExclude → KILLED |
return Optional.ofNullable(appidExclude); |
103 | } | |
104 | ||
105 | /** | |
106 | * @return <code>true</code> if the Credential Properties Extension (<code>credProps</code>) is | |
107 | * enabled, <code>false</code> otherwise. | |
108 | * @see RegistrationExtensionInputsBuilder#credProps() | |
109 | * @see <a | |
110 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-authenticator-credential-properties-extension">§10.4. | |
111 | * Credential Properties Extension (credProps)</a> | |
112 | */ | |
113 | public boolean getCredProps() { | |
114 |
3
1. getCredProps : negated conditional → KILLED 2. getCredProps : replaced boolean return with true for com/yubico/webauthn/data/RegistrationExtensionInputs::getCredProps → KILLED 3. getCredProps : negated conditional → KILLED |
return credProps != null && credProps; |
115 | } | |
116 | ||
117 | /** | |
118 | * @return The Credential Protection (<code>credProtect</code>) extension input, if set. | |
119 | * @see | |
120 | * RegistrationExtensionInputsBuilder#credProtect(Extensions.CredentialProtection.CredentialProtectionInput) | |
121 | * @see <a | |
122 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-authenticator-credential-properties-extension">§10.4. | |
123 | * Credential Properties Extension (credProps)</a> | |
124 | */ | |
125 | public Optional<Extensions.CredentialProtection.CredentialProtectionInput> getCredProtect() { | |
126 |
1
1. getCredProtect : replaced return value with Optional.empty for com/yubico/webauthn/data/RegistrationExtensionInputs::getCredProtect → KILLED |
return Optional.ofNullable(credProtect); |
127 | } | |
128 | ||
129 | /** For JSON serialization, to omit false values. */ | |
130 | @JsonProperty("credProps") | |
131 | private Boolean getCredPropsJson() { | |
132 |
3
1. getCredPropsJson : negated conditional → KILLED 2. getCredPropsJson : replaced Boolean return with False for com/yubico/webauthn/data/RegistrationExtensionInputs::getCredPropsJson → KILLED 3. getCredPropsJson : replaced Boolean return with True for com/yubico/webauthn/data/RegistrationExtensionInputs::getCredPropsJson → KILLED |
return getCredProps() ? true : null; |
133 | } | |
134 | ||
135 | /** | |
136 | * @return The value of the Large blob storage extension (<code>largeBlob</code>) input if | |
137 | * configured, empty otherwise. | |
138 | * @see | |
139 | * RegistrationExtensionInputsBuilder#largeBlob(Extensions.LargeBlob.LargeBlobRegistrationInput) | |
140 | * @see | |
141 | * RegistrationExtensionInputsBuilder#largeBlob(Extensions.LargeBlob.LargeBlobRegistrationInput.LargeBlobSupport) | |
142 | * @see <a | |
143 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-large-blob-extension">§10.5. | |
144 | * Large blob storage extension (largeBlob)</a> | |
145 | */ | |
146 | public Optional<Extensions.LargeBlob.LargeBlobRegistrationInput> getLargeBlob() { | |
147 |
1
1. getLargeBlob : replaced return value with Optional.empty for com/yubico/webauthn/data/RegistrationExtensionInputs::getLargeBlob → KILLED |
return Optional.ofNullable(largeBlob); |
148 | } | |
149 | ||
150 | /** | |
151 | * @return <code>true</code> if the User Verification Method Extension (<code>uvm</code>) is | |
152 | * enabled, <code>false</code> otherwise. | |
153 | * @see RegistrationExtensionInputsBuilder#uvm() | |
154 | * @see <a href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-uvm-extension">§10.3. | |
155 | * User Verification Method Extension (uvm)</a> | |
156 | */ | |
157 | public boolean getUvm() { | |
158 |
3
1. getUvm : negated conditional → KILLED 2. getUvm : negated conditional → KILLED 3. getUvm : replaced boolean return with true for com/yubico/webauthn/data/RegistrationExtensionInputs::getUvm → KILLED |
return uvm != null && uvm; |
159 | } | |
160 | ||
161 | /** For JSON serialization, to omit false values. */ | |
162 | @JsonProperty("uvm") | |
163 | private Boolean getUvmJson() { | |
164 |
3
1. getUvmJson : replaced Boolean return with False for com/yubico/webauthn/data/RegistrationExtensionInputs::getUvmJson → KILLED 2. getUvmJson : replaced Boolean return with True for com/yubico/webauthn/data/RegistrationExtensionInputs::getUvmJson → KILLED 3. getUvmJson : negated conditional → KILLED |
return getUvm() ? true : null; |
165 | } | |
166 | ||
167 | /** | |
168 | * @return The extension identifiers of all extensions configured. | |
169 | * @see <a href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-extension-id">§9.1. | |
170 | * Extension Identifiers</a> | |
171 | */ | |
172 | @Override | |
173 | public Set<String> getExtensionIds() { | |
174 | Set<String> ids = new HashSet<>(); | |
175 |
1
1. getExtensionIds : negated conditional → KILLED |
if (appidExclude != null) { |
176 | ids.add(Extensions.AppidExclude.EXTENSION_ID); | |
177 | } | |
178 |
1
1. getExtensionIds : negated conditional → KILLED |
if (getCredProps()) { |
179 | ids.add(Extensions.CredentialProperties.EXTENSION_ID); | |
180 | } | |
181 |
1
1. getExtensionIds : negated conditional → KILLED |
if (getCredProtect().isPresent()) { |
182 | ids.add(Extensions.CredentialProtection.EXTENSION_ID); | |
183 | } | |
184 |
1
1. getExtensionIds : negated conditional → KILLED |
if (largeBlob != null) { |
185 | ids.add(Extensions.LargeBlob.EXTENSION_ID); | |
186 | } | |
187 |
1
1. getExtensionIds : negated conditional → KILLED |
if (getUvm()) { |
188 | ids.add(Extensions.Uvm.EXTENSION_ID); | |
189 | } | |
190 |
1
1. getExtensionIds : replaced return value with Collections.emptySet for com/yubico/webauthn/data/RegistrationExtensionInputs::getExtensionIds → KILLED |
return Collections.unmodifiableSet(ids); |
191 | } | |
192 | ||
193 | public static class RegistrationExtensionInputsBuilder { | |
194 | /** | |
195 | * Enable or disable the FIDO AppID Exclusion Extension (<code>appidExclude</code>). | |
196 | * | |
197 | * <p>You usually do not need to call this method explicitly; if {@link RelyingParty#getAppId()} | |
198 | * is present, then {@link RelyingParty#startRegistration(StartRegistrationOptions)} will enable | |
199 | * this extension automatically. | |
200 | * | |
201 | * <p>If this is set to empty, then {@link | |
202 | * RelyingParty#startRegistration(StartRegistrationOptions)} may overwrite it. | |
203 | * | |
204 | * @see RelyingParty#startRegistration(StartRegistrationOptions) | |
205 | * @see <a | |
206 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-appid-exclude-extension">§10.2. | |
207 | * FIDO AppID Exclusion Extension (appidExclude)</a> | |
208 | */ | |
209 | public RegistrationExtensionInputsBuilder appidExclude(Optional<AppId> appidExclude) { | |
210 | this.appidExclude = appidExclude.orElse(null); | |
211 |
1
1. appidExclude : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::appidExclude → KILLED |
return this; |
212 | } | |
213 | ||
214 | /** | |
215 | * Enable the FIDO AppID Exclusion Extension (<code>appidExclude</code>). | |
216 | * | |
217 | * <p>You usually do not need to call this method explicitly; if {@link RelyingParty#getAppId()} | |
218 | * is present, then {@link RelyingParty#startRegistration(StartRegistrationOptions)} will enable | |
219 | * this extension automatically. | |
220 | * | |
221 | * <p>If this is set to null, then {@link | |
222 | * RelyingParty#startRegistration(StartRegistrationOptions)} may overwrite it. | |
223 | * | |
224 | * @see RelyingParty#startRegistration(StartRegistrationOptions) | |
225 | * @see <a | |
226 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-appid-exclude-extension">§10.2. | |
227 | * FIDO AppID Exclusion Extension (appidExclude)</a> | |
228 | */ | |
229 | public RegistrationExtensionInputsBuilder appidExclude(AppId appidExclude) { | |
230 | this.appidExclude = appidExclude; | |
231 |
1
1. appidExclude : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::appidExclude → KILLED |
return this; |
232 | } | |
233 | ||
234 | /** | |
235 | * Enable the Credential Properties (<code>credProps</code>) Extension. | |
236 | * | |
237 | * @see <a | |
238 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-authenticator-credential-properties-extension">§10.4. | |
239 | * Credential Properties Extension (credProps)</a> | |
240 | */ | |
241 | public RegistrationExtensionInputsBuilder credProps() { | |
242 | this.credProps = true; | |
243 |
1
1. credProps : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::credProps → KILLED |
return this; |
244 | } | |
245 | ||
246 | /** | |
247 | * Enable or disable the Credential Properties (<code>credProps</code>) Extension. | |
248 | * | |
249 | * <p>A <code>true</code> argument enables the extension. A <code>false</code> argument disables | |
250 | * the extension, and will not be overwritten by {@link | |
251 | * RelyingParty#startRegistration(StartRegistrationOptions)}. A null argument disables the | |
252 | * extension, and will be overwritten by {@link | |
253 | * RelyingParty#startRegistration(StartRegistrationOptions)}. | |
254 | * | |
255 | * @see RelyingParty#startRegistration(StartRegistrationOptions) | |
256 | * @see <a | |
257 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-authenticator-credential-properties-extension">§10.4. | |
258 | * Credential Properties Extension (credProps)</a> | |
259 | */ | |
260 | public RegistrationExtensionInputsBuilder credProps(Boolean credProps) { | |
261 | this.credProps = credProps; | |
262 |
1
1. credProps : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::credProps → KILLED |
return this; |
263 | } | |
264 | ||
265 | /** | |
266 | * Enable or disable the Credential Protection (<code>credProtect</code>) extension. | |
267 | * | |
268 | * @see | |
269 | * Extensions.CredentialProtection.CredentialProtectionInput#prefer(Extensions.CredentialProtection.CredentialProtectionPolicy) | |
270 | * @see | |
271 | * Extensions.CredentialProtection.CredentialProtectionInput#require(Extensions.CredentialProtection.CredentialProtectionPolicy) | |
272 | * @see <a | |
273 | * href="https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-credProtect-extension">CTAP2 | |
274 | * §12.1. Credential Protection (credProtect)</a> | |
275 | */ | |
276 | public RegistrationExtensionInputsBuilder credProtect( | |
277 | Optional<Extensions.CredentialProtection.CredentialProtectionInput> credProtect) { | |
278 | this.credProtect = credProtect.orElse(null); | |
279 |
1
1. credProtect : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::credProtect → KILLED |
return this; |
280 | } | |
281 | ||
282 | /** | |
283 | * Enable the Credential Protection (<code>credProtect</code>) extension. | |
284 | * | |
285 | * @see | |
286 | * Extensions.CredentialProtection.CredentialProtectionInput#prefer(Extensions.CredentialProtection.CredentialProtectionPolicy) | |
287 | * @see | |
288 | * Extensions.CredentialProtection.CredentialProtectionInput#require(Extensions.CredentialProtection.CredentialProtectionPolicy) | |
289 | * @see <a | |
290 | * href="https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-20210615.html#sctn-credProtect-extension">CTAP2 | |
291 | * §12.1. Credential Protection (credProtect)</a> | |
292 | */ | |
293 | public RegistrationExtensionInputsBuilder credProtect( | |
294 | Extensions.CredentialProtection.CredentialProtectionInput credProtect) { | |
295 | this.credProtect = credProtect; | |
296 |
1
1. credProtect : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::credProtect → KILLED |
return this; |
297 | } | |
298 | ||
299 | /** | |
300 | * Enable the Large blob storage extension (<code>largeBlob</code>). | |
301 | * | |
302 | * <p>Alias of <code>largeBlob(new Extensions.LargeBlob.LargeBlobRegistrationInput(support)) | |
303 | * </code>. | |
304 | * | |
305 | * @param support an {@link Extensions.LargeBlob.LargeBlobRegistrationInput.LargeBlobSupport} | |
306 | * value to set as the <code>support</code> attribute of the <code>largeBlob</code> | |
307 | * extension input. | |
308 | * @see #largeBlob(Extensions.LargeBlob.LargeBlobRegistrationInput) | |
309 | * @see <a | |
310 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-large-blob-extension">§10.5. | |
311 | * Large blob storage extension (largeBlob)</a> | |
312 | */ | |
313 | public RegistrationExtensionInputsBuilder largeBlob( | |
314 | Extensions.LargeBlob.LargeBlobRegistrationInput.LargeBlobSupport support) { | |
315 | this.largeBlob = new Extensions.LargeBlob.LargeBlobRegistrationInput(support); | |
316 |
1
1. largeBlob : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::largeBlob → KILLED |
return this; |
317 | } | |
318 | ||
319 | /** | |
320 | * Enable the Large blob storage extension (<code>largeBlob</code>). | |
321 | * | |
322 | * @see #largeBlob(Extensions.LargeBlob.LargeBlobRegistrationInput.LargeBlobSupport) | |
323 | * @see <a | |
324 | * href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-large-blob-extension">§10.5. | |
325 | * Large blob storage extension (largeBlob)</a> | |
326 | */ | |
327 | public RegistrationExtensionInputsBuilder largeBlob( | |
328 | Extensions.LargeBlob.LargeBlobRegistrationInput largeBlob) { | |
329 | this.largeBlob = largeBlob; | |
330 |
1
1. largeBlob : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::largeBlob → KILLED |
return this; |
331 | } | |
332 | ||
333 | /** | |
334 | * Enable the User Verification Method Extension (<code>uvm</code>). | |
335 | * | |
336 | * @see <a href="https://www.w3.org/TR/2021/REC-webauthn-2-20210408/#sctn-uvm-extension">§10.3. | |
337 | * User Verification Method Extension (uvm)</a> | |
338 | */ | |
339 | public RegistrationExtensionInputsBuilder uvm() { | |
340 | this.uvm = true; | |
341 |
1
1. uvm : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::uvm → KILLED |
return this; |
342 | } | |
343 | ||
344 | /** For compatibility with {@link Builder}(toBuilder = true) */ | |
345 | private RegistrationExtensionInputsBuilder uvm(Boolean uvm) { | |
346 | this.uvm = uvm; | |
347 |
1
1. uvm : replaced return value with null for com/yubico/webauthn/data/RegistrationExtensionInputs$RegistrationExtensionInputsBuilder::uvm → KILLED |
return this; |
348 | } | |
349 | } | |
350 | } | |
Mutations | ||
85 |
1.1 |
|
86 |
1.1 |
|
87 |
1.1 |
|
88 |
1.1 |
|
89 |
1.1 |
|
90 |
1.1 |
|
102 |
1.1 |
|
114 |
1.1 2.2 3.3 |
|
126 |
1.1 |
|
132 |
1.1 2.2 3.3 |
|
147 |
1.1 |
|
158 |
1.1 2.2 3.3 |
|
164 |
1.1 2.2 3.3 |
|
175 |
1.1 |
|
178 |
1.1 |
|
181 |
1.1 |
|
184 |
1.1 |
|
187 |
1.1 |
|
190 |
1.1 |
|
211 |
1.1 |
|
231 |
1.1 |
|
243 |
1.1 |
|
262 |
1.1 |
|
279 |
1.1 |
|
296 |
1.1 |
|
316 |
1.1 |
|
330 |
1.1 |
|
341 |
1.1 |
|
347 |
1.1 |