We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 409ae9c commit e128b29Copy full SHA for e128b29
packages/aws-cdk-lib/aws-kms/lib/key.ts
@@ -423,6 +423,27 @@ export enum KeySpec {
423
* Valid usage: ENCRYPT_DECRYPT and SIGN_VERIFY
424
*/
425
SM2 = 'SM2',
426
+
427
+ /**
428
+ * ML-DSA-44 lattice-based digital signature algorithm.
429
+ *
430
+ * Valid usage: SIGN_VERIFY
431
+ */
432
+ ML_DSA_44 = 'ML_DSA_44',
433
434
435
+ * ML-DSA-65 lattice-based digital signature algorithm.
436
437
438
439
+ ML_DSA_65 = 'ML_DSA_65',
440
441
442
+ * ML-DSA-87 lattice-based digital signature algorithm.
443
444
445
446
+ ML_DSA_87 = 'ML_DSA_87',
447
}
448
449
/**
0 commit comments