Laravel#39;s application key - what it is and how does it work?(Laravel 的应用程序密钥 - 它是什么以及它是如何工作的?)
问题描述
据我所知,Laravel 中的应用密钥为会话和敏感数据提供了保护,但我想了解的是它究竟是如何工作的?它的目的是什么?我找不到任何有关它的信息.
From what I know, the app key in Laravel provides protection for session and sensitive data, but what I want to understand is how exactly does it work? What is the purpose of it? I couldn't find any information about it.
推荐答案
APP_KEY 用于加密,而不是散列.您在应用程序中加密的每个数据都在幕后使用 APP_KEY.请记住,加密数据可以解密,但散列数据无法解密.
APP_KEY is used for encryption and not hashing. Every Data you encrypt in your application is using APP_KEY behind the scene. Do remember that encrypted data can be decrypted but hashed data cannot be decrypted.
APP_KEY 的一个常见误解是它与密码哈希有关,但事实并非如此.这是证据.
A common misconception of APP_KEY is that it is related to Password hashing, the truth is it's not. and here is the proof.
泰勒的推文
在上面的推文中可以看到APP_KEY与HASHED数据无关
You can see in the above tweet that APP_KEY has nothing to do with HASHED data
这篇关于Laravel 的应用程序密钥 - 它是什么以及它是如何工作的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 的应用程序密钥 - 它是什么以及它是如何工作的?
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01