Searched refs:eType (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptedData.java47 int eType; field in class:EncryptedData
88 new_encryptedData.eType = eType;
105 eType = new_eType;
118 eType = key.getEType();
132 eType = key.getEType();
145 eType = key.getEType();
159 eType = key.getEType();
168 if (eType != key.getEType()) {
171 EType.toString(eType)
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DEType.java71 EType eType = null;
75 eType = new NullEType();
79 eType = new DesCbcCrcEType();
83 eType = new DesCbcMd5EType();
88 eType = new Des3CbcHmacSha1KdEType();
94 eType = new Aes128CtsHmacSha1EType();
100 eType = new Aes256CtsHmacSha1EType();
106 eType = new ArcFourHmacEType();
118 return eType;
121 public abstract int eType(); method in class:EType
[all...]
H A DDesCbcCrcEType.java43 public int eType() { method in class:DesCbcCrcEType
H A DDesCbcMd5EType.java46 public int eType() { method in class:DesCbcMd5EType
H A DNullEType.java41 public int eType() { method in class:NullEType
H A DAes128CtsHmacSha1EType.java42 public int eType() { method in class:Aes128CtsHmacSha1EType
H A DAes256CtsHmacSha1EType.java42 public int eType() { method in class:Aes256CtsHmacSha1EType
H A DArcFourHmacEType.java42 public int eType() { method in class:ArcFourHmacEType
H A DDes3CbcHmacSha1KdEType.java36 public int eType() { method in class:Des3CbcHmacSha1KdEType
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyImpl.java115 private String getAlgorithmName(int eType) { argument
119 switch (eType) {
141 "Unsupported encryption type: " + eType);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKDCReqBody.java83 private int[] eType = null; //a sequence; not optional field in class:KDCReqBody
110 eType = new_eType.clone();
169 eType = new int[v.size()];
171 eType[i] = v.elementAt(i);
240 //revisit, if empty eType sequences are allowed
242 for (int i = 0; i < eType.length; i++) {
243 temp.putInteger(BigInteger.valueOf(eType[i]));
H A DPAData.java204 * Fetches salt and s2kparams value for eType in a series of PA-DATAs.
212 public static SaltAndParams getSaltAndParams(int eType, PAData[] pas) argument
239 if (tmp.getParams() == null && tmp.getEType() == eType) {
249 if (tmp.getEType() == eType) {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseIterators.java475 int eType;
486 eType = _exptype(node);
487 if (eType < DTM.NTYPES) {
488 if (eType == nodeType) {
491 } else if (m_expandedNameTable.getType(eType) == nodeType) {
940 int eType;
949 eType = _exptype(node);
950 if (eType < DTM.NTYPES) {
951 if (eType == nodeType) {
954 } else if (m_expandedNameTable.getType(eType)
[all...]
H A DDTMDefaultBase.java989 int firstChild, eType;
994 eType = _exptype(firstChild);
995 if (eType == nodeType
996 || (eType >= DTM.NTYPES
997 && m_expandedNameTable.getType(eType) == nodeType)) {
1158 int eType;
1160 ((eType = _exptype(node)) != nodeType &&
1161 m_expandedNameTable.getType(eType)!= nodeType));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java287 int eType;
289 eType = _exptype2(node);
290 if (eType >= DTM.NTYPES)
1445 int eType = _exptype2(nodeID);
1447 if (eType == nodeType) {
1461 int eType = _exptype2(nodeID);
1463 if ((eType < DTM.NTYPES && eType == nodeType)
1464 || (eType >= DTM.NTYPES
1465 && m_extendedTypes[eType]
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DModelerUtils.java117 JAXBElementMember eType = new JAXBElementMember(elementName, jaxbType);
119 .getLocalPart(), javaType, eType);
120 eType.setJavaStructureMember(jsm);
122 eType.setProperty(prop);
123 type.add(eType);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSAXImpl.java482 int eType = getIdForNamespace(s);
483 return ((Integer)_nsIndex.get(new Integer(eType))).intValue();
681 int eType = getIdForNamespace(namespaces[i]);
682 Integer type = (Integer)_nsIndex.get(new Integer(eType));
701 int eType = getIdForNamespace(namespaces[i]);
702 Integer type = (Integer)_nsIndex.get(new Integer(eType));
989 Integer eType = new Integer(getIdForNamespace(uri));
990 if ((Integer)_nsIndex.get(eType) == null) {
991 _nsIndex.put(eType, new Integer(_uriCount++));
1611 int eType
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java479 * @param eType the encryption type
483 private static EncryptionKey generateRandomKey(int eType) argument
489 switch (eType) {
832 int eType = eTypes[0];
834 EncryptionKey ckey = keyForUser(body.cname, eType, false);
835 EncryptionKey skey = keyForUser(service, eType, true);
859 EncryptionKey key = generateRandomKey(eType);
1314 getEType = KDCReqBody.class.getDeclaredField("eType");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java3251 Type eType = tree.expr.type;
3252 tree.expr.type = types.erasure(eType);
3253 if (eType.tag == TYPEVAR && eType.getUpperBound().isCompound())

Completed in 116 milliseconds