Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 878 for tagged (0.05 sec)

  1. 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)
  2. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                ASN1TaggedObject tagged = ASN1Util.as(ASN1TaggedObject.class, fields);
    
                switch (tagged.getTagNo()) {
                case 0: // Ticket Flags
                    break;
                case 1: // Key
                    break;
                case 2: // Realm
                    DERGeneralString derRealm = ASN1Util.as(DERGeneralString.class, tagged);
                    this.userRealm = derRealm.getString();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. .github/SUPPORT.md

    * [Gophers Slack](https://gophers.slack.com), use the [invite app](https://invite.slack.golangbridge.org/) for access
    
    * [Stack Overflow](https://stackoverflow.com/questions/tagged/go) with questions tagged "go"
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 692 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top