Removed unnecessary into calls in LSB codec
This commit is contained in:
parent
2a50eb9b40
commit
5b5f1bed5e
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "occule"
|
name = "occule"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -14,9 +14,9 @@ pub struct LsbCodec;
|
|||||||
impl Codec for LsbCodec {
|
impl Codec for LsbCodec {
|
||||||
fn encode(&self, carrier: &[u8], payload: &[u8]) -> Result<Vec<u8>, CodecError>
|
fn encode(&self, carrier: &[u8], payload: &[u8]) -> Result<Vec<u8>, CodecError>
|
||||||
{
|
{
|
||||||
let image_format = image::guess_format(carrier.into()).unwrap();
|
let image_format = image::guess_format(carrier).unwrap();
|
||||||
let mut image: DynamicImage = image::load_from_memory(carrier.into()).unwrap();
|
let mut image: DynamicImage = image::load_from_memory(carrier).unwrap();
|
||||||
let payload: &[u8] = payload.into();
|
let payload: &[u8] = payload;
|
||||||
|
|
||||||
if image.pixels().count() < payload.len() {
|
if image.pixels().count() < payload.len() {
|
||||||
return Err(CodecError::DataInvalid("Payload Too Big for Carrier".into()));
|
return Err(CodecError::DataInvalid("Payload Too Big for Carrier".into()));
|
||||||
@ -55,8 +55,8 @@ impl Codec for LsbCodec {
|
|||||||
|
|
||||||
fn decode(&self, carrier: &[u8]) -> Result<(Vec<u8>, Vec<u8>), CodecError>
|
fn decode(&self, carrier: &[u8]) -> Result<(Vec<u8>, Vec<u8>), CodecError>
|
||||||
{
|
{
|
||||||
let image_format = image::guess_format(carrier.into()).unwrap();
|
let image_format = image::guess_format(carrier).unwrap();
|
||||||
let mut image: DynamicImage = image::load_from_memory(carrier.into()).unwrap();
|
let mut image: DynamicImage = image::load_from_memory(carrier).unwrap();
|
||||||
let mut payload: Vec<u8> = Vec::new();
|
let mut payload: Vec<u8> = Vec::new();
|
||||||
|
|
||||||
match image {
|
match image {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user