245. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 9/25/2018 2:13:23 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

245.1 Files compared

# Location File Last Modified
1 build 3.zip\build 3\MHLTH_YS_137_Source\JavaScript\resources\javaJDF-1.8.0\src\sun\security\krb5\internal\ktab KeyTabConstants.java Mon Jan 22 14:46:54 2018 UTC
2 build 3.zip\build 3\MHLTH_YS_137_Source\JavaScript\resources\javaJDF-1.8.0\src\sun\security\krb5\internal\ktab KeyTabConstants.java Wed Sep 12 17:52:48 2018 UTC

245.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 102
Changed 1 2
Inserted 0 0
Removed 0 0

245.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

245.4 Active regular expressions

No regular expressions were active.

245.5 Comparison detail

  1   /*
  2    * DO NOT  ALTER OR R EMOVE COPY RIGHT NOTI CES OR THI S FILE HEA DER.
  3    *
  4    * This co de is free  software;  you can r edistribut e it and/o r modify i t
  5    * under t he terms o f the GNU  General Pu blic Licen se version  2 only, a s
  6    * publish ed by the  Free Softw are Founda tion.  Ora cle design ates this
  7    * particu lar file a s subject  to the "Cl asspath" e xception a s provided
  8    * by Orac le in the  LICENSE fi le that ac companied  this code.
  9    *
  10    * This co de is dist ributed in  the hope  that it wi ll be usef ul, but WI THOUT
  11    * ANY WAR RANTY; wit hout even  the implie d warranty  of MERCHA NTABILITY  or
  12    * FITNESS  FOR A PAR TICULAR PU RPOSE.  Se e the GNU  General Pu blic Licen se
  13    * version  2 for mor e details  (a copy is  included  in the LIC ENSE file  that
  14    * accompa nied this  code).
  15    *
  16    * You sho uld have r eceived a  copy of th e GNU Gene ral Public  License v ersion
  17    * 2 along  with this  work; if  not, write  to the Fr ee Softwar e Foundati on,
  18    * Inc., 5 1 Franklin  St, Fifth  Floor, Bo ston, MA 0 2110-1301  USA.
  19    *
  20    * Please  contact Or acle, 500  Oracle Par kway, Redw ood Shores , CA 94065  USA
  21    * or visi t www.orac le.com if  you need a dditional  informatio n or have  any
  22    * questio ns.
  23    */
  24  
  25   /*
  26    *
  27    *  (C) Co pyright IB M Corp. 19 99 All Rig hts Reserv ed.
  28    *  Copyri ght 1997 T he Open Gr oup Resear ch Institu te.  All r ights rese rved.
  29    */
  30  
  31   package su n.security .krb5.inte rnal.ktab;
  32  
  33   import sun .security. krb5.inter nal.*;
  34  
  35   /**
  36    * This cl ass repres ents a Key  Table ent ry. Each e ntry conta ins the se rvice prin cipal of
  37    * the key , time sta mp, key ve rsion and  PW        key itself .
  38    *
  39    * @author  Yanni Zha ng
  40    */
  41   public int erface Key TabConstan ts {
  42       final  int princi palCompone ntSize = 2 ;
  43       final  int realmS ize = 2;
  44       final  int princi palSize =  2;
  45       final  int princi palTypeSiz e = 4;
  46       final  int timest ampSize =  4;
  47       final  int keyVer sionSize =  1;
  48       final  int keyTyp eSize = 2;
  49       final  int keySiz e = 2;
  50       static  final int  KRB5_KT_V NO_1 = 0x0 501;    /*  krb v5, k eytab vers ion 1 (DCE  compat) * /
  51       static  final int  KRB5_KT_V NO         = 0x0502;        /* k rb v5, key tab versio n 2 (stand ard)  */
  52   }