Checks if the master password is available in the memory This password will be used to encrypt/decrypt saved server passwords
()
| 649 | @blueprint.route("/master_password", endpoint="check_master_password", |
| 650 | methods=["GET"]) |
| 651 | def check_master_password(): |
| 652 | """ |
| 653 | Checks if the master password is available in the memory |
| 654 | This password will be used to encrypt/decrypt saved server passwords |
| 655 | """ |
| 656 | return make_json_response(data=get_crypt_key()[0]) |
| 657 | |
| 658 | |
| 659 | @blueprint.route("/master_password", endpoint="reset_master_password", |
nothing calls this directly
no test coverage detected