mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
Replace NSS with Pale Moon's
This commit is contained in:
parent
ff1e5e48bf
commit
8c2e376f94
2870 changed files with 1762232 additions and 1374220 deletions
|
|
@ -303,6 +303,7 @@ PrintKey(PK11SymKey *symKey)
|
|||
printf("<restricted>");
|
||||
}
|
||||
printf("\n");
|
||||
PORT_Free(name);
|
||||
}
|
||||
|
||||
SECStatus
|
||||
|
|
@ -538,39 +539,37 @@ enum {
|
|||
opt_NoiseFile
|
||||
};
|
||||
|
||||
static secuCommandFlag symKeyUtil_commands[] =
|
||||
{
|
||||
{ /* cmd_CreateNewKey */ 'K', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_DeleteKey */ 'D', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ImportKey */ 'I', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ExportKey */ 'E', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_WrapKey */ 'W', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_UnwrapKey */ 'U', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_MoveKey */ 'M', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ListKeys */ 'L', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_PrintHelp */ 'H', PR_FALSE, 0, PR_FALSE },
|
||||
};
|
||||
static secuCommandFlag symKeyUtil_commands[] = {
|
||||
{ /* cmd_CreateNewKey */ 'K', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_DeleteKey */ 'D', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ImportKey */ 'I', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ExportKey */ 'E', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_WrapKey */ 'W', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_UnwrapKey */ 'U', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_MoveKey */ 'M', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_ListKeys */ 'L', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* cmd_PrintHelp */ 'H', PR_FALSE, 0, PR_FALSE },
|
||||
};
|
||||
|
||||
static secuCommandFlag symKeyUtil_options[] =
|
||||
{
|
||||
{ /* opt_CertDir */ 'd', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_PasswordFile */ 'f', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_TargetToken */ 'g', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_TokenName */ 'h', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyID */ 'i', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyIDFile */ 'j', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyType */ 't', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_Nickname */ 'n', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyFile */ 'k', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_Password */ 'p', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_dbPrefix */ 'P', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_RW */ 'r', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* opt_KeySize */ 's', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyName */ 'w', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyID */ 'x', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyIDFile */ 'y', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_NoiseFile */ 'z', PR_TRUE, 0, PR_FALSE },
|
||||
};
|
||||
static secuCommandFlag symKeyUtil_options[] = {
|
||||
{ /* opt_CertDir */ 'd', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_PasswordFile */ 'f', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_TargetToken */ 'g', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_TokenName */ 'h', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyID */ 'i', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyIDFile */ 'j', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyType */ 't', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_Nickname */ 'n', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_KeyFile */ 'k', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_Password */ 'p', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_dbPrefix */ 'P', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_RW */ 'r', PR_FALSE, 0, PR_FALSE },
|
||||
{ /* opt_KeySize */ 's', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyName */ 'w', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyID */ 'x', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_WrapKeyIDFile */ 'y', PR_TRUE, 0, PR_FALSE },
|
||||
{ /* opt_NoiseFile */ 'z', PR_TRUE, 0, PR_FALSE },
|
||||
};
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue