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
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Kenji Saito
PRO
February 12, 2020
Technology
260
2
Share
セキュリティトークンの技術 / Security Token Technology
2020年2月12日、一般社団法人日本セキュリティトークン協会のセミナーにて使用したスライドです。
Kenji Saito
PRO
February 12, 2020
More Decks by Kenji Saito
See All by Kenji Saito
本授業におけるエージェント・ハブの使い方 / How to Use the Agent Hub in This Course
ks91
PRO
0
17
LLM とプロンプトエンジニアリング/チューターを定義する / LLMs and Prompt Engineering, and Defining Tutors
ks91
PRO
0
50
Running Coding Agents (Windows WSL Edition)
ks91
PRO
0
10
Running Coding Agents (macOS Lima Edition)
ks91
PRO
0
6
Running Coding Agents (macOS Native Edition)
ks91
PRO
0
11
AY 2026 Guide to Academic Writing Using Generative AI - Workshop
ks91
PRO
0
17
コーディング・エージェントを動かす (Windows WSL 編) / Running Coding Agent (Windows WSL Edition)
ks91
PRO
0
16
コーディング・エージェントを動かす (macOS Lima 編) / Running Coding Agent (macOS Lima Edition)
ks91
PRO
0
13
コーディング・エージェントを動かす (macOS ネイティブ編) / Running Coding Agent (macOS Native Edition)
ks91
PRO
0
14
Other Decks in Technology
See All in Technology
解剖"React Native"
hacusk
0
110
Claude Teamプランの選定と、できること/できないこと
rfdnxbro
1
740
JAWS DAYS 2026でAIの「もやっと」感が解消された話
smt7174
1
130
ふりかえりを 「あそび」にしたら、 学習が勝手に進んだ / Playful Retros Drive Learning
katoaz
0
110
20260326_AIDD事例紹介_ULSC.pdf
findy_eventslides
0
540
GitHub Copilotを極める会 - 開発者のための活用術
findy_eventslides
5
2.3k
【PHPカンファレンス小田原2026】Webアプリケーションエンジニアにも知ってほしい オブザーバビリティ の本質
fendo181
0
200
OCI技術資料 : 証明書サービス概要
ocise
1
7.2k
AIにより大幅に強化された AWS Transform Customを触ってみる
0air
0
310
仕様通り動くの先へ。Claude Codeで「使える」を検証する
gotalab555
8
2.4k
マルチモーダル非構造データとの闘い
shibuiwilliam
1
180
Oracle AI Database@Azure:サービス概要のご紹介
oracle4engineer
PRO
6
1.4k
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
77
5.3k
Leo the Paperboy
mayatellez
6
1.6k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
880
Automating Front-end Workflow
addyosmani
1370
200k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
27
3.4k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
1
170
Git: the NoSQL Database
bkeepers
PRO
432
67k
The World Runs on Bad Software
bkeepers
PRO
72
12k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
23k
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
780
Navigating Team Friction
lara
192
16k
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
93
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