You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
5.0 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="description" content="[blogo-summary]" />
  5. <meta charset="utf-8">
  6. <title>Notes</title>
  7. <meta name="title" content="Notes">
  8. <meta name="description" content="Notes">
  9. <meta name="author" content="arnaucube">
  10. <link rel="icon" type="image/png" href="img/logoArnauCubeFavicon.png">
  11. <meta name="viewport" content="width=device-width, initial-scale=1">
  12. <link href="css/bootstrap.min.css" rel="stylesheet">
  13. <link rel="stylesheet" href="css/style.css">
  14. </head>
  15. <body>
  16. <!-- o_gradient_background" -->
  17. <nav id="mainNav" class="navbar navbar-default navbar-fixed-top"
  18. style="height:50px;font-size:130%;">
  19. <div class="container">
  20. <div style="float:left;">
  21. <a href="/blog" style="color:#000;display:inline-block;">Blog index</a>
  22. <span style="margin-right:20px; margin-left:20px;">|</span>
  23. <a href="/blog/notes.html" style="font-size:90%;color:#000;display:inline-block;">other-notes</a>
  24. </div>
  25. <div style="float:right;">
  26. <a href="/" style="color:#000;display:inline-block;">arnaucube.com</a>
  27. <div class="onoffswitch" style="margin:10px;display:inline-block;" title="change theme">
  28. <input onclick="switchTheme()" type="checkbox" name="onoffswitch" class="onoffswitch-checkbox"
  29. id="themeSwitcher">
  30. <label class="onoffswitch-label" for="themeSwitcher"></label>
  31. </div>
  32. </div>
  33. </div>
  34. <img style="height:5px; width:100%; margin-top:8px;" src="img/gradient-line.jpg" />
  35. </nav>
  36. <!-- in markdown which later is converted to html -->
  37. <div id="markdown" class="container" style="margin-top:40px;max-width:800px;">
  38. ### Notes:
  39. Usually while reading papers I take handwritten notes, this section contains some of them re-written to LaTeX.
  40. The notes are not complete, don’t include all the steps neither the explanations neither most of the proofs.
  41. I use these notes to revisit the concepts after some time of reading the paper.
  42. - [Notes on Halo](https://raw.githubusercontent.com/arnaucube/math/master/notes_halo.pdf)
  43. - [Notes on Sigma protocol and OR proofs](https://raw.githubusercontent.com/arnaucube/math/master/sigma-or-notes.pdf)
  44. - [Notes on BLS signatures](https://raw.githubusercontent.com/arnaucube/math/master/notes_bls-sig.pdf)
  45. - [Notes on Sonic](https://raw.githubusercontent.com/arnaucube/math/master/notes_sonic.pdf)
  46. - [Notes on Weil Pairing](https://raw.githubusercontent.com/arnaucube/math/master/pairings.pdf)
  47. </div>
  48. <footer style="text-align:center; margin-top:100px;margin-bottom:50px;">
  49. <div class="container">
  50. <br>
  51. <a href="/blog">Back to the blog</a>
  52. <br><br>
  53. <div class="row">
  54. <ul class="list-inline">
  55. <li><a href="https://twitter.com/arnaucube"
  56. style="color:gray;text-decoration:none;"
  57. target="_blank">twitter.com/arnaucube</a>
  58. </li>
  59. <li><a href="https://github.com/arnaucube"
  60. style="color:gray;text-decoration:none;"
  61. target="_blank">github.com/arnaucube</a>
  62. </li>
  63. </ul>
  64. </div>
  65. </div>
  66. </footer>
  67. <script>
  68. document.addEventListener("DOMContentLoaded", function() {
  69. renderMathInElement(document.body, {
  70. displayMode: false,
  71. // customised options
  72. // • auto-render specific keys, e.g.:
  73. delimiters: [
  74. {left: '$$', right: '$$', display: true},
  75. {left: '$', right: '$', display: false},
  76. {left: "\\[", right: "\\]", display: true},
  77. {left: "\\(", right: "\\)", display: false},
  78. ],
  79. // • rendering keys, e.g.:
  80. throwOnError : true
  81. });
  82. });
  83. ///
  84. let theme = localStorage.getItem("theme");
  85. if ((theme === "light-theme")||(theme==null)) {
  86. theme = "light-theme";
  87. document.getElementById("themeSwitcher").checked = false;
  88. } else if (theme === "dark-theme") {
  89. theme = "dark-theme";
  90. document.getElementById("themeSwitcher").checked = true;
  91. }
  92. document.body.className = theme;
  93. localStorage.setItem("theme", theme);
  94. function switchTheme() {
  95. theme = localStorage.getItem("theme");
  96. if (theme === "light-theme") {
  97. theme = "dark-theme";
  98. document.getElementById("themeSwitcher").checked = true;
  99. } else {
  100. theme = "light-theme";
  101. document.getElementById("themeSwitcher").checked = false;
  102. }
  103. document.body.className = theme;
  104. localStorage.setItem("theme", theme);
  105. console.log(theme);
  106. }
  107. </script>
  108. <script src="js/drawdown.js"></script>
  109. <script>
  110. let content = document.getElementById("markdown").innerHTML;
  111. let md = markdown(content);
  112. document.getElementById("markdown").innerHTML = md;
  113. </script>
  114. <script src="js/external-links.js"></script>
  115. </body>
  116. </html>