Exemplo n.º 1
0
 private TimeStampRequest(Asn1InputStream str)
 {
     try
     {
         this.req = TimeStampReq.GetInstance(str.ReadObject());
     }
     catch (InvalidCastException arg)
     {
         throw new IOException("malformed request: " + arg);
     }
     catch (ArgumentException arg2)
     {
         throw new IOException("malformed request: " + arg2);
     }
 }
Exemplo n.º 2
0
 private TimeStampRequest(Asn1InputStream str)
 {
     //IL_001a: Expected O, but got Unknown
     //IL_0025: Unknown result type (might be due to invalid IL or missing references)
     //IL_002c: Expected O, but got Unknown
     //IL_0037: Unknown result type (might be due to invalid IL or missing references)
     try
     {
         req = TimeStampReq.GetInstance(str.ReadObject());
     }
     catch (InvalidCastException val)
     {
         InvalidCastException val2 = val;
         throw new IOException(string.Concat((object)"malformed request: ", (object)val2));
     }
     catch (ArgumentException val3)
     {
         ArgumentException val4 = val3;
         throw new IOException(string.Concat((object)"malformed request: ", (object)val4));
     }
 }
Exemplo n.º 3
0
 public TimeStampRequest(
     TimeStampReq req)
 {
     this.req = req;
 }
Exemplo n.º 4
0
 public TimeStampRequest(TimeStampReq req)
 {
     this.req        = req;
     this.extensions = req.Extensions;
 }