-
Notifications
You must be signed in to change notification settings - Fork 2
/
faq.html
29 lines (26 loc) · 1.46 KB
/
faq.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
<!--#include file="includes/header.html" -->
<script>
document.getElementById("upload").className="";
document.getElementById("about").className="";
document.getElementById("faq").className="active";
</script>
<h1>hushfile.it Frequently Asked Questions</h1>
<dl>
<dt>Which browsers are known to work ?</dt>
<dd>
<ul>
<li>Google Chrome Version 26.0.1410.64</li>
<li>Firefox 20.0.1</li>
<li>Please report more working browsers to the <a href="mailto:hushfile@hushfile.it">author</a>!</li>
</ul>
</dd>
<dt>Which encryption is used ? Is it safe ?</dt>
<dd>
The file it's metadata are both encrypted with AES-256 in CBC mode with PKCS7 padding. The actual encryption is performed by the <a href="http://code.google.com/p/crypto-js/" target="_blank">CryptoJS 3.1.2</a> library. From their website:
<blockquote>
<p>CryptoJS is a growing collection of standard and secure cryptographic algorithms implemented in JavaScript using best practices and patterns. They are fast, and they have a consistent and simple interface.</p>
</blockquote>
</dd>
</dl>
<!--#include file="includes/footer-top.html" -->
<!--#include file="includes/footer-bottom.html" -->