Of course, since each Int is 4 bytes and 16 Int(s) make 64 bytes.
Try
Code = Regex.Split(",",Dline)
Dim asInt as Int
Dim asBytes(16) As Byte
For n = 0 To 15
If IsNumber (Code(n)) Then
asInt = Code(n) 'Converts Chr$ to Int
asBytes(n) = Bit.And(asInt, 0xFF)
End If
Next
iv3 = asBytes
This should create a 16 byte Byte array. Note, the code can be cleaned up a bit more, I just did not want to mess with the existing iv3 declaration (you may not need asBytes). Also, I just typed this in here, you may need to fix some errors