-
Notifications
You must be signed in to change notification settings - Fork 3
/
IX509KeyManager.xml
362 lines (362 loc) · 26 KB
/
IX509KeyManager.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<Type Name="IX509KeyManager" FullName="Javax.Net.Ssl.IX509KeyManager">
<TypeSignature Language="C#" Value="public interface IX509KeyManager : IDisposable, Java.Interop.IJavaPeerable, Javax.Net.Ssl.IKeyManager" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IX509KeyManager implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class Javax.Net.Ssl.IKeyManager, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Javax.Net.Ssl.IX509KeyManager" />
<TypeSignature Language="F#" Value="type IX509KeyManager = interface
 interface IKeyManager
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Javax.Net.Ssl.IKeyManager</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("javax/net/ssl/X509KeyManager", "", "Javax.Net.Ssl.IX509KeyManagerInvoker")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("javax/net/ssl/X509KeyManager", "", "Javax.Net.Ssl.IX509KeyManagerInvoker")>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>Instances of this interface manage which X509 certificate-based
key pairs are used to authenticate the local side of a secure
socket.</summary>
<remarks>
<para>Instances of this interface manage which X509 certificate-based
key pairs are used to authenticate the local side of a secure
socket.</para>
<para>During secure socket negotiations, implentations
call methods in this interface to:
<UL>
<LI> determine the set of aliases that are available for negotiations
based on the criteria presented,
<LI> select the <i> best alias</i> based on
the criteria presented, and
<LI> obtain the corresponding key material for given aliases.
</UL></para>
<para>Note: the X509ExtendedKeyManager should be used in favor of this
class.</para>
<para>Added in 1.4.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName="ChooseClientAlias">
<MemberSignature Language="C#" Value="public string? ChooseClientAlias (string[]? keyType, Java.Security.IPrincipal[]? issuers, Java.Net.Socket? socket);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string ChooseClientAlias(string[] keyType, class Java.Security.IPrincipal[] issuers, class Java.Net.Socket socket) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.ChooseClientAlias(System.String[],Java.Security.IPrincipal[],Java.Net.Socket)" />
<MemberSignature Language="F#" Value="abstract member ChooseClientAlias : string[] * Java.Security.IPrincipal[] * Java.Net.Socket -> string" Usage="iX509KeyManager.ChooseClientAlias (keyType, issuers, socket)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("chooseClientAlias", "([Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;", "GetChooseClientAlias_arrayLjava_lang_String_arrayLjava_security_Principal_Ljava_net_Socket_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("chooseClientAlias", "([Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;", "GetChooseClientAlias_arrayLjava_lang_String_arrayLjava_security_Principal_Ljava_net_Socket_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyType" Type="System.String[]" />
<Parameter Name="issuers" Type="Java.Security.IPrincipal[]" />
<Parameter Name="socket" Type="Java.Net.Socket" />
</Parameters>
<Docs>
<param name="keyType">the key algorithm type name(s), ordered
with the most-preferred key type first.</param>
<param name="issuers">the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used.</param>
<param name="socket">the socket to be used for this connection. This
parameter can be null, which indicates that
implementations are free to select an alias applicable
to any socket.</param>
<summary>Choose an alias to authenticate the client side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</summary>
<returns>the alias name for the desired key, or null if there
are no matches.</returns>
<remarks>
<para>Choose an alias to authenticate the client side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#chooseClientAlias(java.lang.String[],%20java.security.Principal[],%20java.net.Socket)" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.chooseClientAlias(java.lang.String[], java.security.Principal[], java.net.Socket)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="ChooseServerAlias">
<MemberSignature Language="C#" Value="public string? ChooseServerAlias (string? keyType, Java.Security.IPrincipal[]? issuers, Java.Net.Socket? socket);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string ChooseServerAlias(string keyType, class Java.Security.IPrincipal[] issuers, class Java.Net.Socket socket) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.ChooseServerAlias(System.String,Java.Security.IPrincipal[],Java.Net.Socket)" />
<MemberSignature Language="F#" Value="abstract member ChooseServerAlias : string * Java.Security.IPrincipal[] * Java.Net.Socket -> string" Usage="iX509KeyManager.ChooseServerAlias (keyType, issuers, socket)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("chooseServerAlias", "(Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;", "GetChooseServerAlias_Ljava_lang_String_arrayLjava_security_Principal_Ljava_net_Socket_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("chooseServerAlias", "(Ljava/lang/String;[Ljava/security/Principal;Ljava/net/Socket;)Ljava/lang/String;", "GetChooseServerAlias_Ljava_lang_String_arrayLjava_security_Principal_Ljava_net_Socket_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyType" Type="System.String" />
<Parameter Name="issuers" Type="Java.Security.IPrincipal[]" />
<Parameter Name="socket" Type="Java.Net.Socket" />
</Parameters>
<Docs>
<param name="keyType">the key algorithm type name.</param>
<param name="issuers">the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used.</param>
<param name="socket">the socket to be used for this connection. This
parameter can be null, which indicates that
implementations are free to select an alias applicable
to any socket.</param>
<summary>Choose an alias to authenticate the server side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</summary>
<returns>the alias name for the desired key, or null if there
are no matches.</returns>
<remarks>
<para>Choose an alias to authenticate the server side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#chooseServerAlias(java.lang.String,%20java.security.Principal[],%20java.net.Socket)" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.chooseServerAlias(java.lang.String, java.security.Principal[], java.net.Socket)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="GetCertificateChain">
<MemberSignature Language="C#" Value="public Java.Security.Cert.X509Certificate[]? GetCertificateChain (string? alias);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Security.Cert.X509Certificate[] GetCertificateChain(string alias) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.GetCertificateChain(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetCertificateChain : string -> Java.Security.Cert.X509Certificate[]" Usage="iX509KeyManager.GetCertificateChain alias" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getCertificateChain", "(Ljava/lang/String;)[Ljava/security/cert/X509Certificate;", "GetGetCertificateChain_Ljava_lang_String_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getCertificateChain", "(Ljava/lang/String;)[Ljava/security/cert/X509Certificate;", "GetGetCertificateChain_Ljava_lang_String_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Security.Cert.X509Certificate[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="alias" Type="System.String" />
</Parameters>
<Docs>
<param name="alias">the alias name</param>
<summary>Returns the certificate chain associated with the given alias.</summary>
<returns>the certificate chain (ordered with the user's certificate first
and the root certificate authority last), or null
if the alias can't be found.</returns>
<remarks>
<para>Returns the certificate chain associated with the given alias.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#getCertificateChain(java.lang.String)" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.getCertificateChain(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="GetClientAliases">
<MemberSignature Language="C#" Value="public string[]? GetClientAliases (string? keyType, Java.Security.IPrincipal[]? issuers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string[] GetClientAliases(string keyType, class Java.Security.IPrincipal[] issuers) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.GetClientAliases(System.String,Java.Security.IPrincipal[])" />
<MemberSignature Language="F#" Value="abstract member GetClientAliases : string * Java.Security.IPrincipal[] -> string[]" Usage="iX509KeyManager.GetClientAliases (keyType, issuers)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getClientAliases", "(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;", "GetGetClientAliases_Ljava_lang_String_arrayLjava_security_Principal_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getClientAliases", "(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;", "GetGetClientAliases_Ljava_lang_String_arrayLjava_security_Principal_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyType" Type="System.String" />
<Parameter Name="issuers" Type="Java.Security.IPrincipal[]" />
</Parameters>
<Docs>
<param name="keyType">the key algorithm type name</param>
<param name="issuers">the list of acceptable CA issuer subject names,
or null if it does not matter which issuers are used.</param>
<summary>Get the matching aliases for authenticating the client side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</summary>
<returns>an array of the matching alias names, or null if there
were no matches.</returns>
<remarks>
<para>Get the matching aliases for authenticating the client side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#getClientAliases(java.lang.String,%20java.security.Principal[])" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.getClientAliases(java.lang.String, java.security.Principal[])</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="GetPrivateKey">
<MemberSignature Language="C#" Value="public Java.Security.IPrivateKey? GetPrivateKey (string? alias);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Security.IPrivateKey GetPrivateKey(string alias) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.GetPrivateKey(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPrivateKey : string -> Java.Security.IPrivateKey" Usage="iX509KeyManager.GetPrivateKey alias" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPrivateKey", "(Ljava/lang/String;)Ljava/security/PrivateKey;", "GetGetPrivateKey_Ljava_lang_String_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPrivateKey", "(Ljava/lang/String;)Ljava/security/PrivateKey;", "GetGetPrivateKey_Ljava_lang_String_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Security.IPrivateKey</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="alias" Type="System.String" />
</Parameters>
<Docs>
<param name="alias">the alias name</param>
<summary>Returns the key associated with the given alias.</summary>
<returns>the requested key, or null if the alias can't be found.</returns>
<remarks>
<para>Returns the key associated with the given alias.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#getPrivateKey(java.lang.String)" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.getPrivateKey(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="GetServerAliases">
<MemberSignature Language="C#" Value="public string[]? GetServerAliases (string? keyType, Java.Security.IPrincipal[]? issuers);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string[] GetServerAliases(string keyType, class Java.Security.IPrincipal[] issuers) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IX509KeyManager.GetServerAliases(System.String,Java.Security.IPrincipal[])" />
<MemberSignature Language="F#" Value="abstract member GetServerAliases : string * Java.Security.IPrincipal[] -> string[]" Usage="iX509KeyManager.GetServerAliases (keyType, issuers)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getServerAliases", "(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;", "GetGetServerAliases_Ljava_lang_String_arrayLjava_security_Principal_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getServerAliases", "(Ljava/lang/String;[Ljava/security/Principal;)[Ljava/lang/String;", "GetGetServerAliases_Ljava_lang_String_arrayLjava_security_Principal_Handler:Javax.Net.Ssl.IX509KeyManagerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyType" Type="System.String" />
<Parameter Name="issuers" Type="Java.Security.IPrincipal[]" />
</Parameters>
<Docs>
<param name="keyType">the key algorithm type name</param>
<param name="issuers">the list of acceptable CA issuer subject names
or null if it does not matter which issuers are used.</param>
<summary>Get the matching aliases for authenticating the server side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</summary>
<returns>an array of the matching alias names, or null
if there were no matches.</returns>
<remarks>
<para>Get the matching aliases for authenticating the server side of a secure
socket given the public key type and the list of
certificate issuer authorities recognized by the peer (if any).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/X509KeyManager#getServerAliases(java.lang.String,%20java.security.Principal[])" title="Reference documentation">Java documentation for <code>javax.net.ssl.X509KeyManager.getServerAliases(java.lang.String, java.security.Principal[])</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
</Members>
</Type>