Home
last modified time | relevance | path

Searched refs:AuthenticationFailedException (Results 1 – 25 of 27) sorted by relevance

12

/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
H A DAuthenticationFailedException.java19 public class AuthenticationFailedException extends MessagingException { class
22 public AuthenticationFailedException(String message) { in AuthenticationFailedException() method in AuthenticationFailedException
26 public AuthenticationFailedException(int exceptionType, String message) { in AuthenticationFailedException() method in AuthenticationFailedException
30 public AuthenticationFailedException(String message, Throwable throwable) { in AuthenticationFailedException() method in AuthenticationFailedException
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/
H A DIkeIdentification.java21 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
151 throws AuthenticationFailedException; in validateEndCertIdOrThrow()
163 throws AuthenticationFailedException { in validateEndCertSanOrThrow()
169 throw new AuthenticationFailedException("End certificate does not contain SAN"); in validateEndCertSanOrThrow()
180 throw new AuthenticationFailedException( in validateEndCertSanOrThrow()
183 throw new AuthenticationFailedException(e); in validateEndCertSanOrThrow()
H A DIkeDerAsn1DnIdentification.java19 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
45 public IkeDerAsn1DnIdentification(byte[] derAsn1DnBytes) throws AuthenticationFailedException { in IkeDerAsn1DnIdentification()
54 throw new AuthenticationFailedException(e); in IkeDerAsn1DnIdentification()
124 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
126 throw new AuthenticationFailedException( in validateEndCertIdOrThrow()
H A DIkeIpv4AddrIdentification.java21 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
42 public IkeIpv4AddrIdentification(byte[] ipv4AddrBytes) throws AuthenticationFailedException { in IkeIpv4AddrIdentification()
47 throw new AuthenticationFailedException(e); in IkeIpv4AddrIdentification()
111 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
H A DIkeIpv6AddrIdentification.java21 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
43 public IkeIpv6AddrIdentification(byte[] ipv6AddrBytes) throws AuthenticationFailedException { in IkeIpv6AddrIdentification()
48 throw new AuthenticationFailedException(e); in IkeIpv6AddrIdentification()
112 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
H A DIkeKeyIdIdentification.java20 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
102 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
103 throw new AuthenticationFailedException( in validateEndCertIdOrThrow()
H A DIkeRfc822AddrIdentification.java20 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
109 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
H A DIkeFqdnIdentification.java20 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
114 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/exceptions/
H A DAuthenticationFailedException.java29 public final class AuthenticationFailedException extends IkeProtocolException { class
41 public AuthenticationFailedException(@NonNull String message) { in AuthenticationFailedException() method in AuthenticationFailedException
54 public AuthenticationFailedException(@NonNull Throwable cause) { in AuthenticationFailedException() method in AuthenticationFailedException
64 public AuthenticationFailedException(byte[] notifyData) { in AuthenticationFailedException() method in AuthenticationFailedException
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeCertPayload.java21 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
96 throw new AuthenticationFailedException( in getIkeCertPayload()
99 throw new AuthenticationFailedException( in getIkeCertPayload()
102 throw new AuthenticationFailedException("Unrecognized certificate encoding type."); in getIkeCertPayload()
130 throws AuthenticationFailedException { in validateCertificates()
176 throw new AuthenticationFailedException(e); in validateCertificates()
H A DIkeCertX509CertPayload.java19 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
59 throw new AuthenticationFailedException( in IkeCertX509CertPayload()
63 throw new AuthenticationFailedException("Unexpected trailing bytes."); in IkeCertX509CertPayload()
66 throw new AuthenticationFailedException(e); in IkeCertX509CertPayload()
H A DIkeAuthDigitalSignPayload.java22 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
230 throws AuthenticationFailedException { in bytesToJavaStandardSignAlgoName()
240 throw new AuthenticationFailedException( in bytesToJavaStandardSignAlgoName()
268 throws AuthenticationFailedException { in verifyInboundSignature()
278 throw new AuthenticationFailedException("Signature verification failed."); in verifyInboundSignature()
281 throw new AuthenticationFailedException(e); in verifyInboundSignature()
H A DIkeAuthPskPayload.java19 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
119 throws AuthenticationFailedException { in verifyInboundSignature()
124 throw new AuthenticationFailedException("Signature verification failed."); in verifyInboundSignature()
H A DIkeIdPayload.java26 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
97 throw new AuthenticationFailedException("Unsupported ID type: " + idType); in IkeIdPayload()
130 throws AuthenticationFailedException { in validateEndCertIdOrThrow()
H A DIkeAuthPayload.java20 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
89 throw new AuthenticationFailedException("Unsupported authentication method"); in getIkeAuthPayload()
H A DIkeNotifyPayload.java38 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
521 return new AuthenticationFailedException(notifyData); in validateAndBuildIkeException()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeCertX509CertPayloadTest.java24 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
134 } catch (AuthenticationFailedException expected) { in testDecodeX509CertificateWithUnexpectedTrailing()
145 } catch (AuthenticationFailedException expected) { in testDecodeGetNoX509Certificate()
156 } catch (AuthenticationFailedException expected) { in testDecodeInvalidX509Certificate()
H A DIkeCertPayloadTest.java21 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
119 } catch (AuthenticationFailedException expected) { in testValidateCertsWithWrongTrustAnchor()
136 } catch (AuthenticationFailedException expected) { in testValidateCertsWithMissingIntermediateCerts()
152 } catch (AuthenticationFailedException expected) { in testValidateCertsWithSmallSizeKey()
H A DIkeAuthPayloadTest.java25 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
115 } catch (AuthenticationFailedException e) { in testDecodeIkeAuthPayloadWithUnsupportedMethod()
H A DIkeAuthPskPayloadTest.java24 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
139 } catch (AuthenticationFailedException expected) { in testVerifyReceivedSignatureFailure()
H A DIkeIdPayloadTest.java31 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
190 } catch (AuthenticationFailedException expected) { in testDecodeInvalidDerAsn1DnIdPayload()
204 } catch (AuthenticationFailedException expected) { in testDecodeUnsupportedIdType()
H A DIkeAuthDigitalSignPayloadTest.java29 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
221 } catch (AuthenticationFailedException expected) { in testVerifyInboundSignatureFail()
H A DIkeNotifyPayloadTest.java44 import android.net.ipsec.test.ike.exceptions.AuthenticationFailedException;
291 ERROR_TYPE_AUTHENTICATION_FAILED, AuthenticationFailedException.class); in testValidateAndBuildAuthFailException()
/aosp12/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
H A DImapConnection.java22 import com.android.voicemail.impl.mail.AuthenticationFailedException;
182 private void doLogin() throws IOException, MessagingException, AuthenticationFailedException { in doLogin()
224 throw new AuthenticationFailedException(alertText, ie); in doLogin()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeSessionStateMachine.java89 import android.net.ipsec.ike.exceptions.AuthenticationFailedException;
3561 throws AuthenticationFailedException { in authenticatePsk()
3563 throw new AuthenticationFailedException( in authenticatePsk()
3780 throw new AuthenticationFailedException("Missing EAP payload"); in handleResponseIkeMessage()
3930 throw new AuthenticationFailedException( in validateIkeAuthResp()
3982 throws AuthenticationFailedException { in authenticate()
4011 throws AuthenticationFailedException { in authenticateDigitalSignature()
4014 throw new AuthenticationFailedException( in authenticateDigitalSignature()
4033 throw new AuthenticationFailedException( in authenticateDigitalSignature()
4105 AuthenticationFailedException exception = in processStateMessage()
[all …]

12