JavacardOS will not accept order any more, please contact our partner Feitian online Store:
https://ftsafe.en.alibaba.com/index.html
https://ftsafe.en.alibaba.com/index.html
Search found 2 matches
- Sun Oct 25, 2015 9:56 pm
- Forum: Questions & Answers
- Topic: Convert a byte array to binary array in Java Card
- Replies: 2
- Views: 8208
Re: Convert a byte array to binary array in Java Card
What't the relationship of the code and the post topic? You make a mistake? Why you have this requirement? You can implement this function like this: for (short i = 0; i < length; ++i) { byte oneByte = input[(short)(iOffset + i)]; for (short j = 0; j < (short) 8; ++j) { output[(short)(oOffset2++)] ...
- Sun Oct 25, 2015 4:19 am
- Forum: Questions & Answers
- Topic: Convert a byte array to binary array in Java Card
- Replies: 2
- Views: 8208
Convert a byte array to binary array in Java Card
How can I convert a byte array to binary array in Java Card ,such as 10101010?