I'm attempting to verify if the file in the program buffer account matches the content of the build file. I used solana account to retrieve data from the buffer account, calculated the SHA sum, and compared it with the SHA sum of the uploaded build file, but the results aren't matching as expected.
commands used
$ cat ./target/deploy/test_build.so | shasum -a 256 | awk '{print $1}'$ solana account <account-address> | shasum -a 256 | awk '{print $1}'