io.getlime.security.powerauth.http.validator.PowerAuthEncryptionHttpHeaderValidator Maven / Gradle / Ivy
/*
* PowerAuth Crypto Library
* Copyright 2018 Wultra s.r.o.
*
* 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 io.getlime.security.powerauth.http.validator;
import io.getlime.security.powerauth.crypto.lib.encryptor.model.EncryptorScope;
import io.getlime.security.powerauth.http.PowerAuthEncryptionHttpHeader;
/**
* Validator class for {@link PowerAuthEncryptionHttpHeader}.
*
* @author Roman Strobl, [email protected]
*/
public class PowerAuthEncryptionHttpHeaderValidator {
/**
* Validate PowerAuth encryption HTTP header.
* @param header PowerAuth encryption HTTP header.
* @param encryptorScope Scope of the encryptor.
* @throws InvalidPowerAuthHttpHeaderException Thrown in case PowerAuth encryption HTTP header is invalid.
*/
public static void validate(PowerAuthEncryptionHttpHeader header, EncryptorScope encryptorScope) throws InvalidPowerAuthHttpHeaderException {
// Check if the parsing was successful
if (header == null) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_INVALID_EMPTY");
}
// Check application key
final String applicationKey = header.getApplicationKey();
if (applicationKey == null) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_APPLICATION_KEY_EMPTY");
}
// Check application key size
if (!ValueTypeValidator.isValidBase64OfLength(applicationKey, 16)) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_APPLICATION_KEY_INVALID");
}
// Check activation ID presence in the header
final String activationId = header.getActivationId();
switch (encryptorScope) {
case ACTIVATION_SCOPE -> {
if (activationId != null) {
// Check if activation ID has correct UUID format
if (!ValueTypeValidator.isValidUuid(activationId)) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_ACTIVATION_ID_INVALID");
}
} else {
// Activation ID is missing for activation scope
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_ACTIVATION_ID_MISSING");
}
}
case APPLICATION_SCOPE -> {
if (activationId != null) {
// Activation ID is not expected in this situation.
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_ACTIVATION_ID_NOT_EXPECTED");
}
}
}
// Check that version is present
final String version = header.getVersion();
if (version == null || version.isEmpty()) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_VERSION_EMPTY");
}
// Check that version is correct
if (!ValueTypeValidator.isValidProtocolVersion(version)) {
throw new InvalidPowerAuthHttpHeaderException("POWER_AUTH_ENCRYPTION_VERSION_INVALID");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy