Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
セキュリティトークンの技術 / Security Token Technology
Search
Kenji Saito
PRO
February 12, 2020
Technology
2
250
セキュリティトークンの技術 / Security Token Technology
2020年2月12日、一般社団法人日本セキュリティトークン協会のセミナーにて使用したスライドです。
Kenji Saito
PRO
February 12, 2020
Tweet
Share
More Decks by Kenji Saito
See All by Kenji Saito
スマートコントラクトと分散ファイナンス / Smart Contracts and Decentralized Finance
ks91
PRO
0
50
シン・ブロックチェーン / Truth of Blockchain
ks91
PRO
0
77
パスワード/パスフレーズと認証 / Password, Passphrase and Authentication
ks91
PRO
0
32
git と GitHub / git and GitHub
ks91
PRO
0
32
ソフトウェアの開発と保守 / Software Development and Maintenance
ks91
PRO
0
46
インターネットの特徴 / Features of the Internet
ks91
PRO
0
31
インターネットのガバナンス / Governance of the Internet
ks91
PRO
0
29
暗号学的ハッシュ関数 / Cryptographic Hash Function
ks91
PRO
0
35
デジタル署名 / Digital Signature
ks91
PRO
0
30
Other Decks in Technology
See All in Technology
VISITS_AIIoTビジネス共創ラボ登壇資料.pdf
iotcomjpadmin
0
160
急成長を支える基盤作り〜地道な改善からコツコツと〜 #cre_meetup
stefafafan
0
120
250627 関西Ruby会議08 前夜祭 RejectKaigi「DJ on Ruby Ver.0.1」
msykd
PRO
2
260
変化する開発、進化する体系時代に適応するソフトウェアエンジニアの知識と考え方(JaSST'25 Kansai)
mizunori
1
210
Node-REDのFunctionノードでMCPサーバーの実装を試してみた / Node-RED × MCP 勉強会 vol.1
you
PRO
0
110
標準技術と独自システムで作る「つらくない」SaaS アカウント管理 / Effortless SaaS Account Management with Standard Technologies & Custom Systems
yuyatakeyama
3
1.2k
地図も、未来も、オープンに。 〜OSGeo.JPとFOSS4Gのご紹介〜
wata909
0
110
Navigation3でViewModelにデータを渡す方法
mikanichinose
0
220
監視のこれまでとこれから/sakura monitoring seminar 2025
fujiwara3
11
3.9k
Postman AI エージェントビルダー最新情報
nagix
0
110
Model Mondays S2E02: Model Context Protocol
nitya
0
220
Javaで作る RAGを活用した Q&Aアプリケーション
recruitengineers
PRO
1
110
Featured
See All Featured
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.3k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
How STYLIGHT went responsive
nonsquared
100
5.6k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.9k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
How to Ace a Technical Interview
jacobian
277
23k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
Designing Experiences People Love
moore
142
24k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Faster Mobile Websites
deanohume
307
31k
Site-Speed That Sticks
csswizardry
10
660
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Transcript
JSTA /
[email protected]
— 2020-02-12 – p.1/24
https://speakerdeck.com/ks91 — 2020-02-12 – p.2/24
( ) SFC CSO (Chief Science Officer) 1993 ( )
2006 ( ) SFC 19 P2P (Peer-to-Peer) ( 9 ) 2011 2018 2019 ∼ 2019 ∼ REINVENT THE WORLD → ( ) — 2020-02-12 – p.3/24
Ethereum ERC20 — 2020-02-12 – p.4/24
Ethereum Ethereum ⇒ — 2020-02-12 – p.5/24
Ethereum Vitalik Buterin, “Ethereum White Paper: A NEXT GENERATION SMART
CONTRACT & DECENTRALIZED APPLICATION PLATFORM” (Dec. 2013∼) 15 (= ) = = ( ) CPU ⇒ DApps DApps = / — 2020-02-12 – p.6/24
= ( ) run = → — 2020-02-12 – p.7/24
Ether Ethereum EOA : Externally-Owned Account ( ) ( )
Ether ( ) EVM EVM = Ethereum = — 2020-02-12 – p.8/24
EVM : Ethereum Virtual Machine Gas ( EVM = )
→ — 2020-02-12 – p.9/24
ERC20 — 2020-02-12 – p.10/24
( , ) (constructor) (deploy) = ( ) ( )
ETH — 2020-02-12 – p.11/24
ERC20 ERC (Ethereum Request for Comment) 20 https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md contract ERC20
{ function totalSupply() constant returns (uint totalSupply); function balanceOf(address _owner) constant returns (uint balance); function transfer(address _to, uint _value) returns (bool success); function transferFrom(address _from, address _to, uint _value) returns (bool success); function approve(address _spender, uint _value) returns (bool success); function allowance(address _owner, address _spender) constant returns (uint remaining); event Transfer(address indexed _from, address indexed _to, uint _value); event Approval(address indexed _owner, address indexed _spender, uint _value); } name/ , symbol/ , decimals/ approve allowance ERC223 ( ), ERC721 (Non-Fungible) — 2020-02-12 – p.12/24
ERC20 ERC20 ( ) ⇒ ERC20 ( ERC20 ) ERC20
⇒ — 2020-02-12 – p.13/24
(fungible) ERC20 → ERC223 (draft) or ERC777 (non-fungible) ERC721 (
) (partially fungible) ERC1410 (draft) (ERC1400 ) — 2020-02-12 – p.14/24
ERC ERC1400 (draft) : Security Token Standard ERC20 ERC777 ERC1594
(draft) : Core Security Token Standard ( ) (KYC ) ERC1643 (draft) : Documnet Management Standard ERC1644 (draft) : Controller Token Standard ( ) ( ) ERC2258 (draft) : Custodial Ownership Standard ( ) ( ) — 2020-02-12 – p.15/24
— 2020-02-12 – p.16/24
ग़యΟΩϖσΟΞʮθϩࣝূ໌ʯ : ↑ 20 ( ) — 2020-02-12 – p.17/24
: ( 101 ) × ( ) — 2020-02-12 –
p.18/24
ZoE (Zcash on Ethereum) Ethereum UTXO ( ) ( )
Ethereum Bitcoin Zcash zk-SNARKs Ethereum zk-SNARKs zk-STARKs 2017 Byzantium Gas — 2020-02-12 – p.19/24
zk-SNARKs Zero Knowledge - Succinct ( ) Non-interactive ARgument of
Knowledge 3 G Generator, C circuit, λ : G(λ, C) → (pk, vk) C ; pk , vk P Prover, x C , w : P(pk, x, w) → π w witness, π proof V Verifier : V (vk, x, π) = true ⇒ ∃w : w C(x, w) V Ethereum G P — 2020-02-12 – p.20/24
C H H( ) C s (x, w) : x
[H( ),H( ),H( )], w [ , ] ≥ w H x H( ) H( ) H( - ) H( ) C r (x, w) : x [H( ),H( ),H( )], w [ , ] w H x H( ) H( ) H( + ) H( ) — 2020-02-12 – p.21/24
( ) , H( ), H( s ), H( r
) P π s , π r V (vk s , [H( s ), H( s ), H( )], π s ) V (vk r , [H( r ), H( r ), H( )], π r ) H( ) H( ) — 2020-02-12 – p.22/24
: ERC1400 — 2020-02-12 – p.23/24
— 2020-02-12 – p.24/24