Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 019118af authored by Alex Klyubin's avatar Alex Klyubin
Browse files

Fix SSLCertificateSocketFactory.getDefaultCipherSuites.

The method was returning all supported cipher suites instead of the
default ones only. The default list of cipher suites actually used by
sockets created by this factory is not affected by this issue.

Change-Id: I2e4d7c6547fcb29ff7a0943bc8791706cc8d22bc
parent a1b4d97b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -533,7 +533,7 @@ public class SSLCertificateSocketFactory extends SSLSocketFactory {


    @Override
    @Override
    public String[] getDefaultCipherSuites() {
    public String[] getDefaultCipherSuites() {
        return getDelegate().getSupportedCipherSuites();
        return getDelegate().getDefaultCipherSuites();
    }
    }


    @Override
    @Override