Lines Matching full:salt
44 {"salt", required_argument, NULL, 's'},
57 memset(&salt, 0, sizeof(salt));
64 unsigned char salt[SALT_LEN];
82 " -s <8 byte hex salt> sets the crypto key salt (if encrypted)\n"
103 obb->setSalt(info->salt, SALT_LEN);
142 printf(" Salt: ");
145 const unsigned char* salt = obb->getSalt(&saltLen);
146 if (salt != NULL) {
148 printf("%02x", salt[i]);
220 fprintf(stderr, "ERROR: salt must be 8 bytes in hex (e.g., ABCD65031337D00D)\n\n");
230 fprintf(stderr, "ERROR: salt must be in hex (e.g., ABCD65031337D00D)\n");
234 package_info.salt[i] = b;