-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
67 lines (62 loc) · 2.04 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Project information
site_name: ECUtils
site_url: https://ecutils.readthedocs.io/en/stable/
site_author: Isak Ruas
site_description: >-
A comprehensive Python library for elliptic curve operations, providing utilities
for common tasks such as digital signature generation and verification (ECDSA),
key exchange protocols (ECDH and Massey-Omura), message encoding onto elliptic
curves (Koblitz) as well as various elliptic curve operations. It is designed to be
easy-to-use for cryptographic purposes and to facilitate the harnessing of
elliptic curve cryptography for security applications.
# Repository
repo_name: isakruas/ecutils
repo_url: https://github.com/isakruas/ecutils
# Copyright
copyright: Copyright © 2022-2024 <a href="https://lattes.cnpq.br/4397351570177069" target="_blank">Ruas, Isak Paulo de Andrade</a>; <a href="https://lattes.cnpq.br/0567547569121826" target="_blank">Paiva, Celimar Reijane Alves Damasceno</a>; <a href="https://lattes.cnpq.br/7059909954060830" target="_blank">Silva, Fernando Marcos Souza</a>.
# Configuration
theme:
name: material
language: en
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
font:
text: Roboto
code: Roboto Mono
# Plugins
plugins:
- search
- minify:
minify_html: true
# Page tree
nav:
- Home: index.md
- Installation: installation.md
- Usage: usage.md
- Core:
- Point: core/point.md
- Elliptic Curve: core/elliptic_curve.md
- Algorithms:
- Koblitz: algorithms/koblitz.md
- Digital Signature: algorithms/digital_signature.md
- Protocols:
- Diffie-Hellman: protocols/diffie_hellman.md
- Massey-Omura: protocols/massey_omura.md
- Reference:
- Curves: reference/curves.md