Skip to content

Commit 04f47c8

Browse files
Regenerate cloudkms client
1 parent 65550d5 commit 04f47c8

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

src/CloudKMS/Digest.php

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919

2020
class Digest extends \Google\Model
2121
{
22+
/**
23+
* A message digest produced with SHAKE-256, to be used with ML-DSA external-μ
24+
* algorithms only. See "message representative" note in section 6.2,
25+
* algorithm 7 of the FIPS-204 standard: https://doi.org/10.6028/nist.fips.204
26+
*
27+
* @var string
28+
*/
29+
public $externalMu;
2230
/**
2331
* A message digest produced with the SHA-256 algorithm.
2432
*
@@ -38,6 +46,24 @@ class Digest extends \Google\Model
3846
*/
3947
public $sha512;
4048

49+
/**
50+
* A message digest produced with SHAKE-256, to be used with ML-DSA external-μ
51+
* algorithms only. See "message representative" note in section 6.2,
52+
* algorithm 7 of the FIPS-204 standard: https://doi.org/10.6028/nist.fips.204
53+
*
54+
* @param string $externalMu
55+
*/
56+
public function setExternalMu($externalMu)
57+
{
58+
$this->externalMu = $externalMu;
59+
}
60+
/**
61+
* @return string
62+
*/
63+
public function getExternalMu()
64+
{
65+
return $this->externalMu;
66+
}
4167
/**
4268
* A message digest produced with the SHA-256 algorithm.
4369
*

0 commit comments

Comments
 (0)