android stream 关联,Android - Stream无法正确读取数组

我目前正在处理我的Raspberry Pi和我的Android设备之间的连接。 这个连接用河豚加密,似乎在较小的尺寸(通常低于1 kB)下工作正常。 在下一步中,我尝试将我的Pi中的图片发送到我的设备,该设备应该加密。 我的设备抛出异常javax.crypto.BadPaddingException: pad block corrupted ,经过一些调试我发现大约90%的数据传输设置为零(使用大小为2444368的数组进行测试,位置212536之后一切都是零)。

我的第一个猜测是Android无法为我的阵列分配足够的内存,但因为没有异常告诉我这样,在我告诉Android我的应用程序通过largeHeap=true使用了很多ram largeHeap=true不再是问题了。 可能是我对Android的运作方式不太了解,所以我想请你帮我解决。 有问题的部分(EncryptionUtil未显示,它不是问题的一部分):

客户端:public final byte[] readWithAppend() throws IOException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException{

byte[] b = new byte[read()]; //works fine, tells me the size of the array

System.out.println("Trying to read an array with the size " + b.length);

in.read(b,0,b.length);//No Exception here, so allocation works

if(b.length >= 10000){ //Just some debug for me to compare both sides, server and client.

File f;

FileOutputStream out = new FileOutputStream(f = new File(debugFile,EncryptionUtil.randomString(80)));

System.out.println("PATH: " + f);

out.write(b);out.close();

}

System.out.println("After position " + searchPos(b) + " everything is 0 ?!?!?");

b = EncryptionUtil.decrypt(enc, b, sessionKey); //The Exception gets thrown here.

return b;

}

private int searchPos(byte[] b){

int pos = b.length;

for(int i = b.length-1;i >= 0;i--){

if(b[i] != 0)return pos;

else pos--;

}

return pos;

}

服务器端:private final void write(byte[] b,int off,int len,boolean appendLength) throws IOException{

try {

byte[] b2;

if(len != b.length || off != 0){ //Just ignore this case

byte[] buffer = new byte[len-off];System.arraycopy(b, off, buffer, 0, len);

b2 = EncryptionUtil.encrypt(enc, buffer, sessionKey);

}else{ //This is the case we have to look at

b2 = EncryptionUtil.encrypt(enc, b, sessionKey);

System.out.println("Sending an array with the size " + b2.length);

System.out.println("Decrypting to check for mistakes");

EncryptionUtil.decrypt(SymmetricEncryption.Blowfish, b2, sessionKey); //Debug.

if(b2.length >= 10000){ //Again, debug to compare the both files

FileOutputStream out2 = new FileOutputStream(new File("serverFile"));

out2.write(b2);out2.close();

}

}

if(appendLength)write(b2.length); //Works as well

System.out.println("Length: " + b2.length + "; only writing: " + ((int)len/b.length)*b2.length);// it writes everything.

out.write(b2,0,((int)len/b.length)*b2.length);  //The flush part happens somewhere else.

} catch (InvalidKeyException | NoSuchAlgorithmException| NoSuchPaddingException | IllegalBlockSizeException| BadPaddingException e) {

e.printStackTrace();

//throw new IOException(e.getMessage());

}

}

我知道需要一些时间来处理我的代码,但如果你能帮助我,我会很感激。

编辑:有关EncryptionUtil的代码public static final byte[] encrypt(final SymmetricEncryption enc,final byte[] content,final SecretKey key) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException, UnsupportedEncodingException {

final Cipher cipher = Cipher.getInstance(enc.toString());

cipher.init(Cipher.ENCRYPT_MODE, key);

return cipher.doFinal(content);

}

public static final byte[] decrypt(final SymmetricEncryption enc,final byte[] text,final SecretKey key) throws IllegalBlockSizeException, BadPaddingException, InvalidKeyException, NoSuchAlgorithmException, NoSuchPaddingException {

final Cipher cipher = Cipher.getInstance(enc.toString());

cipher.init(Cipher.DECRYPT_MODE, key);

return cipher.doFinal(text);

}

经过一些测试后,我发现我的覆盆子Pi没有正确发送数据,所以我现在试着用块发送它。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值