Joy Wang
Joy Wang
can you attach the examples here? i remembered i had issues to input a raw bytearray as part of the clap cli params. just want to make sure the output...
https://github.com/MystenLabs/sui/pull/11699 this is landed to show the mnemonics when using keytool generate on new generated private keys. mnemonics cannot be derived for exisiting private keys
landing to reduce my PR complexity
> Two questions considering the design: > > 1. Where does `the max number of public keys (10)` comes from? Will this effect specific use cases where more than 10...
https://github.com/MystenLabs/sui/issues/7187 linked design doc in this issue
> We should also consider supporting secp256r1 signature verification in the move library. https://github.com/MystenLabs/sui/pull/7773
@kchalkias @benr-ml addressed most of the comments PTAL
do we have any length constraint on the privkey field here``` export type ExportedKeypair = { schema: SignatureScheme; privateKey: string; }; ```?
> We should update [this](https://github.com/MystenLabs/sui/blob/main/sdk/typescript/src/cryptography/ed25519-keypair.ts#L153) to export only the 32 bytes of the private key otherwise it breaks the wallet. Alternatively we can ensure that the private key (`secretKey`) we...
i realized that `fromSeed` and `fromPrivateKey` is not the same (although they return the same result some times). privkey is the result of hashing and bit-twiddling of the seed. in...