---
title: "Feature: #106752 - Add password hashing option to SaveToDatabase finisher"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-106752-1752515067"
source: "Changelog/14.0/Feature-106752-AddPasswordHashingOptionToSaveToDatabaseFinisher.rst"
typo3-version: "14.0"
typo3-major: 14
type: "feature"
issue: 106752
forge: "https://forge.typo3.org/issues/106752"
tags: ["ext:form"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #106752 - Add password hashing option to SaveToDatabase finisher {#feature-106752-1752515067}

See [forge#106752](https://forge.typo3.org/issues/106752)

## Description {#description}

A new option `hashed` has been added to the
`SaveToDatabaseFinisher` of the system
extension [`typo3/cms-form`](https://packagist.org/packages/typo3/cms-form).

When saving form data to a database table, setting `hashed: true` for a
field causes the value to be hashed using the default frontend password hashing
mechanism before it is written to the database.

This improves security by preventing passwords from being stored in plain text.

Example usage in a form definition:

**EXT:my_extension/Configuration/Form/ExampleForm.form.yaml**

```yaml
- identifier: SaveToDatabase
  options:
    table: 'fe_users'
    elements:
      password:
        mapOnDatabaseColumn: 'password'
        hashed: true
```

## Impact {#impact}

Integrators can now ensure secure password storage when saving form data with
the `SaveToDatabaseFinisher`, without
implementing custom logic.
