- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 805 for tagged (0.06 sec)
-
src/main/java/jcifs/spnego/NegTokenInit.java
} ASN1TaggedObject tagged = (ASN1TaggedObject) vec.getObjectAt(1); if (tagged.getTagNo() != 0) { throw new IOException("Malformed SPNEGO token: tag " + tagged.getTagNo() + " " + tagged); } ASN1Sequence sequence = ASN1Sequence.getInstance(tagged, true); final Enumeration<ASN1Object> fields = sequence.getObjects();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
ASN1TaggedObject tagged = (ASN1TaggedObject) der.readObject(); final ASN1Sequence sequence = ASN1Sequence.getInstance(tagged, true); final Enumeration<?> fields = sequence.getObjects(); while (fields.hasMoreElements()) { tagged = (ASN1TaggedObject) fields.nextElement(); switch (tagged.getTagNo()) { case 0:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosTicket.java
Enumeration<?> fields = sequence.getObjects(); while (fields.hasMoreElements()) { ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields); switch (tagged.getTagNo()) { case 0:// Kerberos version ASN1Integer tktvno = ASN1Util.as(ASN1Integer.class, tagged); if (!tktvno.getValue().equals(new BigInteger(KerberosConstants.KERBEROS_VERSION))) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
return as(type, stream.readObject()); } /** * Extracts the base object from an ASN.1 tagged object and casts it to the specified type * @param <T> the target ASN.1 primitive type * @param type the target class type * @param tagged the ASN.1 tagged object * @return tagged object contents cast to type * @throws PACDecodingException if types are incompatible */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
Enumeration<?> fields = seq.getObjects(); while (fields.hasMoreElements()) { ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields.nextElement()); switch (tagged.getTagNo()) { case 0: ASN1Integer pvno = ASN1Util.as(ASN1Integer.class, tagged); if (!pvno.getValue().equals(new BigInteger(KerberosConstants.KERBEROS_VERSION))) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
ci/official/installer_wheel.sh
# Save the current working directory and then switch to the output directory. pushd "${TFCI_OUTPUT_DIR}" # Unpack the wheel to get all the file contents. The pure python wheel we built # above is tagged with "py3-none-any". We cannot change the tags by simply # renaming the wheels as uploading to PyPI would fail with "File already exists" # error. In order to upload to PyPI, we unpack the wheel and change the tag
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Mar 04 22:39:12 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
// Test successful casting from tagged object ASN1Integer content = new ASN1Integer(789); ASN1TaggedObject tagged = new DERTaggedObject(true, 1, content); ASN1Integer result = ASN1Util.as(ASN1Integer.class, tagged); assertSame(content, result); } @Test void testAs_ASN1TaggedObject_Failure() { // Test failed casting from tagged object
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTokenTest.java
innerContent.write(kerberosOid.getEncoded()); innerContent.write(0x01); // magic byte 1 innerContent.write(0x00); // magic byte 2 // Add a sequence instead of APPLICATION tagged object DERSequence wrongTag = new DERSequence(new ASN1Encodable[] { new ASN1Integer(5) }); innerContent.write(wrongTag.getEncoded()); byte[] content = innerContent.toByteArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
mkdocs.yml
'concurrency.md': 'contribute/concurrency.md' 'debug_logging.md': 'contribute/debug_logging.md' nav: - 'Overview': - 'Overview': index.md - 'Stack Overflow': https://stackoverflow.com/questions/tagged/okhttp?sort=active - 'Features': - 'Calls': features/calls.md - 'Caching': features/caching.md - 'Connections': features/connections.md - 'Events': features/events.md - 'HTTPS': features/https.md
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Nov 21 07:19:31 UTC 2024 - 3.9K bytes - Viewed (0)