An open API service indexing awesome lists of open source software.

https://github.com/jochasinga/ff

Finite field library in Rust
https://github.com/jochasinga/ff

Last synced: about 1 year ago
JSON representation

Finite field library in Rust

Awesome Lists containing this project

README

          

# ff

Finite field library in Rust.

## Usage

```rust
let prime = 13;
let e1 = FieldElement(3, prime);
let e2 = FieldElement(1, prime);
let result = e1 + e2; // FieldElement_4(13)
```