GroupOSCOREInputMaterialObjectParameters.java

  1. /*******************************************************************************
  2.  * Copyright (c) 2019, RISE AB
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * 1. Redistributions of source code must retain the above copyright notice,
  10.  *    this list of conditions and the following disclaimer.
  11.  *
  12.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  13.  *    this list of conditions and the following disclaimer in the documentation
  14.  *    and/or other materials provided with the distribution.
  15.  *
  16.  * 3. Neither the name of the copyright holder nor the names of its
  17.  *    contributors may be used to endorse or promote products derived from
  18.  *    this software without specific prior written permission.
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24.  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31.  *******************************************************************************/
  32. package se.sics.ace.oscore;

  33. /**
  34.  * Constants for use in the OSCORE Input Material Object
  35.  *  
  36.  * @author Marco Tiloca
  37.  *
  38.  */
  39.  
  40.  public class GroupOSCOREInputMaterialObjectParameters extends OSCOREInputMaterialObjectParameters {

  41.         /**
  42.          * 'group_SenderID' - Group OSCORE Countersignature Algorithm value
  43.          */
  44.         // Assume that "group_SenderID" is registered with label 7 in the
  45.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  46.         public static final short group_SenderID = 7; // Major type 2 (byte string)
  47.      
  48.         /**
  49.          *  'cs_key_enc' - Group OSCORE Public Key Encoding Value
  50.          */
  51.         // Assume that "cred_fmt" is registered with label 8 in the
  52.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  53.         public static final short cred_fmt = 8; // Major type 0 (unsigned integer) or 1 (negative integer)
  54.        
  55.         /**
  56.          *  'sign_enc_alg' - Group OSCORE Signature Encryption Algorithm value
  57.          */
  58.         public static final short sign_enc_alg = 9; // Major type 0 (unsigned integer) or 1 (negative integer) or 3 (text string)
  59.        
  60.         /**
  61.          * 'sign_alg' - Group OSCORE Signature Algorithm value
  62.          */
  63.         // Assume that "sign_alg" is registered with label 10 in the
  64.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  65.         public static final short sign_alg = 10; // Major type 0 (unsigned integer) or 1 (negative integer) or 3 (text string)
  66.        
  67.         /**
  68.          *  'sign_params' - Group OSCORE Signature Algorithm Parameters value
  69.          */
  70.         // Assume that "sign_params" is registered with label 11 in the
  71.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  72.         public static final short sign_params = 11; // Major type 4 (array)
  73.        
  74.         /**
  75.          * 'ecdh_alg' - Group OSCORE Pairwise Key Agreement Algorithm value
  76.          */
  77.         // Assume that "ecdh_alg" is registered with label 12 in the
  78.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  79.         public static final short ecdh_alg = 12; // Major type 0 (unsigned integer) or 1 (negative integer) or 3 (text string)
  80.        
  81.         /**
  82.          *  'ecdh_params' - Group OSCORE Pairwise Key Agreement Algorithm Parameters value
  83.          */
  84.         // Assume that "ecdh_params" is registered with label 13 in the
  85.         // "OSCORE Security Context Parameters" Registry defined in RFC9203
  86.         public static final short ecdh_params = 13; // Major type 4 (array)
  87.        
  88.         /**
  89.          * The string values for the OSCORE Security Context Object parameter abbreviations (use for debugging)
  90.          */
  91.         public static final String[] CONTEXT_PARAMETER = {"id", "version", "ms", "hkdf", "alg", "salt", "contextId",
  92.                 "group_senderId, cred_fmt", "sign_enc_alg", "sign_alg", "sign_params", "ecdh_alg", "ecdh_params"};
  93.      
  94.  }