java.lang.Object | |
↳ | com.samsung.android.knox.keystore.EnterpriseCertEnrollPolicy |
Deprecated in API level 30
This class provides certificate enrollment related APIs which can be used to provision certificates inside or outside the containers. Using this policy user can do certificate enrollment, renewal and deletion operations with different protocols like SCEP, EST-CMC and CMP. For sample API flow please refer Certificate Enrollment Policy API flow
1. Instantiation of EnterpriseCertEnrollPolicy
policy object and Binding to Certificate Enrollment Service:
The caller can get an instance of EnterpriseCertEnrollPolicy
from EnterpriseKnoxManager
.
This will give an instance of EnterpriseCertEnrollPolicy
which can be used to connect and perform certificate enrollment
functionality with the Certificate Enrollment Service present in the same user space as the caller.
String cepProtocol = CEPConstants.CERT_PROFILE_TYPE_SCEP //for SCEP
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context);
EnterpriseCertEnrollPolicy cep = ekm.getEnterpriseCertEnrollPolicy(Context, cepProtocol);
The caller can get an instance of EnterpriseCertEnrollPolicy
from KnoxContainerManager
by
providing the container Id explicitly. This will give an instance of EnterpriseCertEnrollPolicy
which can be used to connect and perform
certificate enrollment functionality with the Certificate Enrollment Service present in the container space that is mentioned in the argument.
String cepProtocol = CEPConstants.CERT_PROFILE_TYPE_SCEP //for SCEP
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context);
KnoxContainerManager kcm = ekm.getKnoxContainerManager(containerID); // When you create container successfully, containerID will be returned via intent.
EnterpriseCertEnrollPolicy cep = kcm.getEnterpriseCertEnrollPolicy(cepProtocol);
NOTE: Binding of Certificate Enrollment Service happens together with the initialization of EnterpriseCertEnrollPolicy
object.
2. Registering the receiver for broadcast reception from Certificate enrollment policy:
The caller must register a receiver and listen
for the following actions
CEP_ACTION_CERT_ENROLL_STATUS
CEP_ACTION_SERVICE_DISCONNECTED
3. Performing Certificate Enrollment operations: Once the instance of Certificate Enrollment policy is obtained, following operations can be done:
public class EnterpriseCEPpolicyReciever extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equalsIgnoreCase(CEPConstants.CEP_ACTION_SERVICE_DISCONNECTED)) {
String serviceUserId = intent.getExtra(CEPConstants.EXTRA_SERVICE_USERID);// User Id of the Certificate Enrollment Service.
String servicePkgName = intent.getExtra(CEPConstants.EXTRA_SERVICE_PROTOCOL);// Protocol supported by Certificate Enrollment Service.
}else if( intent.getAction().equalsIgnoreCase(CEPConstants.CEP_ACTION_CERT_ENROLL_STATUS)){
int status = intent.getIntExtra(CEPConstants.EXTRA_ENROLL_STATUS, -1); // tells about the status of the request.
}
}
}
enrollUserCertificate(EnrollmentProfile, List, String)
renewUserCertificate(String, List)
deleteUserCertificate(String)
getCertEnrollmentStatus(String)
API level 12 |
KNOX 2.1 |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Deprecated
in API level 30
| |||||||||||
Deprecated
in API level 30
| |||||||||||
Deprecated
in API level 30
| |||||||||||
Deprecated
in API level 30
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Deprecated in API level 30
API to delete user certificate.
SecurityException | If caller does not have required permissions. |
---|
Locally deletes the X.509 certificate specified by the certificate hash value. This is NOT equivalent to certificate revocation. Certificate revocation in the CA server and MDM registry clean up have to be done out-of-band. |
|
|
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_CERTIFICATE_ENROLLMENT" permission which has a protection level of signature. |
User Scope |
API level 12 |
KNOX 2.1 |
Deprecated in API level 30
API to initiate enrollment with Certificate Enrollment service with the Enrollment Profile.
enrollmentProfile | Profile containing protocol specific inputs. Respective Profile has to be passed for each protocols. This can be of type SCEP, CMP or EST-CMC |
---|---|
allowedPackages | List of applications that can access the certificate received from CA server. For CEP_KEYSTORETYPE_CCM -- List can contain string "ALL" for all the packages, "WIFI" for wifi and Individual package names for each package.For CEP_KEYSTORETYPE_ANDROID -- List can contain string "ALL" for all the packages, "WIFI" for wifi. |
caCertHash | MD5 hash/fingerprint (HEX format) of the CA certificate(DER format). This is not a mandatory parameter. Although it can be used as an added security check
to verify the authenticity of CA certificate received.
NOTE: From KNOX 2.7, 'caCertHash' supports SHA-256 hash type. If sending this param, then set the corresponding hash algorithm type in hashAlgorithmType
|
CEP_ACTION_CERT_ENROLL_STATUS
with intent extra EXTRA_ENROLL_REFERENCE_NUMBER
.SecurityException | If caller does not have required permissions. |
---|
Issues a public key X.509 certificate by sending a self-signed CSR to the
CA server for enrolling in a PKI represented by the CA server.
A broadcast action
Below is snippet of Enrolment Profile object for SCEP Protocol, which is passed as profile information for enrolling a certificate.
|
|
|
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_CERTIFICATE_ENROLLMENT" permission which has a protection level of signature. |
User Scope |
API level 12 |
KNOX 2.1 |
Deprecated in API level 30
API to get status of certificate enrollment or renewal.
transactionId | Unique transaction id returned through broadcast by enrollUserCertificate(EnrollmentProfile, List, String) or renewUserCertificate(String, List) |
---|
CERT_SUCCESS
, ERROR_CERT_FAILURE
, ERROR_CERT_PENDING
.SecurityException | If caller does not have required permissions. |
---|
The method returns the certificate enrollment status for the given Transaction Id. |
|
|
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_CERTIFICATE_ENROLLMENT" permission which has a protection level of signature. |
User Scope |
API level 12 |
KNOX 2.1 |
Deprecated in API level 30
API to renew enrolled user certificate.
allowedPackages | List of applications that can access the certificate received from CA server. For CEP_KEYSTORETYPE_CCM -- List can contain string "ALL" for all the packages, "WIFI" for wifi and Individual package names for each package.For CEP_KEYSTORETYPE_ANDROID -- List can contain string "ALL" for all the packages, "WIFI" for wifi. |
---|
CEP_ACTION_CERT_ENROLL_STATUS
with intent extra EXTRA_ENROLL_REFERENCE_NUMBER
.SecurityException | If caller does not have required permissions. |
---|
Renews an X.509 certificate by sending a CSR to the CA server. The CSR is signed using the
old certificate. A broadcast action |
|
|
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_CERTIFICATE_ENROLLMENT" permission which has a protection level of signature. |
User Scope |
API level 12 |
KNOX 2.1 |