Searched refs:Key (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/
H A DKeySelectorResult.java30 import java.security.Key;
36 * At a minimum, a <code>KeySelectorResult</code> contains the <code>Key</code>
53 Key getKey();
H A DKeySelector.java30 import java.security.Key;
127 public static KeySelector singletonKeySelector(Key key) {
132 private final Key key;
134 SingletonKeySelector(Key key) {
146 public Key getKey() {
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DPublicKey.java38 * @see Key
47 public interface PublicKey extends Key {
H A DPrivateKey.java47 * @see Key
60 public interface PrivateKey extends Key, javax.security.auth.Destroyable {
H A DKeyFactorySpi.java38 * <P> Key factories are used to convert <I>keys</I> (opaque
39 * cryptographic keys of type {@code Key}) into <I>key specifications</I>
43 * <P> Key factories are bi-directional. That is, they allow you to build an
60 * @see Key
124 T engineGetKeySpec(Key key, Class<T> keySpec)
139 protected abstract Key engineTranslateKey(Key key)
H A DKey.java29 * The Key interface is the top-level interface for all keys. It
67 * Internet X.509 Public Key Infrastructure Certificate and CRL Profile</a>.
82 * <p> A Key should use KeyRep as its serialized representation.
83 * Note that a serialized Key may contain sensitive information
103 public interface Key extends java.io.Serializable { interface in inherits:java.io.Serializable
H A DAlgorithmConstraints.java87 public boolean permits(Set<CryptoPrimitive> primitives, Key key);
106 String algorithm, Key key, AlgorithmParameters parameters);
/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DExemptionMechanismSpi.java28 import java.security.Key;
81 protected abstract void engineInit(Key key)
105 protected abstract void engineInit(Key key, AlgorithmParameterSpec params)
130 protected abstract void engineInit(Key key, AlgorithmParameters params)
H A DKeyAgreementSpi.java43 * ({@link #engineDoPhase(java.security.Key, boolean) engineDoPhase}).
85 protected abstract void engineInit(Key key, SecureRandom random)
104 protected abstract void engineInit(Key key, AlgorithmParameterSpec params,
127 protected abstract Key engineDoPhase(Key key, boolean lastPhase)
H A DSecretKey.java51 * from the {@link java.security.Key} parent interface.)
61 java.security.Key, javax.security.auth.Destroyable {
/openjdk10/jdk/test/java/security/KeyPairGenerator/
H A DFinalizeHalf.java30 import java.security.Key;
46 List<Consumer<Key>> methods = new ArrayList<>();
47 methods.add((Key k) -> k.getEncoded());
48 methods.add((Key k) -> k.toString());
53 for (Consumer<Key> method : methods) {
66 Consumer<Key> method) throws Exception {
77 Key key = priv ? pair.getPrivate() : pair.getPublic();
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.meta/src/jdk/vm/ci/meta/
H A DPlatformKind.java32 public interface Key { interface in interface:PlatformKind
36 class EnumKey<E extends Enum<E>> implements Key {
66 Key getKey();
/openjdk10/jdk/test/javax/crypto/SealedObject/
H A DNullKeySealedObject.java27 * @summary (spec) javax.crypto.SealedObject.getObject(Key, String): NPE
43 Key obj = new SecretKeySpec(new byte[8], "ANY");
48 so.getObject((Key)null);
55 so.getObject((Key)null, "ANY");
/openjdk10/jdk/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/
H A DRSAKeyPair.java44 Key.NativeHandles handles = new Key.NativeHandles(hCryptProv, hCryptKey);
H A DKey.java39 abstract class Key implements java.security.Key, Length class in inherits:java.security.Key,Length
74 // Key length
78 * Construct a Key object.
80 protected Key(NativeHandles handles, int keyLength) method in class:Key
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DRenderingHints.java76 * subclass the associated {@link RenderingHints.Key} class.
80 * which subclass the {@code Key} class and defining the associated values.
94 public abstract static class Key { class in class:RenderingHints
99 // - the name of the subclass of Key
100 // - the identityHashCode of the subclass of Key
101 // - the integer key of the Key
113 private static synchronized void recordIdentity(Key k) {
117 Key otherkey = (Key) ((WeakReference) otherref).get();
127 // will replace the entry for the old Key subclas
156 protected Key(int privatekey) { method in class:RenderingHints.Key
[all...]
/openjdk10/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DKeyCache.java31 import java.security.Key;
36 * Key to P11Key translation cache. The PKCS#11 token can only perform
53 private WeakReference<Map<Key,P11Key>> cacheReference;
79 synchronized P11Key get(Key key) {
84 Map<Key,P11Key> map =
92 synchronized void put(Key key, P11Key p11Key) {
94 Map<Key,P11Key> map =
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DContext.java49 * protected static final Context.Key<Phase> phaseKey =
50 * new Context.Key<Phase>();
102 public static class Key<T> { class in class:Context
118 * {@literal Key<T> -> T }
120 * {@literal Key<T> -> Factory<T> }
122 protected final Map<Key<?>,Object> ht = new HashMap<>();
125 public <T> void put(Key<T> key, Factory<T> fac) {
135 public <T> void put(Key<T> key, T data) {
145 public <T> T get(Key<T> key) {
158 * Since we found a key of type Key<
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/
H A DSunHints.java45 public static class Key extends RenderingHints.Key { class in class:SunHints
50 * subclass of Key maintains its own unique domain of integer
55 * pre-existing instance of that subclass of Key.
57 public Key(int privatekey, String description) { method in class:SunHints.Key
63 * Returns the numeric index associated with this Key. This
72 * Returns a string representation of the Key.
80 * for this Key.
98 private SunHints.Key myKey;
105 private static synchronized void register(SunHints.Key ke
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DSignatureAlgorithmSpi.java25 import java.security.Key;
93 protected abstract void engineInitSign(Key signingKey) throws XMLSignatureException;
104 protected abstract void engineInitSign(Key signingKey, SecureRandom secureRandom)
109 * which is executed on the internal {@link javax.crypto.Mac#init(Key)} object.
116 Key signingKey, AlgorithmParameterSpec algorithmParameterSpec
134 protected abstract void engineInitVerify(Key verificationKey) throws XMLSignatureException;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DActiveObjectMap.java47 public static class Key { class in class:ActiveObjectMap
50 Key(byte[] id) { method in class:ActiveObjectMap.Key
65 if (!(key instanceof Key))
67 Key k = (Key) key;
100 private Map keyToEntry = new HashMap() ; // Map< Key, AOMEntry >
109 public final boolean containsKey(Key key)
117 public final AOMEntry get(Key key)
133 public abstract Key getKey(AOMEntry value) throws WrongPolicy ;
135 public Key getKe
[all...]
H A DPOAPolicyMediatorBase_R.java70 protected Servant internalKeyToServant( ActiveObjectMap.Key key )
81 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
85 protected void activateServant( ActiveObjectMap.Key key, AOMEntry entry, Servant servant )
108 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
120 ActiveObjectMap.Key key = new ActiveObjectMap.Key( id ) ;
124 protected void deactivateHelper( ActiveObjectMap.Key key, AOMEntry entry,
139 public Servant deactivateObject( ActiveObjectMap.Key ke
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DLegacyAlgorithmConstraints.java30 import java.security.Key;
58 public final boolean permits(Set<CryptoPrimitive> primitives, Key key) {
64 String algorithm, Key key, AlgorithmParameters parameters) {
/openjdk10/jdk/src/java.desktop/share/native/libsplashscreen/giflib/
H A Dgif_hash.h57 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code);
58 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key);
/openjdk10/jdk/src/java.base/share/classes/sun/util/locale/
H A DBaseLocale.java70 CACHE.put(new Key(language, region), base);
87 Key key = new Key(language, script, region, variant);
157 private static final class Key { class in class:BaseLocale
166 * Creates a Key. language and region must be normalized
169 private Key(String language, String region) { method in class:BaseLocale.Key
189 public Key(String language, String script, String region, String variant) { method in class:BaseLocale.Key
193 private Key(String language, String script, String region, method in class:BaseLocale.Key
242 if (obj instanceof Key && this.hash == ((Key)ob
[all...]

Completed in 129 milliseconds

1234567891011>>