Searched defs:certBuffer (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java2727 * @param certBuffer encoded form of the certificate to install.
2729 * @return false if the certBuffer cannot be parsed or installation is
2734 public boolean installCaCert(@Nullable ComponentName admin, byte[] certBuffer) { argument
2738 return mService.installCaCert(admin, certBuffer);
2751 * @param certBuffer encoded form of the certificate to remove.
2755 public void uninstallCaCert(@Nullable ComponentName admin, byte[] certBuffer) { argument
2759 final String alias = getCaCertAlias(certBuffer);
2827 * @param certBuffer encoded form of the certificate to look up.
2831 public boolean hasCaCertInstalled(@Nullable ComponentName admin, byte[] certBuffer) { argument
2836 return getCaCertAlias(certBuffer) !
2946 getCaCertAlias(byte[] certBuffer) argument
[all...]
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java4277 public boolean installCaCert(ComponentName admin, byte[] certBuffer) throws RemoteException { argument
4282 X509Certificate cert = parseCert(certBuffer);
4313 private static X509Certificate parseCert(byte[] certBuffer) throws CertificateException { argument
4316 certBuffer));

Completed in 86 milliseconds