
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

/**
 * General constants used by user agent
 */
export default class UserAgentConstants {
  
  /**
   * Define default key tag for signature key
   */
  public static keyTagSigning = 'sigKey';
  
  /**
   * Define default key tag for encyption key
   */
  public static keyTagEncryption = 'encKey';
}
