Home | History | Annotate | Download | only in certinstaller

Lines Matching refs:bytes

82             byte[] bytes = bundle.getByteArray(key);
83 Log.d(TAG, " " + key + ": " + ((bytes == null) ? -1 : bytes.length));
84 mBundle.put(key, bytes);
112 byte[] bytes = savedStates.getByteArray(Credentials.USER_PRIVATE_KEY);
113 if (bytes != null) setPrivateKey(bytes);
124 private void parseCert(byte[] bytes) {
125 if (bytes == null) return;
132 new ByteArrayInputStream(bytes));
176 void setPrivateKey(byte[] bytes) {
180 new PKCS8EncodedKeySpec(bytes));