password_reuse_check_history
This page is part of MariaDB's Documentation.
The parent of this page is: System Tables for MariaDB Enterprise Server
Topics on this page:
Overview
In 10.6 ES, 10.5 ES, 10.4 ES:
Hashed password history data for the password_
reuse_ .check plugin
DETAILS
This system table is created and updated by the password_
Each row in the table stores a cryptographic hash and a date. The hashed data includes information about the affected user and the password that is being set. Because it is a one-way cryptographic hash, the stored data cannot be used to extract the prior password values nor which user the historical record is associated with.
The amount of time that the historical records are kept is controlled by the password_0
to indicate that the records do not expire. The default is for the data to never expire.
SCHEMA
CREATE TABLE `password_reuse_check_history` (
`hash` binary(64) NOT NULL,
`time` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`hash`),
KEY `tm` (`time`)
)