Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for perc (0.13 sec)

  1. src/main/java/jcifs/smb1/http/Handler.java

        /**
         * Sets the URL stream handler factory for the environment.  This
         * allows specification of the factory used in creating underlying
         * stream handlers.  This can be called once per JVM instance.
         *
         * @param factory The URL stream handler factory.
         */
        public static void setURLStreamHandlerFactory(
                URLStreamHandlerFactory factory) {
            synchronized (PROTOCOL_HANDLERS) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbConstants.java

        static final int FLAGS2_EXTENDED_SECURITY_NEGOTIATION = 0x0800;
        static final int FLAGS2_RESOLVE_PATHS_IN_DFS = 0x1000;
        static final int FLAGS2_PERMIT_READ_IF_EXECUTE_PERM = 0x2000;
        static final int FLAGS2_STATUS32 = 0x4000;
        static final int FLAGS2_UNICODE = 0x8000;
    
        static final int CAP_NONE = 0x0000;
        static final int CAP_RAW_MODE = 0x0001;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/Handler.java

    
        /**
         * Sets the URL stream handler factory for the environment. This
         * allows specification of the factory used in creating underlying
         * stream handlers. This can be called once per JVM instance.
         *
         * @param factory
         *            The URL stream handler factory.
         */
        public static void setURLStreamHandlerFactory ( URLStreamHandlerFactory factory ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/EnumTest.java

                }
    
                f.mkdir();
                try {
    
                    for ( int i = 0; i < 5; i++ ) {
                        // each entry 94 byte + 2 * name length
                        // = 128 byte per entry
                        try ( SmbResource r = f.resolve(String.format("%04x%s", i, repeat('X', 13))) ) {
                            r.createNewFile();
                        }
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

            KDFCounterBytesGenerator gen = new KDFCounterBytesGenerator(new HMac(new SHA256Digest()));
    
            int r = 32;
            byte[] suffix = new byte[label.length + context.length + 5];
            // per bouncycastle
            // <li>1: K(i) := PRF( KI, [i]_2 || Label || 0x00 || Context || [L]_2 ) with the counter at the very beginning
            // of the fixedInputData (The default implementation has this format)</li>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FLAGS2_EXTENDED_SECURITY_NEGOTIATION = 0x0800;
        static final int FLAGS2_RESOLVE_PATHS_IN_DFS          = 0x1000;
        static final int FLAGS2_PERMIT_READ_IF_EXECUTE_PERM   = 0x2000;
        static final int FLAGS2_STATUS32                      = 0x4000;
        static final int FLAGS2_UNICODE                       = 0x8000;
    
        static final int CAP_NONE             = 0x0000;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Context.java

            this.gssContext.requestSequenceDet(false);
            this.gssContext.requestConf(false);
            this.gssContext.requestInteg(false);
            this.gssContext.requestReplayDet(false);
    
            // per spec these should be set
            this.gssContext.requestMutualAuth(true);
            this.gssContext.requestCredDeleg(true);
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MD4.java

         * Resets this object disregarding any temporary data present at the
         * time of the invocation of this call.
         */
        public void engineReset () {
            // initial values of MD4 i.e. A, B, C, D
            // as per rfc-1320; they are low-order byte first
            context[0] = 0x67452301;
            context[1] = 0xEFCDAB89;
            context[2] = 0x98BADCFE;
            context[3] = 0x10325476;
            count = 0L;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
Back to top