mirror of https://github.com/rails/rails
Fix link in ActiveRecord Encryption guides [ci skip]
This commit is contained in:
parent
01fd264d00
commit
8def855876
|
@ -23,7 +23,7 @@ Active Record Encryption is meant to protect sensitive information in your appli
|
|||
|
||||
As an immediate practical benefit, encrypting sensitive attributes adds an additional security layer. For example, if an attacker gained access to your database, a snapshot of it, or your application logs, they wouldn't be able to make sense of the encrypted information. And even without thinking about malicious actors, checking application logs for legit reasons shouldn't expose personal information from customers either.
|
||||
|
||||
But more importantly, by using Active Record Encryption, you define what constitutes sensitive information in your application at the code level. This enables controlling how this information is accessed and building services around it. As examples, think about auditable Rails consoles that protect encrypted data or check the built-in system to [filter controller params automatically](./#filtering-params-named-as-encrypted-columns).
|
||||
But more importantly, by using Active Record Encryption, you define what constitutes sensitive information in your application at the code level. This enables controlling how this information is accessed and building services around it. As examples, think about auditable Rails consoles that protect encrypted data or check the built-in system to [filter controller params automatically](#filtering-params-named-as-encrypted-columns).
|
||||
|
||||
## Basic Usage
|
||||
|
||||
|
|
Loading…
Reference in New Issue