feat: Initial task runner functionality

This commit is contained in:
0xalivecow 2024-10-20 16:14:42 +02:00
parent 713994d848
commit 43bea77392
No known key found for this signature in database
6 changed files with 244 additions and 35 deletions

View file

@ -4,4 +4,5 @@ use serde_json::Value;
pub fn poly2block(coefficients: Vec<u8>) -> String {
BASE64_STANDARD.encode(poly::coefficient_to_binary(coefficients).to_ne_bytes())
}
}