This repository has been archived by the owner on Feb 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·85 lines (78 loc) · 3.13 KB
/
index.html
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
---
layout: default
---
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br>
<h1 class="header center">Introducing Miscreant</h1>
<div class="row center">
<h5 class="header col s12 light">A misuse-resistant encryption library, available for the following languages:</h5>
</div>
<div id="languages" class="row center">
<a href="https://github.com/miscreant/miscreant.net/">
<img class="icon-lang" title="C#" src="/images/lang-csharp.svg"><br>
C#/.NET
</a>
<a href="https://github.com/miscreant/miscreant.go/">
<img class="icon-lang" title="Golang" src="/images/lang-go.svg"><br>
Go
</a>
<a href="https://github.com/miscreant/miscreant.js/">
<img class="icon-lang" title="JavaScript" src="/images/lang-js.svg"><br>
JavaScript
</a>
<a href="https://github.com/miscreant/miscreant.py/">
<img class="icon-lang" title="Python" src="/images/lang-python.svg"><br>
Python
</a>
<a href="https://github.com/miscreant/miscreant.rb/">
<img class="icon-lang" title="Ruby" src="/images/lang-ruby.svg"><br>
Ruby
</a>
<a href="https://github.com/miscreant/miscreant.rs/">
<img class="icon-lang" title="Rust" src="/images/lang-rust.svg"><br>
Rust
</a>
</div>
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">security</i></h2>
<h5 class="center">Hard-to-Misuse</h5>
<p class="light">
The encryption algorithms in Miscreant were purposefully
designed to gracefully tolerate a wide spectrum of
mistakes by users, most notably nonce-reuse misuse resistance,
considered the gold standard in symmetric cryptography today.
</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">view_week</i></h2>
<h5 class="center">Streaming Support</h5>
<p class="light">
By utilizing a provably secure cryptographic construction called
STREAM, Miscreant's cryptographic operations can be performed
in an incremental streaming manner without sacrificing security.
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">developer_board</i></h2>
<h5 class="center">IoT Friendly</h5>
<p class="light">
Minimal code size and simplicity are two of Miscreant's design
goals. It's been designed with embedded/IoT devices in mind,
and only depends on a hardware accelerated AES function.
</p>
</div>
</div>
</div>
</div>
</div>