First off, I'm not sure if this is even the right place for it but I could really use any help.
So I am given an ASCII file that contains the string
abcdefghijklmnopqrstuvwxyz12345-ABCDEFGHIJKLMNOPQRSTUVWXYZ12345a
and I am supposed to run a CRC-15 polynomial of (1010000001010011) of which its supposed to give me an answer of 1a6a
. I'm just trying to wrap my head around on how he got this. I've been using this site https://www.ghsi.de/CRC/, to check to see if I understand it correctly but I keep getting 346a
. My understanding is that each character from the string contains a specific hex value for it, thus on using the calculator I rewrite the message in hex with it looking something like 61 62 63 64 65 66 67 68 69 6a...
then run the from there.
Anyone mind helping me with anything here?