pub fn recover(data: Vec<BigUint>) -> Vec<BigUint>
Expand description
Recovers the original data from a given blob.
This function takes a vector of BigUint
representing the data of a blob and
returns the recovered original data as a vector of BigUint
.
§Arguments
data
- A vector ofBigUint
representing the blob data.
§Returns
A vector of BigUint
representing the recovered original data.