예제 #1
0
 /// <summary>
 /// Construct a signed profile from the specified profile.
 /// </summary>
 /// <param name="Data">The profile to sign.</param>
 public SignedMasterProfile(MasterProfile Data) {
     Identifier = Data.Identifier;  // pass through
     SignedData = new JoseWebSignature(Data.GetBytes(), Data.MasterSignatureKey.KeyPair);
     _Signed = Data;
     }