[BACK]Return to pkcs12.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/pkcs12.c between version 1.15 and 1.16

version 1.15, 2021/10/23 14:48:33 version 1.16, 2021/10/31 16:47:27
Line 905 
Line 905 
   
         case NID_pkcs8ShroudedKeyBag:          case NID_pkcs8ShroudedKeyBag:
                 if (options & INFO) {                  if (options & INFO) {
                           const X509_ALGOR *tp8alg;
   
                         BIO_printf(bio_err, "Shrouded Keybag: ");                          BIO_printf(bio_err, "Shrouded Keybag: ");
                         alg_print(bio_err, bag->value.shkeybag->algor);                          X509_SIG_get0(bag->value.shkeybag, &tp8alg, NULL);
                           alg_print(bio_err, tp8alg);
                 }                  }
                 if (options & NOKEYS)                  if (options & NOKEYS)
                         return 1;                          return 1;

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16