Searched refs:EncryptionKey (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAuthContext.java33 import sun.security.krb5.EncryptionKey;
41 public EncryptionKey keyBlock;
42 public EncryptionKey localSubkey;
43 public EncryptionKey remoteSubkey;
H A DEncAPRepPart.java46 * subkey [2] EncryptionKey OPTIONAL,
61 EncryptionKey subKey; //optional
67 EncryptionKey new_subKey,
110 subKey = EncryptionKey.parse(der.getData(), (byte) 0x02, true);
164 public final EncryptionKey getSubKey() {
H A DAuthenticator.java49 * subkey [6] EncryptionKey OPTIONAL,
69 EncryptionKey subKey; //optional
79 EncryptionKey new_subKey,
145 subKey = EncryptionKey.parse(der.getData(), (byte) 0x06, true);
221 public final EncryptionKey getSubKey() {
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DJavaxSecurityAuthKerberosAccessImpl.java29 import sun.security.krb5.EncryptionKey;
34 public EncryptionKey[] keyTabGetEncryptionKeys(
H A DKeyImpl.java36 import sun.security.krb5.EncryptionKey;
89 EncryptionKey key =
90 new EncryptionKey(password, princ.getSalt(), algorithm);
172 * EncryptionKey ::= SEQUENCE {
184 ois.writeObject((new EncryptionKey(keyType, keyBytes)).asn1Encode());
193 EncryptionKey encKey = new EncryptionKey(new
204 return "EncryptionKey: keyType=" + keyType
H A DKeyTab.java31 import sun.security.krb5.EncryptionKey;
160 EncryptionKey[] keys = takeSnapshot().readServiceKeys(
178 EncryptionKey[] getEncryptionKeys(PrincipalName principal) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaxSecurityAuthKerberosAccess.java29 import sun.security.krb5.EncryptionKey;
41 public EncryptionKey[] keyTabGetEncryptionKeys(
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptionKey.java46 * This class encapsulates the concept of an EncryptionKey. An encryption
49 * EncryptionKey ::= SEQUENCE {
67 public class EncryptionKey class in inherits:Cloneable
70 public static final EncryptionKey NULL_KEY =
71 new EncryptionKey(new byte[] {}, EncryptedData.ETYPE_NULL, null);
97 return new EncryptionKey(keyValue, keyType, kvno);
112 public static EncryptionKey acquireSecretKey(PrincipalName princ,
140 public static EncryptionKey[] acquireSecretKeys(PrincipalName princ,
162 public static EncryptionKey acquireSecretKey(PrincipalName cname,
185 public static EncryptionKey acquireSecretKe
233 public EncryptionKey(byte[] keyValue, method in class:EncryptionKey
256 public EncryptionKey(int keyType, method in class:EncryptionKey
303 public EncryptionKey(char[] password, method in class:EncryptionKey
335 EncryptionKey(EncryptionKey key) throws KrbCryptoException { method in class:EncryptionKey
390 public EncryptionKey(DerValue encoding) throws Asn1Exception, IOException { method in class:EncryptionKey
[all...]
H A DKrbAsReqBuilder.java157 public EncryptionKey[] getKeys(boolean isInitiator) throws KrbException {
161 EncryptionKey[] result = new EncryptionKey[eTypes.length];
192 result[i] = EncryptionKey.acquireSecretKey(cname,
203 result[i] = EncryptionKey.acquireSecretKey(password,
258 private KrbAsReq build(EncryptionKey key) throws KrbException, IOException {
263 EncryptionKey[] ks = Krb5Util.keysFromJavaxKeyTab(ktab, cname);
266 for (EncryptionKey k: ks) k.destroy();
315 EncryptionKey pakey = null;
334 EncryptionKey[] k
[all...]
H A DKrbSafe.java34 import sun.security.krb5.EncryptionKey;
46 EncryptionKey subKey,
52 EncryptionKey reqKey = null;
69 EncryptionKey subKey,
79 EncryptionKey reqKey = null;
107 EncryptionKey key,
151 EncryptionKey key,
H A DKrbApReq.java110 EncryptionKey subKey = (useSubKey?
111 new EncryptionKey(tgsCred.getSessionKey()):
138 EncryptionKey[] keys,
159 public KrbApReq(DerValue value, EncryptionKey[] key, InetAddress initiator)
170 EncryptionKey subKey,
181 EncryptionKey key,
186 EncryptionKey subKey,
201 EncryptionKey subKey,
223 EncryptionKey key,
228 EncryptionKey subKe
[all...]
H A DKrbApRep.java59 EncryptionKey subKey =
61 new EncryptionKey(incomingReq.getCreds().getSessionKey()):null);
80 EncryptionKey subKey,
151 public EncryptionKey getSubKey() {
174 EncryptionKey key,
177 EncryptionKey subKey,
H A DKrbAsRep.java102 EncryptionKey dkey = null;
106 dkey = EncryptionKey.findKey(encPartKeyType, encPartKvno,
112 dkey = EncryptionKey.findKey(encPartKeyType,
134 EncryptionKey dkey = EncryptionKey.acquireSecretKey(
147 private void decrypt(EncryptionKey dkey, KrbAsReq asReq)
H A DKrbPriv.java47 EncryptionKey subKey,
53 EncryptionKey reqKey = null;
71 EncryptionKey subKey,
80 EncryptionKey reqKey = null;
106 EncryptionKey key,
148 EncryptionKey key,
H A DKrbCred.java60 EncryptionKey key)
91 KRBCred createMessage(Credentials delegatedCreds, EncryptionKey key)
94 EncryptionKey sessionKey
124 public KrbCred(byte[] asn1Message, EncryptionKey key)
140 EncryptionKey credInfoKey = credInfo.key;
H A DCredentials.java52 EncryptionKey key;
59 EncryptionKey serviceKey;
70 EncryptionKey new_key,
86 EncryptionKey new_key,
119 new EncryptionKey(keyType, keyBytes),
147 public final EncryptionKey getSessionKey() {
456 public EncryptionKey getServiceKey() {
H A DKrbTgsReq.java51 EncryptionKey tgsReqKey;
72 null); // EncryptionKey subSessionKey
87 EncryptionKey subKey) throws KrbException, IOException {
214 EncryptionKey key,
226 EncryptionKey subKey)
258 EncryptionKey reqKey = null;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabEntry.java68 public EncryptionKey getKey() {
69 EncryptionKey key = new EncryptionKey(keyblock,
H A DKeyTab.java277 public EncryptionKey[] readServiceKeys(PrincipalName service) {
279 EncryptionKey key;
281 ArrayList<EncryptionKey> keys = new ArrayList<>(size);
286 key = new EncryptionKey(entry.keyblock,
301 EncryptionKey[] retVal = keys.toArray(new EncryptionKey[size]);
313 Arrays.sort(retVal, new Comparator<EncryptionKey>() {
315 public int compare(EncryptionKey o1, EncryptionKey o2) {
383 EncryptionKey[] encKey
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DInitSecContextToken.java75 EncryptionKey subKey = apReq.getSubKey();
89 InitSecContextToken(Krb5Context context, EncryptionKey[] keys,
111 EncryptionKey sessionKey = apReq.getCreds().getSessionKey();
118 EncryptionKey subKey = apReq.getSubKey();
H A DKrb5Util.java39 import sun.security.krb5.EncryptionKey;
300 public EncryptionKey[] getEKeys() {
302 EncryptionKey[] ekeys = new EncryptionKey[kkeys.length];
304 ekeys[i] = new EncryptionKey(
341 EncryptionKey sessionKey = serviceCreds.getSessionKey();
379 public static EncryptionKey[] keysFromJavaxKeyTab(
H A DAcceptSecContextToken.java95 EncryptionKey subKey = apRep.getSubKey();
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DCredentials.java42 EncryptionKey key;
58 EncryptionKey new_key,
79 key = (EncryptionKey) new_key.clone();
116 key = (EncryptionKey) kdcRep.encKDCRepPart.key.clone();
152 key = (EncryptionKey) kdcRep.encKDCRepPart.key.clone();
/openjdk7/jdk/src/share/classes/sun/security/ssl/krb5/
H A DKerberosPreMasterSecret.java34 import sun.security.krb5.EncryptionKey;
71 SecureRandom generator, EncryptionKey sessionKey) throws IOException {
112 EncryptionKey sessionKey) throws IOException {
H A DKerberosClientKeyExchangeImpl.java44 import sun.security.krb5.EncryptionKey;
123 EncryptionKey sessionKey = new EncryptionKey(
159 EncryptionKey sessionKey = null;
207 EncryptionKey secretKey = new EncryptionKey(
374 * EncryptionKey and KerberosKey.

Completed in 81 milliseconds

12