purecrypto 0.6.28

A pure-Rust cryptography toolkit with no foreign-code dependencies, from constant-time primitives up to keys, X.509 and TLS.
Documentation
1
2
3
4
5
6
7
8
9
import { createApp } from 'vue';
import './styles/base.css';
import App from './App.vue';
import { initCrypto } from './store.js';

// Kick off wasm loading immediately; the UI reflects progress.
initCrypto();

createApp(App).mount('#app');