对于图像而言,原理是LSB(最低不重要位)嵌入法,到到底嵌入的方式是怎么的呢?
我分析过两个试验,对于24位真彩图,确实是在lsb嵌入的,但在嵌入率为57%(或其他非完全嵌入)的情况下,最低位的数据改变表现不是在局部,而好像是全部像素值的最后一位。想知道到底是如何嵌入的:是连续的还是随机的,是从图像数据一开始就嵌入,还是在特定的问题嵌入,特定的话是在哪里。对于8位图像,数据图像数据完全变化,有可能是和改变调色板有关,但不知具体是如何嵌入的?请高手明示!

解决方案 »

  1.   

    没人响应
    我最近看了些资料,说嵌入的方式是这样的:
    S-Tools applies the LSB technique discussed earlier in hiding information. Instead of just spreading the information to be hidden in linear fashion across the available bits, it uses a cryptographically strong pseudo-random number generator (from the chosen passphrase) to determine the position of the next bit to use.
    For instance, if there are 100 bits available for hiding and you wanted to hide 10 bits, S-Tools will choose any random 10 bits (depending on the chosen passphrase). For example, 83,92,15,20,2,53,99,80,21,30 may be the sequence rather than 0,1,2,3,4,5,6,7,8,9[S-Tools documentation].
    有同志了解更加详细的情况,请告知!谢谢!