Reputation: 2951
I need to store 16 bytes in java.
How can i do the same.
Issue :
M = D || I
Here D
would be 8 bytes, I
would be 8 bytes and ||
denotes concatenation
so M
will be 128 bits or 16 Byte long.
How can i store M
in java datatype?
Upvotes: 5
Views: 4119