Identity Manager Provisioning Server uses specific internal formats for password metadata attributes such as eTPasswordUpdateTime and eTPasswordUpdateDate. These attributes are critical for auditing password changes and enforcing password age policies. Understanding how to decode these values allows administrators to verify the exact timing of password updates using standard date and time conventions.
Administrators see numerical strings like 0000121348 (Date) or 0006337200 (Time) in the user store and require a method to translate them into human-readable timestamps.
Identity Manager 14.x & 15
The attributes follow a specific numeric encoding scheme. Use the logic below to decode the values:
Decoding eTPasswordUpdateDate The value (e.g., 0000121348) is an ordinal date format:
Decoding eTPasswordUpdateTime The value (e.g., 0006337200) represents the time elapsed since midnight:
0006337200 / 100 = 63,372 seconds.For more details on ordinal date structures, refer to the Ordinal Date (ISO 8601) documentation.