|
802 | 802 | "security:authorization:revokesAccess", |
803 | 803 | "security:authorization:revokesImpersonation", |
804 | 804 | "security:cryptography", |
| 805 | + "security:cryptography:authenticates", |
805 | 806 | "security:cryptography:checksRevocation", |
806 | 807 | "security:cryptography:decryptsData", |
| 808 | + "security:cryptography:decryptsDataAtRest", |
| 809 | + "security:cryptography:decryptsDataInTransit", |
| 810 | + "security:cryptography:decryptsDisk", |
| 811 | + "security:cryptography:decryptsSecret", |
807 | 812 | "security:cryptography:destroysKey", |
808 | 813 | "security:cryptography:encryptsData", |
| 814 | + "security:cryptography:encryptsDataAtRest", |
| 815 | + "security:cryptography:encryptsDataInTransit", |
| 816 | + "security:cryptography:encryptsDisk", |
| 817 | + "security:cryptography:encryptsSecret", |
| 818 | + "security:cryptography:ensuresAccountability", |
| 819 | + "security:cryptography:ensuresConfidentiality", |
| 820 | + "security:cryptography:ensuresIntegrity", |
| 821 | + "security:cryptography:ensuresNonRepudiation", |
809 | 822 | "security:cryptography:exchangesKey", |
810 | 823 | "security:cryptography:generatesKey", |
811 | 824 | "security:cryptography:generatesRandomValue", |
812 | 825 | "security:cryptography:hashesData", |
| 826 | + "security:cryptography:hashesPassword", |
| 827 | + "security:cryptography:identifies", |
813 | 828 | "security:cryptography:issuesCertificate", |
| 829 | + "security:cryptography:preservesPrivacy", |
| 830 | + "security:cryptography:presentsClientCertificate", |
| 831 | + "security:cryptography:presentsServerCertificate", |
814 | 832 | "security:cryptography:retrievesKey", |
815 | 833 | "security:cryptography:revokesCertificate", |
816 | 834 | "security:cryptography:rotatesKey", |
| 835 | + "security:cryptography:signsCode", |
817 | 836 | "security:cryptography:signsData", |
| 837 | + "security:cryptography:signsDocument", |
818 | 838 | "security:cryptography:storesKey", |
| 839 | + "security:cryptography:usesIdentity", |
819 | 840 | "security:cryptography:validatesCertificate", |
| 841 | + "security:cryptography:validatesToken", |
| 842 | + "security:cryptography:verifiesCodeSignature", |
| 843 | + "security:cryptography:verifiesDataSignature", |
| 844 | + "security:cryptography:verifiesDocumentSignature", |
820 | 845 | "security:cryptography:verifiesHash", |
821 | 846 | "security:cryptography:verifiesSignature", |
| 847 | + "security:cryptography:wrapsKey", |
822 | 848 | "security:errorHandling", |
823 | 849 | "security:errorHandling:catchesException", |
824 | 850 | "security:errorHandling:disclosesErrorDetails", |
|
1518 | 1544 | "security:authorization:revokesAccess": "The entity withdraws previously granted permissions.", |
1519 | 1545 | "security:authorization:revokesImpersonation": "The entity terminates another's permission to act on its behalf.", |
1520 | 1546 | "security:cryptography": "Behaviours that employ cryptographic operations to protect data confidentiality and integrity.", |
| 1547 | + "security:cryptography:authenticates": "The entity verifies the identity of a user, process, or device.", |
1521 | 1548 | "security:cryptography:checksRevocation": "The entity queries certificate revocation status.", |
1522 | 1549 | "security:cryptography:decryptsData": "The entity restores encrypted data to readable form.", |
| 1550 | + "security:cryptography:decryptsDataAtRest": "The entity restores stored encrypted data to readable form.", |
| 1551 | + "security:cryptography:decryptsDataInTransit": "The entity restores data received over a network to readable form.", |
| 1552 | + "security:cryptography:decryptsDisk": "The entity unlocks and decrypts contents of an encrypted disk.", |
| 1553 | + "security:cryptography:decryptsSecret": "The entity retrieves and decrypts a secured credential or metadata.", |
1523 | 1554 | "security:cryptography:destroysKey": "The entity securely erases a key.", |
1524 | 1555 | "security:cryptography:encryptsData": "The entity transforms data to prevent unauthorised reading.", |
| 1556 | + "security:cryptography:encryptsDataAtRest": "The entity protects stored data by converting it to unreadable form.", |
| 1557 | + "security:cryptography:encryptsDataInTransit": "The entity protects data moving across a network.", |
| 1558 | + "security:cryptography:encryptsDisk": "The entity applies full-disk encryption to protect all data on a drive.", |
| 1559 | + "security:cryptography:encryptsSecret": "The entity secures sensitive credentials or metadata.", |
| 1560 | + "security:cryptography:ensuresAccountability": "The entity ensures actions can be traced to a specific individual or process.", |
| 1561 | + "security:cryptography:ensuresConfidentiality": "The entity protects sensitive information from unauthorised access.", |
| 1562 | + "security:cryptography:ensuresIntegrity": "The entity guarantees that data has not been altered or tampered with.", |
| 1563 | + "security:cryptography:ensuresNonRepudiation": "The entity provides proof of origin and integrity to prevent denial.", |
1525 | 1564 | "security:cryptography:exchangesKey": "The entity shares a key with another party.", |
1526 | 1565 | "security:cryptography:generatesKey": "The entity creates a cryptographic key.", |
1527 | 1566 | "security:cryptography:generatesRandomValue": "The entity produces a cryptographically secure random value.", |
1528 | 1567 | "security:cryptography:hashesData": "The entity generates a cryptographic hash.", |
| 1568 | + "security:cryptography:hashesPassword": "The entity applies a cryptographic hash function to a password.", |
| 1569 | + "security:cryptography:identifies": "The entity establishes a unique identity for an actor within the system.", |
1529 | 1570 | "security:cryptography:issuesCertificate": "The entity creates and signs a digital certificate.", |
| 1571 | + "security:cryptography:preservesPrivacy": "The entity protects personally identifiable information and user data.", |
| 1572 | + "security:cryptography:presentsClientCertificate": "The entity provides a client certificate for authentication.", |
| 1573 | + "security:cryptography:presentsServerCertificate": "The entity provides a server certificate for authentication.", |
1530 | 1574 | "security:cryptography:retrievesKey": "The entity obtains a stored key.", |
1531 | 1575 | "security:cryptography:revokesCertificate": "The entity invalidates a certificate.", |
1532 | 1576 | "security:cryptography:rotatesKey": "The entity replaces a key with a new one.", |
| 1577 | + "security:cryptography:signsCode": "The entity applies a digital signature to executable code.", |
1533 | 1578 | "security:cryptography:signsData": "The entity creates a digital signature.", |
| 1579 | + "security:cryptography:signsDocument": "The entity applies a digital signature to a document.", |
1534 | 1580 | "security:cryptography:storesKey": "The entity saves a key securely.", |
| 1581 | + "security:cryptography:usesIdentity": "The entity utilises established identity credentials for operations.", |
1535 | 1582 | "security:cryptography:validatesCertificate": "The entity verifies certificate authenticity.", |
| 1583 | + "security:cryptography:validatesToken": "The entity verifies the authenticity and expiration of a security token.", |
| 1584 | + "security:cryptography:verifiesCodeSignature": "The entity validates a digital signature on executable code.", |
| 1585 | + "security:cryptography:verifiesDataSignature": "The entity validates a digital signature on data.", |
| 1586 | + "security:cryptography:verifiesDocumentSignature": "The entity validates a digital signature on a document.", |
1536 | 1587 | "security:cryptography:verifiesHash": "The entity validates data against a hash.", |
1537 | 1588 | "security:cryptography:verifiesSignature": "The entity validates a digital signature.", |
| 1589 | + "security:cryptography:wrapsKey": "The entity encrypts a key for secure storage or transport.", |
1538 | 1590 | "security:errorHandling": "Behaviours that manage error conditions to prevent information disclosure.", |
1539 | 1591 | "security:errorHandling:catchesException": "The entity intercepts an error condition.", |
1540 | 1592 | "security:errorHandling:disclosesErrorDetails": "The entity reveals internal information in error messages.", |
|
0 commit comments