Week 3 - LSB algorithm Flashcards

1
Q

What is LSB Algorithm?

A

A steganography technique that makes uses of the LSB of a pixel to hide information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the least significant bit in a pixel?

A

red blue green
pixel = 1011 0101 1111

red = 101**1 LSB **

change

1000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why is the LSB chosen?

A

changing the LSB causes negligible visual change

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does the LSB algorithm embed data into a cover image?

A
  1. Payload is split bit bu bit
  2. each payload bit is compared with the LSB of a pixel
  3. if they don’t match the LSB is flipped
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Solutions to problem of LSB

A

Apply randomness

use psudo-randomness with a seed value to determine next position to hide data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Problems with LSB

A
  1. very Sequential by nature (predictable)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly