Home
last modified time | relevance | path

Searched refs:clientChain (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
DConfigBuilder.java100 List<X509Certificate> clientChain = null; in parse() local
146 clientChain = new ArrayList<>(); in parse()
152 clientChain.add((X509Certificate) certificate); in parse()
154 Log.d(TAG, "Chain: " + clientChain.size()); in parse()
169 return buildConfig(homeSP, caCert, clientChain, clientKey); in parse()
173 List<X509Certificate> clientChain, PrivateKey key) in buildConfig() argument
183 if (key != null || clientChain != null) { in buildConfig()
189 config = buildTLSConfig(homeSP, clientChain, key); in buildConfig()
194 if (key != null || clientChain != null || caCert != null) { in buildConfig()
263 List<X509Certificate> clientChain, in buildTLSConfig() argument
[all …]
/frameworks/base/packages/Osu/src/com/android/configparse/
DConfigBuilder.java35 List<X509Certificate> clientChain, PrivateKey key) in buildConfig() argument
45 if (key != null || clientChain != null) { in buildConfig()
51 config = buildTLSConfig(homeSP, clientChain, key); in buildConfig()
56 if (key != null || clientChain != null || caCert != null) { in buildConfig()
125 List<X509Certificate> clientChain, in buildTLSConfig() argument
133 if (clientKey == null || clientChain == null) { in buildTLSConfig()
143 for (X509Certificate certificate : clientChain) { in buildTLSConfig()