
ecdsa Tag Posts Index
Explore on-chain topics from the Hive blockchain.
- →
Programming - Implementing a Blockchain using Python and Flask [Dev Blog 4]
[Image 1] Introduction Hey it's a me again drifter1! I was quite busy during these days, but here is the fourth dev blog. The new additions have to do with the elliptic
- →
每天进步一点点:(实战)从HIVE/STEEM签名中恢复公钥 / Recover the Public KEY from the signature
之前写过好几篇文章学习私钥、公钥、签名、验证以及从签名中恢复出公钥等等。但是这些都是理论,那么能否应用到实际中来呢?今天就来测试一下从HIVE/STEEM交易签名中恢复出公钥。 (图源 :pixabay)
- →
每天进步一点点:从签名恢复公钥
之前学习了私钥、公钥、签名、验证等相关知识,一个有意思的地方是,公钥是可以从签名当中恢复的,是不是很神奇?今天我们就来看一下如何从签名当中恢复公钥。 (图源 :pixabay) 理论 & 算法 从签名恢复出公钥的说明&算法可以参考《SEC 1: Elliptic Curve Cryptography》一文中的4.1.6
- →
每天进步一点点:学习用公钥验证
昨天啃了ecdsa用私钥签名摘要,对这部分多了一些了解(其中我并不清楚签名过程中到底做了什么,这部分更加深奥,不去啃了),今天继续学习如何用公钥验证。 (图源 :pixabay) 简单的示例 首先最简单的签名与验证代码如下: from ecdsa import SigningKey sk =
- →
每天进步一点点:学习用私钥签名
最近打算学习一下私钥/公钥/签名等相关内容,发现这块东西真的很难啃,也许弄懂之后就是一两句话的事情,但是不懂的时候一头雾水不得入门真的很难受。 (图源 :pixabay) 这两天啃了一点签名相关的内容,以ecdsa为例,简单记录一下。 STEEM/HIVE中的签名流程
- →
Private and public keys explained
In this video we look at how a private key is created, how this is then used to derive a public key. From there we go through a simplified example of a dsa digital
- →
Calculate public key from ECDSA signature plus α
Calculate public key from ECDSA signature plus α My own public key recovery doesn't work, so that using this, and Since v2 has recoverPubKey, I used around here.
- →
Blockchain Foundations Part 7: Encryption and Digital Signature
Encryption and digital signature are important foundations of the blockchain concept. This article explains the asymetric encryption and the digital signature used
- →
Cryptography: ECDSA
Overview "If you can't explain it simply, you don't understand it well enough" - Einstein Elliptic curve cryptography (ECC) and digital signature algorithm
- →
EOS Signature verification with Elixir 😍
EOS Signature Verification and ECDSA Tooling with Elixir Photo by Kelly Sikkema on Unsplash Elixir is one of my favorite programming languages. It's a wonderful
- →
EOS Signature verification with Elixir 😍
EOS Signature Verification and ECDSA Tooling with Elixir Photo by Kelly Sikkema on Unsplash Elixir is one of my favorite programming languages. It's a wonderful
- →
以太坊研究系列【签名和验证】
前面研究GUSD的Custodian合约时,需要进行离线签名,以前都是对交易进行签名,没有单独对数据进行签名,这次一起来看看怎么对数据签名和验证。 geth签名验证 personal.sign > a0 "0x54b865714068f5f03574ace39a1f3279c4e83e2c" >
- →
The hard way - Bitcoin: transactions
The hard way - Bitcoin: Transaction This is Part 2 of 'The hard way - Bitcoin' series and I will start with 'the easy way' section first because even this gets a
- →
橢圓曲線加密演算法 ECDSA 與 RFC6979 改進提案
橢圓曲線加密演算法 ECDSA 與 RFC6979 改進提案 橢圓曲線加密演算法(Elliptic Curve Digital Signature Algorithm,ECDSA)是比特幣、以太坊區塊鏈所使用的非對稱式金鑰加密技術, 可輕易讓貨幣持有者透過私鑰 Private Key(變數:d_A)對資訊進行簽章(Digital
- →
암호화화폐 기술의 핵심은 블록체인보다 ECDSA에 있습니다.
블록체인은 해쉬함수를 계산 경쟁하는 마이닝이란 것을 통해 새로운블록을 만들때 쓰입니다. 이때 만들어진 해쉬코드가 그 블록의 위조방지를 증명합니다. 경쟁을 통해 마이닝하는것을 POW방식이라하고 무작위 피어 노드에 해쉬생성을 맞기거나 피어노드들끼리 새로운블록의 보상을 가져가는방식을 POS 방식이라고
- →
암호화화폐 기술의 핵심은 블록체인보다 ECDSA에 있습니다.
블록체인은 해쉬함수를 계산 경쟁하는 마이닝이란 것을 통해 새로운블록을 만들때 쓰입니다. 이때 만들어진 해쉬코드가 그 블록의 위조방지를 증명합니다. 경쟁을 통해 마이닝하는것을 POW방식이라하고 무작위 피어 노드에 해쉬생성을 맞기거나 피어노드들끼리 새로운블록의 보상을 가져가는방식을 POS 방식이라고
- →
Is Andreas wrong when explaining ECDSA?
In some of Andreas Antonopoulos' talks and lectures, he explains how ECDSA works in Bitcoin. He discusses how addition and multiplication of elliptic curves work.
- →
Getting the ECDSA Z Value from a Bitcoin Single Input Transaction
In this video I demonstrate getting the ECDSA Z value from a bitcoin transaction with only one input. I also show the R and S values. The ECDSA R, S and Z values
- →
用python-ecdsa验证OpenSSL生成的私钥公钥
在之前的文章中,我们学习了用OpenSSL命令行生成Elliptic Curve (EC) algorithms(椭圆曲线算法)私钥、公钥。在文末我们提出计划,将尝试ecdsa来操作OpenSSL生成的公私钥,来验证一下他们生成出来的东西是否本质上是一样的。 这一节我们将着手进行尝试,来解除心里的疑问。 (图源 :pixabay)
- →
ecdsa学习笔记 / SigningKey、VerifyingKey以及公钥
在我们上一篇文章对比一下ecdsa与secp256k1-py从私钥生成公钥中,我们介绍了由私钥通过ecdsa以及secp256k1-py生成公钥的代码。 其中ecdsa生成公钥的代码是我从steem-python库中扒出来的,咳咳,一直挺好用的,我也就懒得看它具体是咋做的啦。 (图源 :pixabay) ecdsa
After reading these ecdsa Tag Posts, you can browse the pages and collections listed below.