forked from cryptii/cryptii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (103 loc) · 3.73 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Enigma machine: Encrypt and decrypt online — Cryptii</title>
<!-- Style -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500%7CSource+Code+Pro:400&subset=latin-ext">
<link rel="stylesheet" href="dist/style/cryptii.css">
<!-- Script -->
<script async src="dist/script/cryptii.js" data-cryptii-init></script>
<script type="application/json" data-cryptii-config>
{
"serviceEndpoint": "https://cryptii.com/api"
}
</script>
<script type="application/vnd.cryptii.pipe+json" data-cryptii-pipe>
{
"items": [
{
"name": "text",
"alias": "Plaintext"
},
{
"name": "baudot-code"
},
{
"name": "punched-tape",
"settings": {
"rows": 5
}
},
{
"name": "bytes",
"alias": "Ciphertext",
"settings": {
"groupBits": 5,
"format": "binary"
}
}
],
"content": {
"data": "The quick brown fox jumps over the lazy dog."
}
}
</script>
</head>
<body>
<div class="app">
<header class="app__header header">
<div class="header__inner">
<div class="header__item">
<a class="header__brand" href="index.html">Cryptii</a>
</div>
<div class="header__item">
<span class="header__badge">local</span>
</div>
</div>
</header>
<article class="app__pipe pipe">
<header class="pipe__header">
<div class="container">
<h1 class="pipe__title">Modular online encoding, encryption and conversion tool</h1>
<p class="pipe__description">
Web app that encodes, decodes, encrypts, decrypts, converts, translates, simulates and views content online offering a variety of ciphers, formats, algorithms and methods
</p>
</div>
</header>
<div class="pipe__scrollable"></div>
</article>
<footer class="app__footer footer">
<div class="container">
<div class="footer__inner">
<h2 class="footer__brand"><a href="https://cryptii.com">Cryptii</a></h2>
<p class="footer__description">
Web app that encodes, decodes, encrypts, decrypts, converts, translates, simulates and
views content online offering a variety of ciphers, formats, algorithms and methods.
Designed and built with love by <a href="https://fraenz.frieder.es/" target="_blank" rel="noopener">@ffraenz</a>.
Code licensed <a href="https://github.com/cryptii/cryptii/blob/dev/LICENSE.md" target="_blank" rel="noopener">MIT</a>.
</p>
<ul class="footer__link-list link-list">
<li class="link-list__item">
<a class="link-list__link" href="https://cryptii.com">
Live version
</a>
</li>
<li class="link-list__item">
<a class="link-list__link" href="https://github.com/cryptii/cryptii" target="_blank" rel="noopener">
GitHub
</a>
</li>
<li class="link-list__item">
<a class="link-list__link" href="https://github.com/cryptii/cryptii/issues/new" target="_blank" rel="noopener">
Report an issue
</a>
</li>
</ul>
</div>
</div>
</footer>
</div>
</body>
</html>