Searched refs:encode (Results 126 - 150 of 308) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DContentInfo.java177 public void encode(DerOutputStream out) throws IOException { method in class:ContentInfo
188 content.encode(contentDerCode);
H A DEncryptedPrivateKeyInfo.java126 // encode encryption algorithm
127 algid.encode(tmp);
129 // encode encrypted data
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DBasicConstraintsExtension.java78 // Only encode pathLen when ca == true
188 * @param out the DerOutputStream to encode the extension to.
190 public void encode(OutputStream out) throws IOException { method in class:BasicConstraintsExtension
201 super.encode(tmp);
H A DExtension.java144 public void encode(OutputStream out) throws IOException { method in class:Extension
168 public void encode(DerOutputStream out) throws IOException { method in class:Extension
171 throw new IOException("Null OID to encode for the extension!");
173 throw new IOException("No value to encode for the extension!");
H A DGeneralName.java224 * @param out the DerOutputStream to encode the the GeneralName to.
227 public void encode(DerOutputStream out) throws IOException { method in class:GeneralName
229 name.encode(tmp);
H A DOtherName.java149 * @param out the DER stream to encode the Other-Name to.
152 public void encode(DerOutputStream out) throws IOException { method in class:OtherName
155 gni.encode(out);
H A DPolicyConstraintsExtension.java201 public void encode(OutputStream out) throws IOException { method in class:PolicyConstraintsExtension
208 super.encode(tmp);
H A DPolicyInformation.java271 public void encode(DerOutputStream out) throws IOException { method in class:PolicyInformation
273 policyIdentifier.encode(tmp);
H A DPrivateKeyUsageExtension.java230 public void encode(OutputStream out) throws IOException { method in class:PrivateKeyUsageExtension
237 super.encode(tmp);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java74 // concatenate user name and password bytes and encode them
79 this.auth = "Basic " + (new BasicBASE64Encoder()).encode(concat);
114 // concatenate user name and password bytes and encode them
119 this.auth = "Basic " + (new BasicBASE64Encoder()).encode(concat);
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java233 String result = "NTLM " + (new B64Encoder()).encode (msg);
246 String result = "NTLM " + (new B64Encoder()).encode (msg);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DHexBin.java64 * @param binaryData array of byte to encode
67 static public String encode(byte[] binaryData) { method in class:HexBin
88 * @return return array of byte to encode
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBase64BinaryDV.java67 canonical = Base64.encode(data);
H A DHexBinaryDV.java64 canonical = HexBin.encode(data);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DIsindexView.java95 data = URLEncoder.encode(data);
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java246 * encode Unicode. Some schemes, however, are associated with multiple
247 * coded character sets; EUC, for example, can be used to encode
395 // in order to, e.g., set system properties and encode filenames. At
830 * .encode(bb); </pre>
838 * CharsetEncoder#encode(java.nio.CharBuffer)} method directly. </p>
844 public final ByteBuffer encode(CharBuffer cb) { method in class:Charset
849 .encode(cb);
862 * cs.encode(CharBuffer.wrap(s)); </pre>
868 public final ByteBuffer encode(String str) { method in class:Charset
869 return encode(CharBuffe
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java259 // tempBuffer required only for encoding (when encode is true)
264 * True to encode to a-law, false to decode to linear
266 boolean encode = false; field in class:AlawCodec.AlawCodecStream
293 encode = false;
298 encode = true;
365 if (encode) {
H A DUlawCodec.java250 * True to encode to u-law, false to decode to linear
252 boolean encode = false; field in class:UlawCodec.UlawCodecStream
277 encode = false;
282 encode = true;
347 if (encode) {
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DKeyStoreResolver.java144 System.out.println(com.sun.org.apache.xml.internal.security.utils.Base64.encode(ski));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSwACodec.java73 public ContentType encode(Packet packet, WritableByteChannel buffer) { method in class:SwACodec
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DAttachmentMarshallerImpl.java93 cid = URLEncoder.encode(ns, "UTF-8");
/openjdk7/jdk/test/java/net/URLEncoder/
H A DSurrogatePairs.java80 String encoded = URLEncoder.encode(str, "UTF-8");
/openjdk7/jdk/test/sun/security/util/DerInputBuffer/
H A DDerInputBufferEqualsHashCode.java45 // encode
49 dn1.encode(deros);
/openjdk7/jdk/test/sun/security/x509/AVA/
H A DAVAEqualsHashCode.java43 // encode
49 dn.encode(deros);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAPublicKey.java93 encode();
95 throw new InvalidKeyException("could not DER encode y: " +

Completed in 50 milliseconds

1234567891011>>