You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Research and document in Architectural Decision Records (ADRs) ways of conserving UUIDs (root UUID and elements' UUIDs) unless there is a language change in the data.
The text was updated successfully, but these errors were encountered:
A potential solution: https://docs.oracle.com/javase/8/docs/api/java/util/UUID.html
nameUUIDFromBytes(byte[] name) - retrieve a type 3 (name based) UUID based on the specified byte array
Currently, the code uses randomUUID() - retrieve a type 4 (pseudo randomly generated) UUID
A potential solution: https://docs.oracle.com/javase/8/docs/api/java/util/UUID.html nameUUIDFromBytes(byte[] name) - retrieve a type 3 (name based) UUID based on the specified byte array Currently, the code uses randomUUID() - retrieve a type 4 (pseudo randomly generated) UUID
OSCAL needs UUID v4. The issue raised was the information update. For example, if the CSF is regenerated for some updates, the ONLY UUIDs that should change are the ones where data was changed. The cyberESY tool was always regenerating all UUIDs, where ever they are used. This mechanism is used to trigger re-assessments, so, when abused, will crate new work for the users.
Research and document in Architectural Decision Records (ADRs) ways of conserving UUIDs (root UUID and elements' UUIDs) unless there is a language change in the data.
The text was updated successfully, but these errors were encountered: