Skip to content

Commit

Permalink
added code to evaluate apk signature (currently outcommented)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrvarz committed Apr 28, 2022
1 parent ed1294f commit 1669ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/timur/webcall/callee/WebCallCalleeActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ protected void onCreate(Bundle savedInstanceState) {
certFactory = CertificateFactory.getInstance("X509");
}
catch (CertificateException e) {
Log.e(getClass().getSimpleName(), "Exception getting CertificateFactory", e);
Log.d(TAG, "Exception getting CertificateFactory", e);
}
if(certFactory!=null) {
X509Certificate cert = null;
Expand All @@ -176,7 +176,7 @@ protected void onCreate(Bundle savedInstanceState) {
cert = (X509Certificate)certFactory.generateCertificate(bin);
}
catch (CertificateException e) {
Log.e(getClass().getSimpleName(),"Exception getting X509Certificate", e);
Log.d(TAG,"Exception getting X509Certificate", e);
}
if(cert!=null) {
Log.d(TAG, "onCreate cert : " + cert);
Expand Down

0 comments on commit 1669ffd

Please sign in to comment.