0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Decode Public Keys

Last updated at Posted at 2024-12-15

Previous << Generate Keys
Next >> Derive Public Key

Flow CLIは、暗号化(符号化, encoded)された公開アカウントキーを復号化するコマンドを提供しています。

flow keys decode <rlp|pem> <encoded public key>

Example Usage

Decode RLP Encoded Public Key

> flow keys decode rlp f847b84084d716c14b051ad6b001624f738f5d302636e6b07cc75e4530af7776a4368a2b586dbefc0564ee28384c2696f178cbed52e62811bcc9ecb59568c996d342db2402038203e8

Public Key 		 84d716c1...bcc9ecb59568c996d342db24 
Signature algorithm 	 ECDSA_P256
Hash algorithm 		 SHA3_256
Weight 			 1000
Revoked 		 false

Decode PEM Encoded Public Key From File

> flow keys decode pem --from-file key.pem

Public Key 		 d479b3c...c4615360039a6660a366a95f 
Signature algorithm 	 ECDSA_P256
Hash algorithm 		 UNKNOWN
Revoked 		 false

Arguments

Encoding

  • Valid inputs: rlp, pem

最初の引数は、提供された公開鍵の有効なエンコードを指定します。

Optional: Public Key

  • Name: encoded public key
  • Valid inputs: valid encoded key content

オプションの2番目の引数は、エンコードされた公開鍵の内容を提供します。この引数が省略された場合は、--from-fileを代わりに使用する必要があります。

Flags

From File

  • Flag: --from-file
  • Valid inputs: valid filepath

エンコードされた公開鍵のファイルを指定します。

Filter

  • Flag: --filter
  • Short Flag: -x
  • Valid inputs: a case-sensitive name of the result property.

結果から、唯一の値として取得したいプロパティの名前を指定します。

Output

  • Flag: --output
  • Short Flag: -o
  • Valid inputs: json, inline

コマンド結果のフォーマットを指定します。

Save

  • Flag: --save
  • Short Flag: -s
  • Valid inputs: a path in the current filesystem.

結果を保存したいファイル名を指定してください。

Version Check

  • Flag: --skip-version-check
  • Default: false

低速なネットワーク接続における処理を高速化するために、起動時のバージョンチェックをスキップします。

Last updated on Dec 6, 2024 by Alex Ni

翻訳元


Previous << Generate Keys

Flow BlockchainのCadence version1.0ドキュメント (Decode Public Keys)

Next >> Derive Public Key

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?