選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 
 
 

16 行
364 B

  1. import stegano
  2. def test_by_chunks():
  3. x = [1, 2, 3, 4, 5, 6]
  4. chunks = stegano.by_chunk(x, 3)
  5. assert list(chunks) == [[1, 2, 3], [4, 5, 6]]
  6. def test_message_conversion():
  7. message = b"I love you\ngarbage"
  8. encoded = list(stegano.get_bitstream(message))
  9. decoded = bytes(stegano.parse_bitstream(encoded))
  10. assert decoded == b"I love you"