File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919
2020class 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 *
You can’t perform that action at this time.
0 commit comments