main.com.appmattus.certificaterevocation.internal.revoker.CertificateRevocationBase.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of certificatetransparency Show documentation
Show all versions of certificatetransparency Show documentation
Certificate transparency for Android and Java
/*
* Copyright 2021-2023 Appmattus Limited
* Copyright 2019 Babylon Partners Limited
*
* 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.
*
* File modified by Appmattus Limited
* See: https://github.com/appmattus/certificatetransparency/compare/e3d469df9be35bcbf0f564d32ca74af4e5ca4ae5...main
*/
package com.appmattus.certificaterevocation.internal.revoker
import com.appmattus.certificaterevocation.RevocationResult
import com.appmattus.certificatetransparency.chaincleaner.CertificateChainCleaner
import com.appmattus.certificatetransparency.chaincleaner.CertificateChainCleanerFactory
import java.io.IOException
import java.security.KeyStore
import java.security.cert.Certificate
import java.security.cert.X509Certificate
import javax.net.ssl.TrustManagerFactory
import javax.net.ssl.X509TrustManager
internal open class CertificateRevocationBase(
private val crlSet: Set = emptySet(),
private val certificateChainCleanerFactory: CertificateChainCleanerFactory? = null,
trustManager: X509TrustManager? = null
) {
private val cleaner: CertificateChainCleaner by lazy {
val localTrustManager = trustManager ?: TrustManagerFactory.getInstance(
TrustManagerFactory.getDefaultAlgorithm()
).apply {
init(null as KeyStore?)
}.trustManagers.first { it is X509TrustManager } as X509TrustManager
certificateChainCleanerFactory?.get(localTrustManager) ?: CertificateChainCleaner.get(localTrustManager)
}
fun verifyCertificateRevocation(host: String, certificates: List): RevocationResult {
return if (certificates.isEmpty()) {
RevocationResult.Failure.NoCertificates
} else {
val cleanedCerts = cleaner.clean(certificates.filterIsInstance(), host)
if (cleanedCerts.isEmpty()) {
RevocationResult.Failure.NoCertificates
} else {
hasRevokedCertificate(cleanedCerts)
}
}
}
/**
* Check if the certificates provided by a server contain any known revoked certificates.
*
* @property certificates the certificate chain provided by the server
* @return [RevocationResult.Success] if the certificates can be trusted, [RevocationResult.Failure] otherwise.
*/
@Suppress("ReturnCount")
private fun hasRevokedCertificate(certificates: List): RevocationResult {
return try {
certificates.forEach { certificate ->
val isRevoked = crlSet.any { pin ->
pin.issuerDistinguishedName == certificate.issuerX500Principal && pin.serialNumbers.contains(
certificate.serialNumber
)
}
if (isRevoked) {
return RevocationResult.Failure.CertificateRevoked(certificate)
}
}
RevocationResult.Success.Trusted
} catch (e: IOException) {
RevocationResult.Failure.UnknownIoException(e)
}
}
}