Lines Matching defs:key
47 "outputs encrypted binary image using an encryption key\n"
112 { "key-alg", required_argument, NULL, 'a' },
113 "Encryption key algorithm: 'gcm' (default)"
116 { "key", required_argument, NULL, 'k' },
117 "Encryption key (for supported algorithm)."
138 char *key = NULL;
170 ERROR("Invalid key algorithm '%s'\n", optarg);
178 key = optarg;
199 if (!key) {
219 ret = encrypt_file(fw_enc_status, key_alg, key, nonce, in_fn, out_fn);