Home | History | Annotate | Download | only in apps

Lines Matching full:salt

112 	unsigned char salt[PKCS5_SALT_LEN];
200 else if (strcmp(*argv,"-salt") == 0)
309 BIO_printf(bio_err,"%-14s salt in hex is the next argument\n","-S");
511 * line, so we get no salt in that case. Is this a bug?
515 /* Salt handling: if encrypting generate a salt and
516 * write to output BIO. If decrypting read salt from
524 if(!set_hex(hsalt,salt,sizeof salt)) {
526 "invalid hex salt value\n");
529 } else if (RAND_pseudo_bytes(salt, sizeof salt) < 0)
536 (char *)salt,
537 sizeof salt) != sizeof salt)) {
543 (unsigned char *)salt,
544 sizeof salt) != sizeof salt) {
552 sptr = salt;
629 printf("salt=");
630 for (i=0; i<(int)sizeof(salt); i++)
631 printf("%02X",salt[i]);