Commit 2f51627e authored by jethanandani's avatar jethanandani
Browse files

Merge branch 'bug#92' into 'master'

Fix for bug#92

See merge request !25
parents 5a370aa1 e9bb6972
Loading
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
@@ -177,6 +177,46 @@ submodule etsi-nfv-common {
    base cp-role;
  }

  identity checksum-algorithm {
    description
      "Identifies the algorithms supported for the purpose of
       calculating the checksum.";
    reference
      "GS NFV IFA011: Section 7.1.6.10 Checksum information element.";
  }

  identity sha-224 {
    base checksum-algorithm;
    description
      "SHA-224.";
    reference
      "GS NFV IFA011: Section 7.1.6.10 Checksum information element.";
  }

  identity sha-256 {
    base checksum-algorithm;
    description
      "SHA-256.";
    reference
      "GS NFV IFA011: Section 7.1.6.10 Checksum information element.";
  }

  identity sha-384 {
    base checksum-algorithm;
    description
      "SHA-384.";
    reference
      "GS NFV IFA011: Section 7.1.6.10 Checksum information element.";
  }

  identity sha-512 {
    base checksum-algorithm;
    description
      "SHA-512.";
    reference
      "GS NFV IFA011: Section 7.1.6.10 Checksum information element.";
  }
      
  /*
   * Typedefs
   */
+3 −1
Original line number Diff line number Diff line
@@ -829,7 +829,9 @@ submodule etsi-nfv-vnf {
        }
        container checksum {
          leaf algorithm {
            type string;
            type identityref {
	      base checksum-algorithm;
	    }
            description
              "Species the algorithm used to obtain the checksum
               value.";