Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Package name shuffle.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed May 27, 2014
1 parent a7c20ee commit 088ab00
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.KeyInterface;
import java.util.ArrayList;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.KeyInterface;
import java.util.List;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.factory.KeyFactory;
import co.lqnt.lockbox.key.factory.KeyFactoryInterface;
import co.lqnt.lockbox.key.exception.InvalidIterationsException;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;
import co.lqnt.lockbox.key.exception.InvalidSaltSizeException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.factory;

import co.lqnt.lockbox.key.Key;
import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.factory;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;
import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.generator;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.factory.KeyFactory;
import co.lqnt.lockbox.key.factory.KeyFactoryInterface;
import co.lqnt.lockbox.key.exception.InvalidAuthSecretSizeException;
import co.lqnt.lockbox.key.exception.InvalidEncryptSecretSizeException;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.generator;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.exception.InvalidKeyParameterException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.Key;
import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.deriver.DerivedKeyData;
import com.google.common.primitives.Bytes;
import java.nio.charset.Charset;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.deriver;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.deriver.KeyDeriver;
import co.lqnt.lockbox.key.deriver.DerivedKeyDataInterface;
import co.lqnt.lockbox.key.factory.KeyFactoryInterface;
import co.lqnt.lockbox.key.factory.KeyFactory;
import co.lqnt.lockbox.key.exception.InvalidIterationsException;
import co.lqnt.lockbox.key.exception.InvalidSaltSizeException;
import co.lqnt.lockbox.random.RandomSourceInterface;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.factory;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.factory.KeyFactory;
import com.google.common.primitives.Bytes;
import java.nio.charset.Charset;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
* that was distributed with this source code.
*/

package co.lqnt.lockbox.key;
package co.lqnt.lockbox.key.generator;

import co.lqnt.lockbox.key.KeyInterface;
import co.lqnt.lockbox.key.generator.KeyGenerator;
import co.lqnt.lockbox.key.factory.KeyFactoryInterface;
import co.lqnt.lockbox.key.factory.KeyFactory;
import co.lqnt.lockbox.key.exception.InvalidAuthSecretSizeException;
import co.lqnt.lockbox.key.exception.InvalidEncryptSecretSizeException;
import co.lqnt.lockbox.random.RandomSourceInterface;
Expand Down

0 comments on commit 088ab00

Please sign in to comment.