WIP feat: initial gfmul algo. Not working yet.

This commit is contained in:
0xalivecow 2024-10-20 23:15:19 +02:00
parent c416547067
commit bbae7d6f8b
No known key found for this signature in database
5 changed files with 79 additions and 7 deletions

View file

@ -33,6 +33,7 @@ pub fn task_deploy(testcase: &Testcase) -> Result<Value> {
}
"block2poly" => {
let result: Vec<u8> = block2poly(args)?;
//TODO: Sort Coefficients
let json = json!({"coefficients" : result});
Ok(json)
}