Searched defs:encoding (Results 51 - 75 of 341) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPRep.java73 public APRep(DerValue encoding) throws Asn1Exception, argument
75 init(encoding);
80 * @param encoding a single DER-encoded value.
86 private void init(DerValue encoding) throws Asn1Exception, argument
89 if (((encoding.getTag() & (byte) (0x1F)) != Krb5.KRB_AP_REP)
90 || (encoding.isApplication() != true)
91 || (encoding.isConstructed() != true)) {
94 DerValue der = encoding.getData().getDerValue();
H A DASRep.java58 public ASRep(DerValue encoding) throws Asn1Exception, argument
60 init(encoding);
63 private void init(DerValue encoding) throws Asn1Exception, argument
65 init(encoding, Krb5.KRB_AS_REP);
H A DAuthorizationDataEntry.java66 * @param encoding a single DER-encoded value.
68 public AuthorizationDataEntry(DerValue encoding) throws Asn1Exception, IOException { argument
70 if (encoding.getTag() != DerValue.tag_Sequence) {
73 der = encoding.getData().getDerValue();
79 der = encoding.getData().getDerValue();
85 if (encoding.getData().available() > 0) {
H A DETypeInfo.java66 * @param encoding a DER-encoded data.
71 public ETypeInfo(DerValue encoding) throws Asn1Exception, IOException { argument
74 if (encoding.getTag() != DerValue.tag_Sequence) {
79 der = encoding.getData().getDerValue();
87 if (encoding.getData().available() > 0) {
88 der = encoding.getData().getDerValue();
93 // encoding from of a string. As RFC 4120 says:
98 // It's known that this field is using the same encoding as
109 if (encoding.getData().available() > 0)
118 * @exception Asn1Exception on encoding error
[all...]
H A DKRBCred.java87 public KRBCred(DerValue encoding) throws Asn1Exception, argument
89 init(encoding);
94 * @param encoding a single DER-encoded value.
101 private void init(DerValue encoding) throws Asn1Exception, argument
103 if (((encoding.getTag() & (byte) 0x1F) != (byte) 0x16)
104 || (encoding.isApplication() != true)
105 || (encoding.isConstructed() != true)) {
109 der = encoding.getData().getDerValue();
H A DKRBPriv.java74 public KRBPriv(DerValue encoding) throws Asn1Exception, argument
76 init(encoding);
82 * @param encoding a single DER-encoded value.
88 private void init(DerValue encoding) throws Asn1Exception, argument
91 if (((encoding.getTag() & (byte)0x1F) != (byte)0x15)
92 || (encoding.isApplication() != true)
93 || (encoding.isConstructed() != true))
95 der = encoding.getData().getDerValue();
H A DKRBSafe.java77 public KRBSafe(DerValue encoding) throws Asn1Exception, argument
79 init(encoding);
84 * @param encoding a single DER-encoded value.
91 private void init(DerValue encoding) throws Asn1Exception, argument
94 if (((encoding.getTag() & (byte)0x1F) != (byte)0x14)
95 || (encoding.isApplication() != true)
96 || (encoding.isConstructed() != true))
98 der = encoding.getData().getDerValue();
H A DLastReq.java74 * @param encoding a Der-encoded data.
79 public LastReq(DerValue encoding) throws Asn1Exception, IOException { argument
81 if (encoding.getTag() != DerValue.tag_Sequence) {
84 while (encoding.getData().available() > 0) {
85 v.addElement(new LastReqEntry(encoding.getData().getDerValue()));
H A DLastReqEntry.java52 * @param encoding a Der-encoded data.
56 public LastReqEntry(DerValue encoding) throws Asn1Exception, IOException { argument
57 if (encoding.getTag() != DerValue.tag_Sequence) {
61 der = encoding.getData().getDerValue();
68 lrValue = KerberosTime.parse(encoding.getData(), (byte)0x01, false);
69 if (encoding.getData().available() > 0)
H A DMethodData.java61 * @param encoding a Der-encoded data.
65 public MethodData(DerValue encoding) throws Asn1Exception, IOException { argument
67 if (encoding.getTag() != DerValue.tag_Sequence) {
70 der = encoding.getData().getDerValue();
77 if (encoding.getData().available() > 0) {
78 der = encoding.getData().getDerValue();
84 if (encoding.getData().available() > 0)
H A DTGSRep.java59 public TGSRep(DerValue encoding) throws Asn1Exception, argument
61 init(encoding);
64 private void init(DerValue encoding) throws Asn1Exception, argument
66 init(encoding, Krb5.KRB_TGS_REP);
H A DTicketFlags.java75 public TicketFlags(DerValue encoding) throws IOException, Asn1Exception { argument
76 this(encoding.getUnalignedBitString(true).toBooleanArray());
H A DTransitedEncoding.java66 * @param encoding a Der-encoded data.
71 public TransitedEncoding(DerValue encoding) throws Asn1Exception, IOException { argument
72 if (encoding.getTag() != DerValue.tag_Sequence) {
76 der = encoding.getData().getDerValue();
82 der = encoding.getData().getDerValue();
/openjdk7/jdk/test/javax/crypto/JceSecurity/
H A DMyCertificateFactory.java66 String encoding)
68 return cf.generateCertPath(inStream, encoding);
65 engineGenerateCertPath(InputStream inStream, String encoding) argument
/openjdk7/langtools/test/tools/javac/api/
H A DT6306137.java27 * @summary JSR 199: encoding option doesn't affect standard file manager
30 * Need to make the contentCache in JavacFileManager be aware of changes to the encoding.
31 * Need to propogate -source (and -encoding?) down to the JavacFileManager
65 void test(String encoding, boolean good) { argument
67 Iterable<String> args = Arrays.asList("-source", "6", "-encoding", encoding, "-d", ".");
/openjdk7/langtools/test/tools/javac/api/lib/
H A DToolTester.java44 Charset encoding) {
45 StandardJavaFileManager fm = tool.getStandardFileManager(dl, null, encoding);
42 getFileManager(JavaCompiler tool, DiagnosticListener<JavaFileObject> dl, Charset encoding) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DEncodings.java35 * to override encoding names and provide the last printable character
36 * for each encoding.
55 // default (Java) encoding if none supplied:
64 * @param encoding a MIME charset name, or null.
66 static EncodingInfo getEncodingInfo(String encoding, boolean allowJavaNames) throws UnsupportedEncodingException { argument
68 if (encoding == null) {
76 encoding = encoding.toUpperCase(Locale.ENGLISH);
77 String jName = EncodingMap.getIANA2JavaMapping(encoding);
79 // see if the encoding passe
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLOutputFactory.java237 * @param encoding the encoding to use
241 String encoding) throws XMLStreamException;
274 * @param encoding the encoding to use
278 String encoding) throws XMLStreamException;
240 createXMLStreamWriter(java.io.OutputStream stream, String encoding) argument
277 createXMLEventWriter(java.io.OutputStream stream, String encoding) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerFactory.java26 package com.sun.corba.se.impl.encoding;
28 import com.sun.corba.se.impl.encoding.BufferManagerRead;
29 import com.sun.corba.se.impl.encoding.BufferManagerReadGrow;
30 import com.sun.corba.se.impl.encoding.BufferManagerReadStream;
31 import com.sun.corba.se.impl.encoding.BufferManagerWrite;
H A DBufferManagerRead.java26 package com.sun.corba.se.impl.encoding;
29 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
H A DBufferManagerWrite.java26 package com.sun.corba.se.impl.encoding;
32 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
H A DCDRInputStream_1_2.java25 package com.sun.corba.se.impl.encoding;
H A DCDROutputStream_1_1.java25 package com.sun.corba.se.impl.encoding;
29 import com.sun.corba.se.impl.encoding.CodeSetConversion;
H A DTypeCodeReader.java26 package com.sun.corba.se.impl.encoding;
61 import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry;
62 import com.sun.corba.se.impl.encoding.MarshalInputStream;
63 import com.sun.corba.se.impl.encoding.CodeSetConversion;
64 import com.sun.corba.se.impl.encoding.CDRInputStream;
65 import com.sun.corba.se.impl.encoding.CDROutputStream;
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPath.java63 * by a <code>CertPath</code> is considered the default encoding. This
64 * encoding is used if no encoding is explicitly requested (for the
154 * path, with the default encoding first. Attempts to modify the returned
247 * encoding.
250 * @exception CertificateEncodingException if an encoding error occurs
257 * specified encoding.
259 * @param encoding the name of the encoding to use
261 * @exception CertificateEncodingException if an encoding erro
264 getEncoded(String encoding) argument
[all...]

Completed in 114 milliseconds

1234567891011>>