Examples of PrincipalName


Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        EncryptedData encryptedTicketPart = lockBox.seal( serverKey, encTicketPart,
            KeyUsage.AS_OR_TGS_REP_TICKET_WITH_SRVKEY );

        Ticket ticket = new Ticket();
        ticket.setTktVno( 5 );
        ticket.setSName( new PrincipalName( serverPrincipal.getName(), PrincipalNameType.KRB_NT_PRINCIPAL ) );
        ticket.setRealm( serverPrincipal.getRealm() );
        ticket.setEncPart( encryptedTicketPart );

        ticket.setEncTicketPart( encTicketPart );
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        Authenticator authenticator = new Authenticator();

        clientMicroSeconds = random.nextInt( 999999 );

        authenticator.setVersionNumber( 5 );
        authenticator.setCName( new PrincipalName( clientPrincipal.getName(), clientPrincipal.getNameType() ) );
        authenticator.setCRealm( clientPrincipal.getRealm() );
        authenticator.setCTime( now );
        authenticator.setCusec( clientMicroSeconds );
        authenticator.setSubKey( subSessionKey );
        authenticator.setSeqNumber( sequenceNumber );
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

    }


    protected PrincipalName getPrincipalName( String name )
    {
        PrincipalName principalName = new PrincipalName();
        principalName.addName( name );
        principalName.setNameType( PrincipalNameType.KRB_NT_PRINCIPAL );

        return principalName;
    }
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        this.secondTicket = secondTicket;
    }

    public Credentials( TgTicket tgt )
    {
      PrincipalName clientPrincipal = null;
      try {
      clientPrincipal = new PrincipalName( tgt.getClientName(),
          PrincipalNameType.KRB_NT_PRINCIPAL );
    } catch (ParseException e) {
      throw new RuntimeException( "Invalid tgt with bad client name" );
    }
     
      clientPrincipal.setRealm( tgt.getRealm() );
     
      init( tgt, clientPrincipal );
    }
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

    public void read(CredentialsCache cache) throws IOException
    {  
      int version;
      List<Tag> tags;
      PrincipalName principal;
      Credentials cred;
     
        version = readVersion();
        cache.setVersion( version );
       
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

    }
   
    private PrincipalName readPrincipal( int version ) throws IOException
    {
        int type, length;
        PrincipalName pname;

        if (version == CredentialsCacheConstants.FCC_FVNO_1)
        {
            type = CredentialsCacheConstants.NT_UNKNOWN;
        }
        else
        {
            type = readInt();
        }
        length = readInt();
       
        if (version == CredentialsCacheConstants.FCC_FVNO_1)
        {
            length--;
        }
       
        String realm = readCountedString();
       
        String[] result = new String[length];
        for ( int i = 0; i < length; i++ )
        {
          result[i] = readCountedString();
        }
        pname = new PrincipalName(result, type);
        if ( isRealm( realm ) )
        {
          pname.setRealm( realm );
        }

        return pname;
    }
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        return ticketFlags;
    }

    private Credentials readCredentials( int version ) throws IOException
    {
        PrincipalName cpname = readPrincipal(version);
        PrincipalName spname = readPrincipal(version);
       
        if ( cpname == null || spname == null )
        {
          throw new IOException("Invalid client principal name or service principal name");
        }
       
        EncryptionKey key = readKey(version);

        KerberosTime[] times = readKerberosTimes();
        KerberosTime authtime = times[0];
        KerberosTime starttime = times[1];
        KerberosTime endtime = times[2];
        KerberosTime renewTill = times[3];
       
        boolean skey = readskey();
       
        int flags = readFlags();
        TicketFlags tFlags = new TicketFlags(flags);
        HostAddress addr[] = readAddr();
        HostAddresses addrs = null;
        if (addr != null)
        {
            addrs = new HostAddresses(addr);
        }
       
        AuthorizationDataEntry[] auDataEntries = readAuth();
        AuthorizationData auData = null;
        if (auDataEntries != null)
        {
          auData = new AuthorizationData();
          for (AuthorizationDataEntry ade : auDataEntries)
          {
            auData.addEntry(ade);
          }
        }
       
        byte[] ticketData = readData();
        byte[] ticketData2 = readData();

        if ( version != CredentialsCacheConstants.FCC_FVNO_1 &&
            spname.getNameType().getValue() == CredentialsCacheConstants.NT_UNKNOWN )
        {
          // skip krb5_ccache_conf_data/fast_avail/krbtgt/REALM@REALM in MIT KRB5
          return null;
        }
       
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        KerberosTime now = new KerberosTime();

        krbError.setErrorCode( ErrorType.getTypeByValue( exception.getErrorCode() ) );
        krbError.setEText( exception.getLocalizedMessage() );
        krbError.setSName( new PrincipalName( principal ) );
        krbError.setRealm( principal.getRealm() );
        krbError.setSTime( now );
        krbError.setSusec( 0 );
        krbError.setEData( exception.getExplanatoryData() );
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        Ticket ticket = ( ( TicketContainer ) ticketContainer ).getTicket();

        assertEquals( 5, ticket.getTktVno() );
        assertEquals( "EXAMPLE.COM", ticket.getRealm() );

        PrincipalName principalName = ticket.getSName();

        assertNotNull( principalName );
        assertEquals( PrincipalNameType.KRB_NT_PRINCIPAL, principalName.getNameType() );
        assertTrue( principalName.getNames().contains( "hnelson" ) );

        EncryptedData encryptedData = ticket.getEncPart();

        assertNotNull( encryptedData );
        assertEquals( EncryptionType.AES256_CTS_HMAC_SHA1_96, encryptedData.getEType() );
View Full Code Here

Examples of org.apache.directory.shared.kerberos.components.PrincipalName

        KdcReqBody body = new KdcReqBody();

        body.setKdcOptions( new KdcOptions( new byte[]
            { 0x00, 0x01, 0x04, 0x00, 0x32 } ) );
        body.setCName( new PrincipalName( "client", PrincipalNameType.KRB_NT_ENTERPRISE ) );
        body.setRealm( "EXAMPLE.COM" );
        body.setSName( new PrincipalName( "server", PrincipalNameType.KRB_NT_ENTERPRISE ) );

        body.setFrom( new KerberosTime( System.currentTimeMillis() ) );
        body.setTill( new KerberosTime( System.currentTimeMillis() ) );
        body.setRtime( new KerberosTime( System.currentTimeMillis() ) );
        body.setNonce( 12345 );

        body.addEType( EncryptionType.AES256_CTS_HMAC_SHA1_96 );
        body.addEType( EncryptionType.DES3_CBC_MD5 );
        body.addEType( EncryptionType.AES128_CTS_HMAC_SHA1_96 );

        HostAddresses addresses = new HostAddresses();
        addresses.addHostAddress( new HostAddress( HostAddrType.ADDRTYPE_INET, "192.168.0.1".getBytes() ) );
        addresses.addHostAddress( new HostAddress( HostAddrType.ADDRTYPE_INET, "192.168.0.2".getBytes() ) );
        body.setAddresses( addresses );

        EncryptedData encAuthorizationData = new EncryptedData( EncryptionType.AES128_CTS_HMAC_SHA1_96,
            "abcdef".getBytes() );
        body.setEncAuthorizationData( encAuthorizationData );

        Ticket ticket1 = new Ticket();
        ticket1.setTktVno( 5 );
        ticket1.setRealm( "EXAMPLE.COM" );
        ticket1.setSName( new PrincipalName( "client", PrincipalNameType.KRB_NT_PRINCIPAL ) );
        ticket1.setEncPart( new EncryptedData( EncryptionType.AES128_CTS_HMAC_SHA1_96, "abcdef".getBytes() ) );

        body.addAdditionalTicket( ticket1 );

        Ticket ticket2 = new Ticket();
        ticket2.setTktVno( 5 );
        ticket2.setRealm( "EXAMPLE.COM" );
        ticket2.setSName( new PrincipalName( "server", PrincipalNameType.KRB_NT_PRINCIPAL ) );
        ticket2.setEncPart( new EncryptedData( EncryptionType.AES128_CTS_HMAC_SHA1_96, "abcdef".getBytes() ) );

        body.addAdditionalTicket( ticket2 );

        // Check the encoding
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.