Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ms (0.2 sec)

  1. src/main/java/jcifs/pac/PacMac.java

            switch ( ms_usage ) {
            case 3:
                ms_usage = 8;
            case 9:
                ms_usage = 8;
            case 23:
                ms_usage = 13;
            }
            return ms_usage;
        }
    
    
        public static byte[] calculateMacHMACAES ( int usage, KerberosKey baseKey, byte[] input ) throws GeneralSecurityException {
            byte[] cst = new byte[] {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/PACTest.java

        public void testParseSPENGOToken() throws Exception {
            /*
            negTokenInit
        mechTypes: 2 items
            MechType: 1.2.840.113554.1.2.2 (KRB5 - Kerberos 5)
            MechType: 1.2.840.48018.1.2.2 (MS KRB5 - Microsoft Kerberos 5)
        Padding: 6
        reqFlags: c0
        mechToken: 60820b2906092a864886f71201020201006e820b1830820b14a003020105a10302010ea2…
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Context.java

        private static final ASN1ObjectIdentifier KRB5_MS_MECH_OID;
        static final ASN1ObjectIdentifier[] SUPPORTED_MECHS;
        private static final Oid JGSS_KRB5_NAME_OID;
        private static final Oid JGSS_KRB5_MECH_OID;
    
        static {
            KRB5_MECH_OID = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2");
            KRB5_MS_MECH_OID = new ASN1ObjectIdentifier("1.2.840.48018.1.2.2");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/mime.map

    application/x-troff-me         me               # Troff with ME macros
    application/x-troff-ms         ms               # Troff with MS macros
    application/x-ustar            ustar            # Ustar file
    application/vnd.ms-access      mdb mda mde      # MS Access
    application/vnd.ms-project     mpp              # MS Project
    application/x-wais-source      src              # WAIS Sources
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                        ((SmbComTransactionResponse)resp).nextElement();
                    }
                }
    
                /* Verification fails (w/ W2K3 server at least) if status is not 0. This
                 * suggests MS doesn't compute the signature (correctly) for error responses
                 * (perhaps for DOS reasons).
                 */
                if (digest != null && resp.errorCode == 0) {
                    digest.verify( BUF, 4, resp );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        @Override
        public boolean verifySignature ( byte[] buffer, int i, int size ) {
            /*
             * Verification fails (w/ W2K3 server at least) if status is not 0. This
             * suggests MS doesn't compute the signature (correctly) for error responses
             * (perhaps for DOS reasons).
             */
            /*
             * Looks like the failure case also is just reflecting back the signature we sent
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
Back to top