[go: up one dir, main page]

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 tmp[] = {0, 1};
    int* t = tmp;
    printf("%d\n", *t++);    
    printf("%d\n", *t++);    
}