org.htmlunit.csp.value.Nonce Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlunit-csp Show documentation
Show all versions of htmlunit-csp Show documentation
Content-Security-Policy parser for HtmlUnit.
/*
* Copyright (c) 2023-2024 Ronald Brill.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.csp.value;
import java.util.Locale;
import java.util.Objects;
import java.util.Optional;
import org.htmlunit.csp.Utils;
public final class Nonce {
private final String base64ValuePart_;
private Nonce(final String base64Valuepart) {
base64ValuePart_ = base64Valuepart;
}
public String getBase64ValuePart() {
return base64ValuePart_;
}
public static Optional parseNonce(final String value) {
final String lowcaseValue = value.toLowerCase(Locale.ROOT);
if (lowcaseValue.startsWith("'nonce-") && lowcaseValue.endsWith("'")) {
final String nonce = value.substring(7, value.length() - 1);
if (Utils.IS_BASE64_VALUE.test(nonce)) {
// Note that nonces _are_ case-sensitive, even though the grammar is not
return Optional.of(new Nonce(nonce));
}
}
return Optional.empty();
}
@Override
public String toString() {
return "'nonce-" + base64ValuePart_ + "'";
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final Nonce nonce = (Nonce) o;
return base64ValuePart_.equals(nonce.base64ValuePart_);
}
@Override
public int hashCode() {
return Objects.hash(base64ValuePart_);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy