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

Commit 38dee056 authored by dcashman's avatar dcashman Committed by Android (Google) Code Review
Browse files

Merge "Remove line wrapping for publickey encoding."

parents e2725f87 8a33121a
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,