public void SetUnhashedSubpackets(IPgpSignatureSubpacketVector unhashedPackets)
 {
     _unhashed = unhashedPackets == null
         ? _emptySignatureSubpackets
         : unhashedPackets.ToSubpacketArray();
 }
 public void SetUnhashedSubpackets(IPgpSignatureSubpacketVector unhashedPackets)
 {
     _unhashed = unhashedPackets == null
         ? _emptySignatureSubpackets
         : unhashedPackets.ToSubpacketArray();
 }
 public void SetHashedSubpackets(IPgpSignatureSubpacketVector hashedPackets)
 {
     _hashed = hashedPackets == null
         ? _emptySignatureSubpackets
         : hashedPackets.ToSubpacketArray();
 }
 public void SetHashedSubpackets(IPgpSignatureSubpacketVector hashedPackets)
 {
     _hashed = hashedPackets == null
         ? _emptySignatureSubpackets
         : hashedPackets.ToSubpacketArray();
 }