다음을 통해 공유


CertStore.GetInstance 메서드

정의

오버로드

GetInstance(String, ICertStoreParameters)

CertStore 지정된 형식을 구현하고 지정된 CertStore 매개 변수를 사용하여 초기화되는 개체를 반환합니다.

GetInstance(String, ICertStoreParameters, Provider)

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

GetInstance(String, ICertStoreParameters, String)

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

GetInstance(String, ICertStoreParameters)

CertStore 지정된 형식을 구현하고 지정된 CertStore 매개 변수를 사용하여 초기화되는 개체를 반환합니다.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)Ljava/security/cert/CertStore;", "")]
public static Java.Security.Cert.CertStore? GetInstance (string? type, Java.Security.Cert.ICertStoreParameters? params);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)Ljava/security/cert/CertStore;", "")>]
static member GetInstance : string * Java.Security.Cert.ICertStoreParameters -> Java.Security.Cert.CertStore

매개 변수

type
String

요청 CertStore 된 형식의 이름입니다. 표준 형식에 대한 자세한 내용은 Java 보안 표준 알고리즘 이름 사양 CertStore 섹션을 참조하세요.

params
ICertStoreParameters

초기화 매개 변수(있을 null수 있음)입니다.

반환

CertStore 지정된 CertStore 형식을 구현하는 개체

특성

예외

공급자가 지정된 인증서 저장소 유형을 제공할 수 없으면 입니다.

지정된 매개 변수를 사용하여 이 인증서 저장소 인스턴스를 초기화할 수 없으면 입니다.

type == null의 경우

설명

CertStore 지정된 형식을 구현하고 지정된 CertStore 매개 변수를 사용하여 초기화되는 개체를 반환합니다.

이 메서드는 가장 선호하는 공급자부터 등록된 보안 공급자 목록을 트래버스합니다. 지정된 형식을 지원하는 첫 번째 공급자에서 CertStoreSpi 구현을 캡슐화하는 새 CertStore 개체가 반환됩니다.

등록된 공급자 목록은 메서드를 통해 Security#getProviders() Security.getProviders() 검색할 수 있습니다.

반환되는 값 CertStore 은 지정된 으로 초기화됩니다 CertStoreParameters. 필요한 매개 변수의 형식은 서로 다른 형식의 CertStores에 따라 달라질 수 있습니다. 지정된 CertStoreParameters 개체가 복제됩니다.

에 대한 java.security.cert.CertStore.getInstance(java.lang.String, java.security.cert.CertStoreParameters)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

GetInstance(String, ICertStoreParameters, Provider)

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/security/Provider;)Ljava/security/cert/CertStore;", "")]
public static Java.Security.Cert.CertStore? GetInstance (string? type, Java.Security.Cert.ICertStoreParameters? params, Java.Security.Provider? provider);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/security/Provider;)Ljava/security/cert/CertStore;", "")>]
static member GetInstance : string * Java.Security.Cert.ICertStoreParameters * Java.Security.Provider -> Java.Security.Cert.CertStore

매개 변수

type
String

요청 CertStore 된 형식입니다. 표준 형식에 대한 자세한 내용은 Java 보안 표준 알고리즘 이름 사양 CertStore 섹션을 참조하세요.

params
ICertStoreParameters

초기화 매개 변수(있을 null수 있음)입니다.

provider
Provider

공급자입니다.

반환

CertStore 지정된 형식을 구현하는 개체

특성

예외

지정된 공급자가 요청된 인증서 저장소 유형을 제공할 수 없으면 입니다.

지정된 매개 변수를 사용하여 이 인증서 저장소 인스턴스를 초기화할 수 없으면 입니다.

provider == null의 경우

type == null의 경우

설명

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

지정된 Provider 개체에서 CertStoreSpi 구현을 캡슐화하는 새 CertStore 개체가 반환됩니다. 지정된 공급자 개체를 공급자 목록에 등록할 필요가 없습니다.

반환되는 값 CertStore 은 지정된 으로 초기화됩니다 CertStoreParameters. 필요한 매개 변수의 형식은 서로 다른 형식의 CertStores에 따라 달라질 수 있습니다. 지정된 CertStoreParameters 개체가 복제됩니다.

에 대한 java.security.cert.CertStore.getInstance(java.lang.String, java.security.cert.CertStoreParameters, java.security.Provider)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

GetInstance(String, ICertStoreParameters, String)

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

[Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/lang/String;)Ljava/security/cert/CertStore;", "")]
public static Java.Security.Cert.CertStore? GetInstance (string? type, Java.Security.Cert.ICertStoreParameters? params, string? provider);
[<Android.Runtime.Register("getInstance", "(Ljava/lang/String;Ljava/security/cert/CertStoreParameters;Ljava/lang/String;)Ljava/security/cert/CertStore;", "")>]
static member GetInstance : string * Java.Security.Cert.ICertStoreParameters * string -> Java.Security.Cert.CertStore

매개 변수

type
String

요청 CertStore 된 형식입니다. 표준 형식에 대한 자세한 내용은 Java 보안 표준 알고리즘 이름 사양 CertStore 섹션을 참조하세요.

params
ICertStoreParameters

초기화 매개 변수(있을 null수 있음)입니다.

provider
String

공급자의 이름입니다.

반환

CertStore 지정된 형식을 구현하는 개체

특성

예외

지정된 공급자가 요청된 인증서 저장소 유형을 제공할 수 없으면 입니다.

지정된 이름을 가진 공급자를 찾을 수 없으면 입니다.

지정된 매개 변수를 사용하여 이 인증서 저장소 인스턴스를 초기화할 수 없으면 입니다.

provider == null || provider.isEmpty()의 경우

if type is .null

설명

지정된 CertStore 형식을 CertStore 구현하는 개체를 반환합니다.

지정된 공급자에서 CertStoreSpi 구현을 캡슐화하는 새 CertStore 개체가 반환됩니다. 지정된 공급자를 보안 공급자 목록에 등록해야 합니다.

등록된 공급자 목록은 메서드를 통해 Security#getProviders() Security.getProviders() 검색할 수 있습니다.

반환되는 값 CertStore 은 지정된 으로 초기화됩니다 CertStoreParameters. 필요한 매개 변수의 형식은 서로 다른 형식의 CertStores에 따라 달라질 수 있습니다. 지정된 CertStoreParameters 개체가 복제됩니다.

에 대한 java.security.cert.CertStore.getInstance(java.lang.String, java.security.cert.CertStoreParameters, java.lang.String)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상