Back to project page Android-Activity-Tracker-for-Dynamics-CRM.
The source code is released under:
MIT License
If you think the Android project Android-Activity-Tracker-for-Dynamics-CRM listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.microsoft.aad.adal; //from w ww . j av a2 s .c o m import java.security.cert.X509Certificate; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAPublicKey; import java.util.List; /** * Work place join related certificate is required to respond device challange. */ public interface IDeviceCertificate { /** * Checks valid issuer for cert authorities. * * @param certAuthorities list of cert authorities * @return status if valid issue */ boolean isValidIssuer(final List<String> certAuthorities); /** * Gets certificate. * * @return {@link X509Certificate} */ X509Certificate getCertificate(); /** * Gets RSA private key. * * @return RSA private key */ RSAPrivateKey getRSAPrivateKey(); /** * Gets thumbPrint for certificate. * * @return thumbPrint for certificate. */ String getThumbPrint(); /** * Gets RSA public key. * * @return RSA public key. */ RSAPublicKey getRSAPublicKey(); }