how-to-use.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE HTML>
  2. <!--
  3. Hyperspace by HTML5 UP
  4. html5up.net | @ajlkn
  5. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  6. -->
  7. <html>
  8. <head>
  9. <title>How to Use - AnonymousMessenger</title>
  10. <meta charset="utf-8" />
  11. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
  12. <link rel="stylesheet" href="assets/css/main.css" />
  13. <noscript>
  14. <link rel="stylesheet" href="assets/css/noscript.css" />
  15. </noscript>
  16. </head>
  17. <body class="is-preload">
  18. <header id="header">
  19. <a href="index.html" class="title">AnonymousMessenger</a>
  20. <nav>
  21. <ul>
  22. <li><a href="index.html">Home</a></li>
  23. <li><a href="how-to-use.html" class="active">How to Use</a></li>
  24. </ul>
  25. </nav>
  26. </header>
  27. <div id="wrapper">
  28. <section id="main" class="wrapper">
  29. <div class="inner">
  30. <h1 class="major">How to Use</h1>
  31. <ul>
  32. <li>First get the app from <a href="/app-debug.apk">here</a> or build as an android project from source.</li>
  33. <li>Start the app on android and create an account, this will start a local encrypted database and
  34. setup tor and start an onion v3 service and setup a cryptographic identity on your phone.</li>
  35. <li>After tor is done doing it's thing you will have an address you can share with who you want to
  36. contact you!</li>
  37. <li style="color: red;">To contact someone both of you have to add each other's addresses in the add
  38. contact view.</li>
  39. <li>When you add someone in your contacts the app will automatically start an encrypted session with
  40. that someone by exchanging key exchange messages for the second layer of encryption over the
  41. already e2e encrypted onion protocol connection.</li>
  42. </ul>
  43. <p>And that's it, it's supposed to be easy to use and intuitive.</p>
  44. <p>You now have 2 layers of e2e encryption without storing anything in any servers and only using onion
  45. v3 connections, all your messages are stored encrypted in your phone using your password, including
  46. all media messages and audio messages.</p>
  47. </div>
  48. </section>
  49. </div>
  50. <footer id="footer" class="wrapper alt">
  51. <div class="inner">
  52. <ul class="menu">
  53. <li>&copy; AnonymousMessenger.</li>
  54. <li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
  55. </ul>
  56. </div>
  57. </footer>
  58. </body>
  59. </html>