purecrypto 0.6.29

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
10
11
12
13
14
15
16
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';

// GitHub Pages serves a project site under /<repo>/. Override with PAGES_BASE
// (e.g. "/" for a user/org page or custom domain).
const base = process.env.PAGES_BASE || '/purecrypto/';

export default defineConfig({
  base,
  plugins: [vue()],
  build: {
    target: 'es2022',
    // The .wasm lives in public/ and is fetched at runtime, not bundled.
    assetsInlineLimit: 0,
  },
});