-
Notifications
You must be signed in to change notification settings - Fork 19
/
mkdocs.yml
90 lines (83 loc) · 2.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
site_author: Oleg Yukhnevich
site_name: cryptography-kotlin
site_description: "Type-safe Multi-platform cryptography kotlin library"
site_url: https://whyoleg.github.io/cryptography-kotlin/
repo_name: cryptography-kotlin
repo_url: https://github.com/whyoleg/cryptography-kotlin
remote_branch: gh-pages
copyright: 'Copyright © 2023 Oleg Yukhnevich'
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/why_oleg
- icon: fontawesome/brands/telegram
link: https://t.me/why_oleg
- icon: fontawesome/brands/patreon
link: https://patreon.com/why_oleg
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/whyoleg/
nav:
- 'Overview':
- README.md
- 'Changelog': CHANGELOG.md
- 'Examples': examples.md
- 'Modules':
- 'Secure Random': modules/cryptography-random.md
- 'BigInt': modules/cryptography-bigint.md
- 'Core primitives': modules/cryptography-core.md
- 'PEM': modules/cryptography-serialization-pem.md
- 'ASN.1/DER': modules/cryptography-serialization-asn1.md
- 'ASN.1/DER modules': modules/cryptography-serialization-asn1-modules.md
- 'Dependency management':
- 'Gradle version catalog': gradle-version-catalog.md
- 'BOM': bom.md
- 'Providers':
- providers/index.md
- 'JDK': modules/cryptography-provider-jdk.md
- 'WebCrypto': modules/cryptography-provider-webcrypto.md
- 'Apple': modules/cryptography-provider-apple.md
- 'OpenSSL3': modules/cryptography-provider-openssl3.md
- 'API': api/index.html
theme:
name: 'material'
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: 'deep purple'
accent: 'white'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: 'deep purple'
accent: 'white'
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- content.code.copy
markdown_extensions:
- smarty
- tables
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.magiclink
- pymdownx.smartsymbols
- toc:
permalink: true
plugins:
- search