Skip to content

Commit

Permalink
contracts/generateSigningKeypair: Doc explicit sk size
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Oct 14, 2024
1 parent c28da8f commit 74e7c76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/contracts/Sapphire.sol
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ library Sapphire {
* @param alg The signing alg for which to generate a keypair.
* @param seed The seed to use for generating the key pair. You can use the
* `randomBytes` method if you don't already have a seed.
* @return publicKey The public half of the keypair.
* @return secretKey The secret half of the keypair.
* @return publicKey 32-byte or 33-byte (see above) public key.
* @return secretKey 32-byte secret key.
*/
function generateSigningKeyPair(SigningAlg alg, bytes memory seed)
internal
Expand Down

0 comments on commit 74e7c76

Please sign in to comment.