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

Commit 8a33121a authored by dcashman's avatar dcashman
Browse files

Remove line wrapping for publickey encoding.

This adds unnecessary whitespace in packages.xml and is contrary to the approach
taken by certs.  Remove it.

Change-Id: I217bb94af97c3b38dab1fd806ffe7b7600fa6fdd
parent 10cb2243
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -488,7 +488,7 @@ public class KeySetManagerService {
    }

    public String encodePublicKey(PublicKey k) throws IOException {
        return new String(Base64.encode(k.getEncoded(), 0));
        return new String(Base64.encode(k.getEncoded(), Base64.NO_WRAP));
    }

    public void dumpLPr(PrintWriter pw, String packageName,