Searched refs:Key (Results 101 - 125 of 209) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/
H A DSignatureAlgorithm.java25 import java.security.Key;
240 public void initSign(Key signingKey) throws XMLSignatureException {
253 public void initSign(Key signingKey, SecureRandom secureRandom) throws XMLSignatureException {
266 Key signingKey, AlgorithmParameterSpec algorithmParameterSpec
290 public void initVerify(Key verificationKey) throws XMLSignatureException {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DIntegrityHmac.java27 import java.security.Key;
148 protected void engineInitVerify(Key secretKey) throws XMLSignatureException {
237 protected void engineInitSign(Key secretKey) throws XMLSignatureException {
263 Key secretKey, AlgorithmParameterSpec algorithmParameterSpec)
291 protected void engineInitSign(Key secretKey, SecureRandom secureRandom)
H A DSignatureDSA.java26 import java.security.Key;
129 protected void engineInitVerify(Key publicKey) throws XMLSignatureException {
180 protected void engineInitSign(Key privateKey, SecureRandom secureRandom)
203 protected void engineInitSign(Key privateKey) throws XMLSignatureException {
390 Key signingKey, AlgorithmParameterSpec algorithmParameterSpec)
H A DSignatureECDSA.java28 import java.security.Key;
220 protected void engineInitVerify(Key publicKey) throws XMLSignatureException {
267 protected void engineInitSign(Key privateKey, SecureRandom secureRandom)
288 protected void engineInitSign(Key privateKey) throws XMLSignatureException {
355 Key signingKey, AlgorithmParameterSpec algorithmParameterSpec)
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DKeyProtector.java37 import java.security.Key;
148 Key recover(EncryptedPrivateKeyInfo encrInfo)
296 SealedObject seal(Key key)
325 Key unseal(SealedObject so)
350 return (Key)soForKeyProtector.getObject(cipher);
H A DCipherCore.java383 void init(int opmode, Key key, SecureRandom random)
416 void init(int opmode, Key key, AlgorithmParameterSpec params,
472 void init(int opmode, Key key, AlgorithmParameters params,
493 static byte[] getKeyBytes(Key key) throws InvalidKeyException {
889 byte[] wrap(Key key)
927 Key unwrap(byte[] wrappedKey, String wrappedKeyAlgorithm,
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLAlgorithmConstraints.java34 import java.security.Key;
142 public boolean permits(Set<CryptoPrimitive> primitives, Key key) {
166 String algorithm, Key key, AlgorithmParameters parameters) {
240 final public boolean permits(Set<CryptoPrimitive> primitives, Key key) {
245 String algorithm, Key key, AlgorithmParameters parameters) {
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c1135 cmsBool IsAvailableOnList(KEYVALUE* p, const char* Key, const char* Subkey, KEYVALUE** LastPtr) argument
1143 if (*Key != '#') { // Comments are ignored
1145 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1171 KEYVALUE* AddToList(cmsIT8* it8, KEYVALUE** Head, const char *Key, const char *Subkey, const char* xValue, WRITEMODE WriteAs) argument
1179 if (IsAvailableOnList(*Head, Key, Subkey, &p)) {
1183 // return SynError(it8, "duplicate key <%s>", Key);
1198 p->Keyword = AllocString(it8, Key);
1239 KEYVALUE* AddAvailableProperty(cmsIT8* it8, const char* Key, WRITEMODE as) argument
1241 return AddToList(it8, &it8->ValidKeywords, Key, NULL, NULL, as);
1246 KEYVALUE* AddAvailableSampleID(cmsIT8* it8, const char* Key) argument
1365 cmsIT8SetPropertyStr(cmsHANDLE hIT8, const char* Key, const char *Val) argument
1395 cmsIT8SetPropertyUncooked(cmsHANDLE hIT8, const char* Key, const char* Buffer) argument
1402 cmsIT8SetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char* SubKey, const char *Buffer) argument
1410 cmsIT8GetProperty(cmsHANDLE hIT8, const char* Key) argument
1430 cmsIT8GetPropertyMulti(cmsHANDLE hIT8, const char* Key, const char *SubKey) argument
1932 KEYVALUE* Key; local
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java780 private void implInit(CipherSpi thisSpi, int type, int opmode, Key key,
806 private void chooseProvider(int initType, int opmode, Key key,
997 private void checkCryptoPerm(CipherSpi checkSpi, Key key)
1016 private void checkCryptoPerm(CipherSpi checkSpi, Key key,
1031 private void checkCryptoPerm(CipherSpi checkSpi, Key key,
1048 private boolean passCryptoPermCheck(CipherSpi checkSpi, Key key,
1152 public final void init(int opmode, Key key) throws InvalidKeyException {
1202 public final void init(int opmode, Key key, SecureRandom random)
1279 public final void init(int opmode, Key key, AlgorithmParameterSpec params)
1337 public final void init(int opmode, Key ke
[all...]
/openjdk7/jdk/test/com/oracle/security/ucrypto/
H A DTestAES.java195 Key[] tbwKeys = new Key[3];
222 Key recovered = c2.unwrap(wrappedKey,
236 Key recovered = c2.unwrap(wrappedKey,
325 private static boolean checkKeys(Key k1, Key k2) {
328 System.out.println("DIFFERENT Key Algorithm");
331 System.out.println("DIFFERENT Key Format");
334 System.out.println("DIFFERENT Key Encoding");
/openjdk7/jdk/src/share/classes/java/security/
H A DIdentity.java264 private boolean keyEquals(Key aKey, Key anotherKey) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/keyvalues/
H A DDSAKeyValue.java24 import java.security.Key;
87 public DSAKeyValue(Document doc, Key key) throws IllegalArgumentException {
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/KeyWrap/
H A DXMLEncKAT.java32 import java.security.Key;
120 Key[] key = new SecretKey[base64Wrapped.length];
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DTypeMaker.java53 private static final Context.Key<TypeMaker> typeMakerKey =
54 new Context.Key<TypeMaker>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSource.java70 private static final Context.Key<Source> sourceKey
71 = new Context.Key<Source>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.java46 protected static final Context.Key<Todo> todoKey =
47 new Context.Key<Todo>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DTarget.java71 private static final Context.Key<Target> targetKey =
72 new Context.Key<Target>();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DJavacMessages.java47 public static final Context.Key<JavacMessages> messagesKey =
48 new Context.Key<JavacMessages>();
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DSecretKeySpec.java29 import java.security.Key;
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPublicKey.java42 class RSAPublicKey extends Key implements java.security.interfaces.RSAPublicKey
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyAgreement.java80 protected void engineInit(Key key, SecureRandom random)
84 ("Key must be instance of PrivateKey");
92 protected void engineInit(Key key, AlgorithmParameterSpec params,
103 protected Key engineDoPhase(Key key, boolean lastPhase)
133 ("Key must be a PublicKey with algorithm DH");
/openjdk7/jdk/test/javax/crypto/CryptoPermission/
H A DAllPermCheck.java48 public static void runTest(Cipher c, Key key) throws Exception {
/openjdk7/jdk/test/sun/security/pkcs11/rsa/
H A DKeyWrap.java84 Key unwrapped = c.unwrap(wrapped, alg, Cipher.SECRET_KEY);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DSymbolTable.java64 public Key getKey(QName name) {
66 return (Key) _keys.get(name);
69 public void addKey(QName name, Key key) {
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMHMACSignatureMethod.java36 import java.security.Key;
125 boolean verify(Key key, DOMSignedInfo si, byte[] sig,
152 byte[] sign(Key key, DOMSignedInfo si, XMLSignContext context)

Completed in 89 milliseconds

123456789