Searched refs:Key (Results 151 - 175 of 209) sorted by relevance

123456789

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java39 public static final Context.Key<Names> namesKey = new Context.Key<Names>();
H A DJCDiagnostic.java53 protected static final Context.Key<JCDiagnostic.Factory> diagnosticFactoryKey =
54 new Context.Key<JCDiagnostic.Factory>();
/openjdk7/jdk/test/java/security/KeyStore/
H A DKeyStoreBuilder.java161 public Key engineGetKey(String alias, char[] password) {
173 public void engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] certs) {
H A DEntryMethods.java365 public Key engineGetKey(String alias, char[] password)
384 public void engineSetKeyEntry(String alias, Key key,
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DJceKeyStore.java34 import java.security.Key;
107 public Key engineGetKey(String alias, char[] password)
110 Key key = null;
247 public void engineSetKeyEntry(String alias, Key key, char[] password,
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Mac.java196 protected void engineInit(Key key, AlgorithmParameterSpec params)
H A DSunPKCS11.java991 if (param instanceof Key == false) {
992 throw new InvalidParameterException("Parameter must be a Key");
996 Key key = (Key)param;
1047 private boolean isLocalKey(Key key) {
/openjdk7/jdk/make/sun/security/mscapi/
H A DMakefile129 sun/security/mscapi/Key.java \
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignatureMethod.java213 boolean verify(Key key, DOMSignedInfo si, byte[] sig,
266 byte[] sign(Key key, DOMSignedInfo si, XMLSignContext context)
H A DDOMXMLSignature.java45 import java.security.Key;
379 Key signingKey = null;
527 Key validationKey = null;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java134 private static final Context.Key<FilerImpl> filerKey =
135 new Context.Key<FilerImpl>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAnnotate.java44 protected static final Context.Key<Annotate> annotateKey =
45 new Context.Key<Annotate>();
H A DConstFold.java46 protected static final Context.Key<ConstFold> constFoldKey =
47 new Context.Key<ConstFold>();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStylesheet.java165 * Mapping between key names and Key objects (needed by Key/IdPattern).
1060 if (element instanceof Key) {
1073 if (tle instanceof Key) {
1074 final Key key = (Key) tle;
1205 if (element instanceof Key) {
1206 final Key key = (Key)element;
/openjdk7/jdk/src/share/classes/java/security/
H A DProvider.java46 * <li>Key generation, conversion, and management facilities (such as for
1361 if ((parameter != null) && (parameter instanceof Key == false)) {
1363 ("Parameter must be instanceof Key for engine " + type);
1371 Key key = (Key)parameter;
1434 private boolean supportsKeyFormat(Key key) {
1450 private boolean supportsKeyClass(Key key) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignature.java27 import java.security.Key;
524 public void sign(Key signingKey) throws XMLSignatureException {
616 public boolean checkSignatureValue(Key pk) throws XMLSignatureException {
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java46 import java.awt.RenderingHints.Key;
1589 public void setRenderingHint(Key hintCategory, Object hintValue) {
1599 public Object getRenderingHint(Key hintCategory) {
H A DProxyGraphics2D.java45 import java.awt.RenderingHints.Key;
1473 public void setRenderingHint(Key hintCategory, Object hintValue) {
1483 public Object getRenderingHint(Key hintCategory) {
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DContext.java25 import java.security.Key;
348 Key k = (Key)ex.inquireSecContext(
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DApt.java89 protected static final Context.Key<Apt> aptKey =
90 new Context.Key<Apt>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java65 protected static final Context.Key<Paths> pathsKey =
66 new Context.Key<Paths>();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DJavaKeyStore.java115 public Key engineGetKey(String alias, char[] password)
243 public void engineSetKeyEntry(String alias, Key key, char[] password,
272 throw new KeyStoreException("Key protection algorithm not found");
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java31 import java.security.Key;
222 public Key engineGetKey(String alias, char[] password)
226 Key key = null;
296 new UnrecoverableKeyException("Get Key failed: " +
395 public synchronized void engineSetKeyEntry(String alias, Key key,
414 throw new KeyStoreException("Key is not a PrivateKey");
434 KeyStoreException ke = new KeyStoreException("Key protection " +
624 new UnrecoverableKeyException("Encrypt Private Key failed: "
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSunX509KeyManagerImpl.java131 Key key = ks.getKey(alias, password);
/openjdk7/jdk/test/java/security/Provider/
H A DGetInstance.java232 public static abstract class FooKey implements Key {

Completed in 85 milliseconds

123456789