rust-crypto 0.2.32

A (mostly) pure-Rust implementation of various common cryptographic algorithms.
Documentation
1
2
3
4
5
6
7
8
#include <stdio.h>

void main() {
    int x = 0;
    int y = 0;
    x = y += 1;
    printf("%d", x);
}