mirror of
https://github.com/arnaucube/blog.git
synced 2026-02-10 04:36:41 +01:00
Add blind-signatures-ec post
Add blind-signatures-ec post & update css style
This commit is contained in:
@@ -2,11 +2,24 @@
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta name="description" content="Webpage description goes here" />
|
||||
<meta name="description" content="arnaucube blog" />
|
||||
<meta charset="utf-8">
|
||||
<title>ArnauCube - Blog</title>
|
||||
<meta name="title" content="ArnauCube - Blog">
|
||||
<meta name="description" content="arnaucube blog">
|
||||
|
||||
<meta property="og:title" content="ArnauCube - Blog" />
|
||||
<meta property="og:description" content="arnaucube blog" />
|
||||
<meta property="og:url" content="https://arnaucube.com/blog" />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:image" content="https://arnaucube.com/blog/img/logoArnauCube.png" />
|
||||
<meta name="twitter:title" content="ArnauCube - Blog">
|
||||
<meta name="twitter:description" content="arnaucube blog">
|
||||
<meta name="twitter:image" content="https://arnaucube.com/blog/img/logoArnauCube.png">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="author" content="arnaucube">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="">
|
||||
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
@@ -22,20 +35,30 @@
|
||||
|
||||
<body>
|
||||
|
||||
<!-- o_gradient_background" -->
|
||||
<!-- o_gradient_background" -->
|
||||
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top"
|
||||
style="height:50px;font-size:130%;">
|
||||
style="height:50px;font-size:130%;">
|
||||
<div class="container">
|
||||
<a href="/blog" style="color:#000;">Blog index</a>
|
||||
<a href="/" style="color:#000;float:right;">arnaucube.com</a>
|
||||
</div>
|
||||
<img style="height:5px; width:100%; margin-top:8px;" src="img/gradient-line.jpg" />
|
||||
</nav>
|
||||
<div class="o_gradient_background" style="height:5px;"></div>
|
||||
|
||||
|
||||
|
||||
<div class="container" style="margin-top:80px;max-width:800px;">
|
||||
<a href='/blog/coffeeminer-hacking-wifi-cryptocurrency-miner.html'><div class="row" style="color:#000000;text-decoration:none;">
|
||||
<div class="container" style="margin-top:40px;max-width:800px;">
|
||||
<a href='/blog/blind-signatures-ec.html'><div class="row" style="color:#000000;text-decoration:none;">
|
||||
<h2>Notes on blind signatures over elliptic curves</h2>
|
||||
|
||||
<p>In this notes, we will cover the scheme proposed at <em>“New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem”</em> paper by Hamid Mala & Nafiseh Nezhadansari.</p>
|
||||
|
||||
<p><em>2021-07-30</em></p>
|
||||
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
</a><a href='/blog/coffeeminer-hacking-wifi-cryptocurrency-miner.html'><div class="row" style="color:#000000;text-decoration:none;">
|
||||
<h2>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests</h2>
|
||||
|
||||
<p>The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker.</p>
|
||||
@@ -84,7 +107,7 @@
|
||||
</div>
|
||||
<div class="row" style="display:inline-block;">
|
||||
Blog made with <a href="http://github.com/arnaucube/blogo/"
|
||||
target="_blank" style="color: gray;text-decoration:none;">Blogo</a>
|
||||
target="_blank" style="color: gray;text-decoration:none;">Blogo</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@@ -96,20 +119,21 @@
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/katex.min.js" integrity="sha384-YNHdsYkH6gMx9y3mRkmcJ2mFUjTd0qNQQvY9VYZgQd7DcN7env35GzlmFaZ23JGp" crossorigin="anonymous"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/contrib/auto-render.min.js" integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
renderMathInElement(document.body, {
|
||||
displayMode: false,
|
||||
// customised options
|
||||
// • auto-render specific keys, e.g.:
|
||||
delimiters: [
|
||||
{left: '$$', right: '$$', display: true},
|
||||
{left: '$', right: '$', display: false},
|
||||
{left: '$$', right: '$$', display: true},
|
||||
{left: '$', right: '$', display: false},
|
||||
],
|
||||
// • rendering keys, e.g.:
|
||||
throwOnError : true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
});
|
||||
</script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user