From: Markus Pfeiffer Date: Tue, 21 Nov 2023 14:37:23 +0000 (+0100) Subject: android: Add repository for managed trusted certificates X-Git-Tag: android-2.5.0^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99dfa8cb0e2142888791fba5b4f931e805fd086b;p=thirdparty%2Fstrongswan.git android: Add repository for managed trusted certificates --- diff --git a/src/frontends/android/app/src/main/java/org/strongswan/android/data/ManagedTrustedCertificateRepository.java b/src/frontends/android/app/src/main/java/org/strongswan/android/data/ManagedTrustedCertificateRepository.java new file mode 100644 index 0000000000..e261c42846 --- /dev/null +++ b/src/frontends/android/app/src/main/java/org/strongswan/android/data/ManagedTrustedCertificateRepository.java @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2023 Relution GmbH + * + * Copyright (C) secunet Security Networks AG + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See . + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ + +package org.strongswan.android.data; + +import android.database.Cursor; + +import org.strongswan.android.logic.TrustedCertificateManager; + +import java.security.cert.X509Certificate; + +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; + +public class ManagedTrustedCertificateRepository extends ManagedCertificateRepository +{ + private static final DatabaseHelper.DbTable TABLE = DatabaseHelper.TABLE_TRUSTED_CERTIFICATE; + + public ManagedTrustedCertificateRepository( + @NonNull final ManagedConfigurationService managedConfigurationService, + @NonNull final DatabaseHelper databaseHelper) + { + super(managedConfigurationService, databaseHelper, TABLE); + } + + @Nullable + @Override + protected ManagedTrustedCertificate getCertificate(@NonNull ManagedVpnProfile vpnProfile) + { + return vpnProfile.getTrustedCertificate(); + } + + @NonNull + @Override + protected ManagedTrustedCertificate createCertificate(@NonNull Cursor cursor) + { + return new ManagedTrustedCertificate(cursor); + } + + @Override + protected boolean isInstalled(@NonNull ManagedTrustedCertificate certificate) + { + TrustedCertificateManager certificateManager = TrustedCertificateManager.getInstance(); + final X509Certificate x509Certificate = certificateManager.getCACertificateFromAlias(certificate.getAlias()); + + return x509Certificate != null; + } +}