mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-03 20:07:38 +03:00
Add support for systemCertificates
This commit is contained in:
parent
063e8394f7
commit
f81da5d957
1 changed files with 20 additions and 0 deletions
|
@ -21,6 +21,9 @@ import java.net.Inet6Address
|
|||
import java.net.InetSocketAddress
|
||||
import java.net.InterfaceAddress
|
||||
import java.net.NetworkInterface
|
||||
import java.security.KeyStore
|
||||
import kotlin.io.encoding.Base64
|
||||
import kotlin.io.encoding.ExperimentalEncodingApi
|
||||
import io.nekohasekai.libbox.NetworkInterface as LibboxNetworkInterface
|
||||
|
||||
interface PlatformInterfaceWrapper : PlatformInterface {
|
||||
|
@ -174,6 +177,23 @@ interface PlatformInterfaceWrapper : PlatformInterface {
|
|||
return LocalResolver
|
||||
}
|
||||
|
||||
@OptIn(ExperimentalEncodingApi::class)
|
||||
override fun systemCertificates(): StringIterator {
|
||||
val certificates = mutableListOf<String>()
|
||||
val keyStore = KeyStore.getInstance("AndroidCAStore")
|
||||
if (keyStore != null) {
|
||||
keyStore.load(null, null);
|
||||
val aliases = keyStore.aliases()
|
||||
while (aliases.hasMoreElements()) {
|
||||
val cert = keyStore.getCertificate(aliases.nextElement())
|
||||
certificates.add(
|
||||
"-----BEGIN CERTIFICATE-----\n" + Base64.encode(cert.encoded) + "\n-----END CERTIFICATE-----"
|
||||
)
|
||||
}
|
||||
}
|
||||
return StringArray(certificates.iterator())
|
||||
}
|
||||
|
||||
private class InterfaceArray(private val iterator: Iterator<LibboxNetworkInterface>) :
|
||||
NetworkInterfaceIterator {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue