Examples of SHA1


Examples of org.apache.sshd.common.digest.SHA1

        session = (ServerSession) s;
        this.V_S = V_S;
        this.V_C = V_C;
        this.I_S = I_S;
        this.I_C = I_C;
        sha = new SHA1();
        sha.init();
        dh = new DH();
        initDH(dh);
        f = dh.getE();
    }
View Full Code Here

Examples of org.gudy.azureus2.core3.util.SHA1

  public static void runTests() {
    try {
   
      //SHA1 sha1Jmule = new SHA1();
      MessageDigest sha1Sun = MessageDigest.getInstance("SHA-1");
      SHA1 sha1Gudy = new SHA1();
      //SHA1Az shaGudyResume = new SHA1Az();
   
      ByteBuffer buffer = ByteBuffer.allocate( 1024 * 1024 );
   
      File dir = new File( dirname );
      File[] files = dir.listFiles();

      for (int i=0; i < files.length; i++) {
        FileChannel fc = new RandomAccessFile( files[i], "r" ).getChannel();
       
        System.out.println("Testing " + files[i].getName() + " ...");
       
        while( fc.position() < fc.size() ) {
         fc.read( buffer );
         buffer.flip();
        
         byte[] raw = new byte[ buffer.limit() ];
         System.arraycopy( buffer.array(), 0, raw, 0, raw.length );

         sha1Gudy.update( buffer );
         sha1Gudy.saveState();
         ByteBuffer bb = ByteBuffer.wrap( new byte[56081] );
         sha1Gudy.digest( bb );
         sha1Gudy.restoreState();
        
         sha1Sun.update( raw );
        
         buffer.clear();
        }
       
        byte[] sun = sha1Sun.digest();
        sha1Sun.reset();
       
        byte[] gudy = sha1Gudy.digest();
        sha1Gudy.reset();
       
        if ( Arrays.equals( sun, gudy ) ) {
          System.out.println("  SHA1-Gudy: OK");
        }
        else {
View Full Code Here

Examples of org.gudy.azureus2.core3.util.SHA1

  {
   
    Random rnd = new Random();

    SHA1Old oldsha = new SHA1Old();
    SHA1 newsha = new SHA1();

    ByteBuffer dBuffer = ByteBuffer.allocateDirect(BUFF_MAX_SIZE);
    ByteBuffer hBuffer = ByteBuffer.allocate(BUFF_MAX_SIZE);

    for (int i = 0; i < BUFF_MAX_SIZE; i++)
    {
      byte b = (byte) (rnd.nextInt()&0xFF);
      dBuffer.put(b);
    }
   
    dBuffer.rewind();
    hBuffer.put(dBuffer);
    hBuffer.rewind();
    dBuffer.rewind();
   

    // allow time for setting thread to high-priority
    try
    {
      System.out.println("Setting high thread priority to decrease test jitter");
      Thread.currentThread().setPriority(Thread.MAX_PRIORITY);
      Thread.sleep(2000);
    } catch (Exception ignore)
    {
    }

    for (int t = 0; t < TESTS.length; t++)
    {

      int buffsize = TESTS[t] * 1024;

      dBuffer.position(0);
      dBuffer.limit(buffsize);
      hBuffer.position(0);
      hBuffer.limit(buffsize);

     
      int loops = LOOPS[t]/TEST_SPEED_FACTOR;

      String info = " [" + buffsize / 1024 + "KB, " + loops + "x] = ";

      double totalMBytes = ((double) buffsize / (1024 * 1024)) * loops;

     
      long time;
      double speed;

     
      System.out.println("direct:");
     
      System.out.print("Old SHA1");
      time = System.currentTimeMillis();
      for (int i = 0; i < loops; i++)
      {
        oldsha.reset();
        oldsha.digest(dBuffer);
      }
      time = System.currentTimeMillis() - time;
      speed = totalMBytes / (time / (double)1024);
      System.out.println(info + time + " ms @ " + speed + " MiB/s");

     
      System.out.print("New SHA1 ");
      time = System.currentTimeMillis();
      for (int i = 0; i < loops; i++)
      {
        newsha.reset();
        newsha.digest(dBuffer);
      }
      time = System.currentTimeMillis() - time;
      speed = totalMBytes / (time / (double)1024);
      System.out.println(info + time + " ms @ " + speed + " MiB/s");

      System.out.println("heap:");
     
      System.out.print("Old SHA1");
      time = System.currentTimeMillis();
      for (int i = 0; i < loops; i++)
      {
        oldsha.reset();
        oldsha.digest(hBuffer);
      }
      time = System.currentTimeMillis() - time;
      speed = totalMBytes / (time / (double)1024);
      System.out.println(info + time + " ms @ " + speed + " MiB/s");

     
      System.out.print("New SHA1 ");
      time = System.currentTimeMillis();
      for (int i = 0; i < loops; i++)
      {
        newsha.reset();
        newsha.digest(hBuffer);
      }
      time = System.currentTimeMillis() - time;
      speed = totalMBytes / (time / (double)1024);
      System.out.println(info + time + " ms @ " + speed + " MiB/s");

      System.out.println();
    }
   
   
    System.out.println("performing randomized buffer windowing checks, this may take a while");
   
    byte[] oldd;
    byte[] newd;
    byte[] oldh;
    byte[] newh;
   
    int size;
    int offset;
   
    ByteBuffer dview;
    ByteBuffer hview;
   
    for(int i=0;i<LOOPS[1]/TEST_SPEED_FACTOR;i++)
    {
      size = rnd.nextInt(BUFF_MAX_SIZE);
      offset = rnd.nextInt(BUFF_MAX_SIZE-size-1);
     
      hBuffer.limit(offset+size);
      hBuffer.position(offset);
      dBuffer.limit(offset+size);
      dBuffer.position(offset);
     
      oldsha.reset();
      newsha.reset();
      oldh = oldsha.digest(hBuffer);
      newh = newsha.digest(hBuffer);
      oldsha.reset();
      newsha.reset();
      oldd = oldsha.digest(dBuffer);
      newd = newsha.digest(dBuffer);
     
     
      if(!Arrays.equals(oldh, newh) || !Arrays.equals(oldd, newd) || !Arrays.equals(oldd, oldh))
      {
        System.out.println("hash mismatch at offset: "+offset+" size: "+size);
        System.out.println("\t\t"+ByteFormatter.nicePrint(oldh));
        System.out.println("\t\t"+ByteFormatter.nicePrint(newh));
        System.out.println("\t\t"+ByteFormatter.nicePrint(oldd));
        System.out.println("\t\t"+ByteFormatter.nicePrint(newd));
      }
       
      if(hBuffer.limit() != offset+size || dBuffer.limit() != offset+size || hBuffer.position() != offset || dBuffer.position() != offset)
        System.out.println("buffer does not match its original state");
     
      dview = dBuffer.slice();
      hview = hBuffer.slice();
     
      oldsha.reset();
      newsha.reset();
      oldh = oldsha.digest(hview);
      newh = newsha.digest(hview);
      oldsha.reset();
      newsha.reset();
      oldd = oldsha.digest(dview);
      newd = newsha.digest(dview);
     
     
      if(!Arrays.equals(oldh, newh) || !Arrays.equals(oldd, newd) || !Arrays.equals(oldd, oldh))
      {
        System.out.println("(view) hash mismatch at offset: "+offset+" size: "+size);
View Full Code Here

Examples of org.gudy.azureus2.core3.util.SHA1

      String persist_pw_key_type  = CryptoManager.CRYPTO_CONFIG_PREFIX + "pw." + handler + ".persist_type";
 
      byte[]  salt    = getPasswordSalt();
      byte[]  pw_bytes  = new String( pw_chars ).getBytes( "UTF8" );
     
      SHA1 sha1 = new SHA1();
     
      sha1.update( ByteBuffer.wrap( salt ));
      sha1.update( ByteBuffer.wrap( pw_bytes ));
     
      String  encoded_pw = ByteFormatter.encodeString( sha1.digest());

      COConfigurationManager.setParameter( persist_timeout_key, timeout );
      COConfigurationManager.setParameter( persist_pw_key_type, pw_type );
      COConfigurationManager.setParameter( persist_pw_key, encoded_pw );
View Full Code Here

Examples of org.gudy.azureus2.core3.util.SHA1

            // transform password so we can persist if needed
         
          byte[]  salt    = getPasswordSalt();
          byte[]  pw_bytes  = new String( pw_chars ).getBytes( "UTF8" );
         
          SHA1 sha1 = new SHA1();
         
          sha1.update( ByteBuffer.wrap( salt ));
          sha1.update( ByteBuffer.wrap( pw_bytes ));
         
          String  encoded_pw = ByteFormatter.encodeString( sha1.digest());
         
          if ( tester != null && !tester.testPassword( encoded_pw.toCharArray())){
         
              // retry
           
View Full Code Here

Examples of org.gudy.azureus2.core3.util.SHA1

     
      if ( t != null ){
       
        byte[]  hash = t.getHash();
       
        SHA1  sha1 = new SHA1();
     
        sha1.update( ByteBuffer.wrap( IV ));
        sha1.update( ByteBuffer.wrap( hash ));
       
        id = new HashWrapper( sha1.digest() );
      }
    }
View Full Code Here

Examples of railo.runtime.crypt.SHA1



    // hash down the password to a 160bit key

    SHA1 hasher = new SHA1();

    hasher.update(sPassword);

    hasher.finalize();



    // setup the encryptor (use a dummy IV)

    m_bfish = new BlowfishCBC(hasher.getDigest(), 0);

    hasher.clear();

  };
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.