Searched refs:so (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignedObjectTest.java62 SignedObject so = new SignedObject(prop, tkp.getPrivate(), sig);
64 assertEquals("SHA1withDSA", so.getAlgorithm());
65 assertEquals(prop, so.getObject());
67 assertTrue("verify() failed", so.verify(tkp.getPublic(), sig));
69 assertNotNull("signature is null", so.getSignature());
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DSealedObjectTest.java72 SealedObject so = new SealedObject(secret, new NullCipher());
75 oos.writeObject(so);
86 + "by getAlgorithm() method of initial object", so
112 SealedObject so = new SealedObject(secret, cipher);
126 * SealedObject(SealedObject so) method testing. Tests if the
162 SealedObject so = new SealedObject(secret, cipher);
165 + "in cipher.", algorithm, so.getAlgorithm());
177 SealedObject so = new SealedObject(secret, cipher);
180 + "in cipher.", algorithm, so.getAlgorithm());
184 oos.writeObject(so);
[all...]
/libcore/ojluni/src/main/java/javax/crypto/
H A DSealedObject.java190 * @param so a SealedObject object
193 protected SealedObject(SealedObject so) { argument
194 this.encryptedContent = so.encryptedContent.clone();
195 this.sealAlg = so.sealAlg;
196 this.paramsAlg = so.paramsAlg;
197 if (so.encodedParams != null) {
198 this.encodedParams = so.encodedParams.clone();
/libcore/ojluni/src/test/
H A Dartrun34 LIBART=libart.so
94 # already exists, so we force it to create a new boot image with our correct bootclasspath.
/libcore/
H A DDocs.mk36 # BUILD_DROIDDOC requires file names that are relative the *current* LOCAL_DIR so users must account
H A DJavaLibrary.mk169 # Include individual dex.jar files (jars containing resources and a classes.dex) so that they
340 # The libcore_to_document paths are relative to $(TOPDIR). We are in libcore so we must prepend
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java8 * furnished to do so, subject to the following conditions:
579 // so break and start a new one when necessary.
590 // Character entities aren't valid in CDATA, so break out for this.
H A DKXmlParser.java8 * furnished to do so, subject to the following conditions:
187 * their elements, so these attributes aren't useful. But for structure preserving wrappers like
1347 * buffer. This mutates the buffer, so save the partial result
1384 * path to slow path if we haven't done so already.
1555 * buffer. This mutates the buffer, so save the partial result
1743 * rather than incrementing position so that <?xml version='1.0'?>

Completed in 148 milliseconds