AlgorithmParameterGenerator.GetInstance Method

Definition

Overloads

GetInstance(String)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

GetInstance(String, Provider)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

GetInstance(String, String)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

GetInstance(String)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;", "")]
public static Java.Security.AlgorithmParameterGenerator? GetInstance (string? algorithm);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;", "")>]
static member GetInstance : string -> Java.Security.AlgorithmParameterGenerator

Parameters

algorithm
String

the name of the algorithm this parameter generator is associated with.cc

Returns

the new AlgorithmParameterGenerator object

Attributes

Exceptions

if the specified algorithm is not available.

if algorithm is null.

Remarks

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

This method traverses the list of registered security Providers, starting with the most preferred Provider. A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the first Provider that supports the specified algorithm is returned.

Note that the list of registered providers may be retrieved via the Security#getProviders() Security.getProviders() method.

Java documentation for java.security.AlgorithmParameterGenerator.getInstance(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

GetInstance(String, Provider)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameterGenerator;", "")]
public static Java.Security.AlgorithmParameterGenerator? GetInstance (string? algorithm, Java.Security.Provider? provider);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameterGenerator;", "")>]
static member GetInstance : string * Java.Security.Provider -> Java.Security.AlgorithmParameterGenerator

Parameters

algorithm
String

the string name of the algorithm this parameter generator is associated with.

provider
Provider

the Provider object.

Returns

the new AlgorithmParameterGenerator object

Attributes

Exceptions

if the specified algorithm is not available.

if algorithm is null.

if provider == null

Remarks

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list.

Added in 1.4.

Java documentation for java.security.AlgorithmParameterGenerator.getInstance(java.lang.String, java.security.Provider).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

GetInstance(String, String)

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;", "")]
public static Java.Security.AlgorithmParameterGenerator? GetInstance (string? algorithm, string? provider);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/lang/String;)Ljava/security/AlgorithmParameterGenerator;", "")>]
static member GetInstance : string * string -> Java.Security.AlgorithmParameterGenerator

Parameters

algorithm
String

the name of the algorithm this parameter generator is associated with.

provider
String

the string name of the Provider.

Returns

the new AlgorithmParameterGenerator object

Attributes

Exceptions

if the specified algorithm is not available.

if the specified provider is not available.

if provider == null || provider.isEmpty()

if algorithm is null.

Remarks

Returns an AlgorithmParameterGenerator object for generating a set of parameters to be used with the specified algorithm.

A new AlgorithmParameterGenerator object encapsulating the AlgorithmParameterGeneratorSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list.

Note that the list of registered providers may be retrieved via the Security#getProviders() Security.getProviders() method.

Java documentation for java.security.AlgorithmParameterGenerator.getInstance(java.lang.String, java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to