Commit b7bebcf2 authored by Josh Ji's avatar Josh Ji

static temp buffer

parent b3af23b1
......@@ -33,10 +33,10 @@ public class IDSecret {
private byte[] scratch;
private final short SCRATCH_LENGTH = (short)128 ;
private CBOREncoder encoder = new CBOREncoder();
public byte[] tempBuffer = new byte[256];
public static byte[] tempBuffer = new byte[256];
public short tempBufferLength = (short)0;
private short tempCursor = (short)0;
private static short tempCursor = (short)0;
public IDSecret(){
IDx = new DomString(Utf8Strings.UTF8_NULL, (short)Utf8Strings.UTF8_NULL.length);
......@@ -135,7 +135,7 @@ public class IDSecret {
Util.arrayCopy(inputBuffer, (short)0, tempBuffer, offset, (short)inputBuffer.length);
}
public void pushTempBuffer(byte[] inputBuffer, short inputOffset, short inputLength){
public static void pushTempBuffer(byte[] inputBuffer, short inputOffset, short inputLength){
if((short)(inputLength + tempCursor) > (short)tempBuffer.length){
tempBuffer[(short)(tempBuffer.length-2)] = 'T'; // too
tempBuffer[(short)(tempBuffer.length-1)] = 'L'; // long
......@@ -152,14 +152,10 @@ public class IDSecret {
*/
public short dump(byte[] apduBuffer, byte[] dataBuffer, CBOREncoder encoder){
encoder.init(dataBuffer, (short)0, (short)1200);
encoder.startMap((short)2);
encoder.startMap((short)1);
// encoder.encodeTextString(Utf8Strings.UTF8_TEMP, (short)0, (short)Utf8Strings.UTF8_TEMP.length);
// encoder.encodeByteString(tempBuffer, (short)0, (short)tempBuffer.length);
encoder.encodeTextString(Utf8Strings.UTF8_HMAC, (short)0, (short)Utf8Strings.UTF8_HMAC.length);
encoder.encodeByteString(hmac, (short)0, (short)hmac.length);
encoder.encodeTextString(Utf8Strings.UTF8_ENCRYPTED_CX, (short)0, (short)Utf8Strings.UTF8_ENCRYPTED_CX.length);
encoder.encodeByteString(encryptedCx, (short)0, (short)encryptedCx.length);
encoder.encodeTextString(Utf8Strings.UTF8_TEMP, (short)0, (short)Utf8Strings.UTF8_TEMP.length);
encoder.encodeByteString(tempBuffer, (short)0, (short)tempBuffer.length);
return encoder.getCurrentOffset();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment