Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the UrlSigningKey class.
 /// </summary>
 /// <param name="keyId">Defines the customer defined key Id. This id
 /// will exist in the incoming request to indicate the key used to form
 /// the hash.</param>
 /// <param name="keySourceParameters">Defines the parameters for using
 /// customer key vault for Url Signing Key.</param>
 public UrlSigningKey(string keyId, KeyVaultSigningKeyParameters keySourceParameters)
 {
     KeyId = keyId;
     KeySourceParameters = keySourceParameters;
     CustomInit();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the UrlSigningKey class.
 /// </summary>
 public UrlSigningKey()
 {
     KeySourceParameters = new KeyVaultSigningKeyParameters();
     CustomInit();
 }