Searched refs:certBuffer (Results 1 – 3 of 3) sorted by relevance
2734 public boolean installCaCert(@Nullable ComponentName admin, byte[] certBuffer) { in installCaCert() argument2738 return mService.installCaCert(admin, certBuffer); in installCaCert()2755 public void uninstallCaCert(@Nullable ComponentName admin, byte[] certBuffer) { in uninstallCaCert() argument2759 final String alias = getCaCertAlias(certBuffer); in uninstallCaCert()2831 public boolean hasCaCertInstalled(@Nullable ComponentName admin, byte[] certBuffer) { in hasCaCertInstalled() argument2836 return getCaCertAlias(certBuffer) != null; in hasCaCertInstalled()2946 private static String getCaCertAlias(byte[] certBuffer) throws CertificateException { in getCaCertAlias() argument2949 new ByteArrayInputStream(certBuffer)); in getCaCertAlias()
146 boolean installCaCert(in ComponentName admin, in byte[] certBuffer); in installCaCert() argument152 boolean installKeyPair(in ComponentName who, in byte[] privKeyBuffer, in byte[] certBuffer, in installKeyPair() argument
4277 public boolean installCaCert(ComponentName admin, byte[] certBuffer) throws RemoteException { in installCaCert() argument4282 X509Certificate cert = parseCert(certBuffer); in installCaCert()4313 private static X509Certificate parseCert(byte[] certBuffer) throws CertificateException { in parseCert() argument4316 certBuffer)); in parseCert()