This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Decoding

Hello,

I have this code from PAR pos system. I want to know what does this number represent and is anyway to convert it into decimal and ascii
03 03 A1 02 06 00 03 00 FF FF 34 5E 31 98 74

What is the value of last five sets in decimal. Is there any software that I can use to get value from memory of POS register? Please help. Thanks

Parents
  • Is that POS as in Point-of-Sales?

    Have you contacted the manufacturer?

    Note that POS protocols are often intended to be non-readable for the simple reason that they do not want people to be able to skim credit card information.

    Decoding - or possibly "cracking" protocols is something that normally requires access to many messages and normally also some knowledge about what information may have been sent in a message.

    Storing your 15 bytes into a binary file, a number of binary editors will allow you to view the data in a number of ways - as BCD, 8-bit, 16-bit, 32-bit, 64-bit, byte-reversed, 4-byte FP, 8-byte FP, ...

    The thing here is that if you do mean point-of-sales, then you don't need to know the contents unless you are implementing one of the end points - the POS equipment in the store, or the receiver at the opposite end. Any transfer media in between do not need to care - and isn't expected to know - about the contents of messages. They are expected to be transparent modems.

Reply
  • Is that POS as in Point-of-Sales?

    Have you contacted the manufacturer?

    Note that POS protocols are often intended to be non-readable for the simple reason that they do not want people to be able to skim credit card information.

    Decoding - or possibly "cracking" protocols is something that normally requires access to many messages and normally also some knowledge about what information may have been sent in a message.

    Storing your 15 bytes into a binary file, a number of binary editors will allow you to view the data in a number of ways - as BCD, 8-bit, 16-bit, 32-bit, 64-bit, byte-reversed, 4-byte FP, 8-byte FP, ...

    The thing here is that if you do mean point-of-sales, then you don't need to know the contents unless you are implementing one of the end points - the POS equipment in the store, or the receiver at the opposite end. Any transfer media in between do not need to care - and isn't expected to know - about the contents of messages. They are expected to be transparent modems.

Children