Generate private key from Python client

This commit is contained in:
2024-06-30 09:46:15 +02:00
parent 4c4d1e13cb
commit 426c25fce5
4 changed files with 16 additions and 5 deletions

View File

@@ -10,4 +10,5 @@ parser.add_argument("--storage", help="Change storage location", default="storag
args = parser.parse_args()
args.secure_origin_path = os.path.join(args.storage, "SECURE_ORIGIN")
args.root_ca_path = os.path.join(args.storage, "root_ca.pem")
args.root_ca_path = os.path.join(args.storage, "root_ca.pem")
args.dev_priv_key = os.path.join(args.storage, "dev.key")