スマートコントラクト内の暗号化
2 回答
- 投票
-
- 2019-02-01
現在、Michelsonの暗号化/復号化命令はありません.手順の完全なリストは、 http://tezos.gitlab.io/mainnetで確認できます./whitedoc/michelson.html
There are currently no encrypt/decrypt instructions for Michelson. You can view the full list of instructions here: http://tezos.gitlab.io/mainnet/whitedoc/michelson.html
-
-
明らかにすべてのトランザクションとデータは公開されており、スマートコントラクトの暗号化を使用して、ヴィックリーオークション(https://en.wikipedia.org/wiki/Vickrey_auction)のようなものを実装できます-すべての入札者は入札期間中に入札を送信します入札期間が終了した後にのみ一般に知られるようになります.ところで、これは答えではありません.これはコメントであるはずです.obviously all transactions and data is public, encryption in a smart contract could be used to implement something like a vickery auction (https://en.wikipedia.org/wiki/Vickrey_auction) - all bidders send in their bid during bid period, bids only get known to public after bid period is over. btw this is not an answer this should have been a comment.
- 0
- 2019-02-03
- joschua011
-
暗号化の必要なしに、ハッシュコミットメントでそれを行うことができますYou can do that with hash commitments, no need for encryption
- 0
- 2019-02-03
- Arthur B
-
これに関するドキュメントがあまり見つかりません.tezosスマートコントラクト内でデータを暗号化/復号化することは可能ですか?では、スマートコントラクトでAES暗号のようなことをどのように行うのでしょうか(それほど重要ではありませんが)?