Searched defs:temp (Results 1 - 2 of 2) sorted by relevance

/build/make/tools/signapk/src/com/android/signapk/
H A DSignApk.java696 public void writeSignatureBlock(ByteArrayOutputStream temp) argument
701 SignApk.writeSignatureBlock(this, publicKey, privateKey, hash, temp);
716 ByteArrayOutputStream temp = new ByteArrayOutputStream();
723 temp.write(message);
724 temp.write(0);
726 cmsOut.writeSignatureBlock(temp);
740 int total_size = temp.size() + 6;
746 temp.write(signature_start & 0xff);
747 temp.write((signature_start >> 8) & 0xff);
755 temp
[all...]
/build/tools/signapk/src/com/android/signapk/
H A DSignApk.java696 public void writeSignatureBlock(ByteArrayOutputStream temp) argument
701 SignApk.writeSignatureBlock(this, publicKey, privateKey, hash, temp);
716 ByteArrayOutputStream temp = new ByteArrayOutputStream();
723 temp.write(message);
724 temp.write(0);
726 cmsOut.writeSignatureBlock(temp);
740 int total_size = temp.size() + 6;
746 temp.write(signature_start & 0xff);
747 temp.write((signature_start >> 8) & 0xff);
755 temp
[all...]

Completed in 108 milliseconds