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
パスワード/パスフレーズと認証 / Password, Passphrase and Authentication
ks91
PRO
0
20
git と GitHub / git and GitHub
ks91
PRO
0
23
ソフトウェアの開発と保守 / Software Development and Maintenance
ks91
PRO
0
29
インターネットの特徴 / Features of the Internet
ks91
PRO
0
13
インターネットのガバナンス / Governance of the Internet
ks91
PRO
0
15
暗号学的ハッシュ関数 / Cryptographic Hash Function
ks91
PRO
0
21
デジタル署名 / Digital Signature
ks91
PRO
0
14
Web3 のリアリティ / Web3 Reality
ks91
PRO
0
92
クライアント/サーバ / Client and Server
ks91
PRO
0
21
Other Decks in Technology
See All in Technology
「どこにある?」の解決。生成AI(RAG)で効率化するガバメントクラウド運用
toru_kubota
2
340
技術職じゃない私がVibe Codingで感じた、AGIが身近になる未来
blueb
0
120
本部長の代わりに提案書レビュー! KDDI営業が毎日使うAIエージェント「A-BOSS」開発秘話
minorun365
PRO
12
1.6k
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
40
22k
Whats_new_in_Podman_and_CRI-O_2025-06
orimanabu
3
170
SFTPコンテナからファイルをダウンロードする
dip
0
110
AIエージェントの継続的改善のためオブザーバビリティ
pharma_x_tech
5
1k
AIエージェントのフレームワークを見るときの個人的注目ポイント
os1ma
1
520
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.2k
新規プロダクト開発、AIでどう変わった? #デザインエンジニアMeetup
bengo4com
0
430
基調講演: 生成AIを活用したアプリケーションの開発手法とは?
asei
1
120
讓測試不再 BB! 從 BDD 到 CI/CD, 不靠人力也能 MVP
line_developers_tw
PRO
0
120
Featured
See All Featured
How STYLIGHT went responsive
nonsquared
100
5.6k
Music & Morning Musume
bryan
46
6.6k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Thoughts on Productivity
jonyablonski
69
4.7k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Visualization
eitanlees
146
16k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
[RailsConf 2023] Rails as a piece of cake
palkan
55
5.6k
Embracing the Ebb and Flow
colly
86
4.7k
Documentation Writing (for coders)
carmenintech
71
4.9k
Product Roadmaps are Hard
iamctodd
PRO
53
11k
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