Skip to content

Commit 7a6b635

Browse files
committed
fixed package name issues.
1 parent e271c4f commit 7a6b635

File tree

65 files changed

+161
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+161
-161
lines changed

kmip/src/main/java/org/bouncycastle/kmip/wire/KMIPInputException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split;
1+
package org.bouncycastle.kmip.wire;
22

33
import java.io.IOException;
44

kmip/src/main/java/org/bouncycastle/kmip/wire/KMIPInputStream.java

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split;
1+
package org.bouncycastle.kmip.wire;
22

33
import java.io.InputStream;
44
import java.util.ArrayList;
@@ -15,46 +15,46 @@
1515
import javax.xml.stream.events.StartElement;
1616
import javax.xml.stream.events.XMLEvent;
1717

18-
import org.bouncycastle.crypto.split.attribute.KMIPName;
19-
import org.bouncycastle.crypto.split.attribute.KMIPUniqueIdentifier;
20-
import org.bouncycastle.crypto.split.attribute.KMIPVendorAttribute;
21-
import org.bouncycastle.crypto.split.enumeration.KMIPCryptographicAlgorithm;
22-
import org.bouncycastle.crypto.split.enumeration.KMIPCryptographicUsageMask;
23-
import org.bouncycastle.crypto.split.enumeration.KMIPEnumeration;
24-
import org.bouncycastle.crypto.split.enumeration.KMIPKeyFormatType;
25-
import org.bouncycastle.crypto.split.enumeration.KMIPNameType;
26-
import org.bouncycastle.crypto.split.enumeration.KMIPObjectType;
27-
import org.bouncycastle.crypto.split.enumeration.KMIPOperation;
28-
import org.bouncycastle.crypto.split.enumeration.KMIPResultReason;
29-
import org.bouncycastle.crypto.split.enumeration.KMIPResultStatus;
30-
import org.bouncycastle.crypto.split.enumeration.KMIPSplitKeyMethod;
31-
import org.bouncycastle.crypto.split.message.KMIPBatchItem;
32-
import org.bouncycastle.crypto.split.message.KMIPHeader;
33-
import org.bouncycastle.crypto.split.message.KMIPMessage;
34-
import org.bouncycastle.crypto.split.message.KMIPPayload;
35-
import org.bouncycastle.crypto.split.message.KMIPProtocolVersion;
36-
import org.bouncycastle.crypto.split.message.KMIPRequestBatchItem;
37-
import org.bouncycastle.crypto.split.message.KMIPRequestHeader;
38-
import org.bouncycastle.crypto.split.message.KMIPRequestMessage;
39-
import org.bouncycastle.crypto.split.message.KMIPRequestPayload;
40-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadCreate;
41-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadCreateSplitKey;
42-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadDefault;
43-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadGet;
44-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadJoinSplitKey;
45-
import org.bouncycastle.crypto.split.message.KMIPRequestPayloadRegister;
46-
import org.bouncycastle.crypto.split.message.KMIPResponseBatchItem;
47-
import org.bouncycastle.crypto.split.message.KMIPResponseHeader;
48-
import org.bouncycastle.crypto.split.message.KMIPResponseMessage;
49-
import org.bouncycastle.crypto.split.message.KMIPResponsePayload;
50-
import org.bouncycastle.crypto.split.message.KMIPResponsePayloadCreate;
51-
import org.bouncycastle.crypto.split.message.KMIPResponsePayloadCreateSplitKey;
52-
import org.bouncycastle.crypto.split.message.KMIPResponsePayloadDefault;
53-
import org.bouncycastle.crypto.split.message.KMIPResponsePayloadGet;
54-
import org.bouncycastle.crypto.split.object.KMIPKeyBlock;
55-
import org.bouncycastle.crypto.split.object.KMIPObject;
56-
import org.bouncycastle.crypto.split.object.KMIPSplitKey;
57-
import org.bouncycastle.crypto.split.object.KMIPSymmetricKey;
18+
import org.bouncycastle.kmip.wire.attribute.KMIPName;
19+
import org.bouncycastle.kmip.wire.attribute.KMIPUniqueIdentifier;
20+
import org.bouncycastle.kmip.wire.attribute.KMIPVendorAttribute;
21+
import org.bouncycastle.kmip.wire.enumeration.KMIPCryptographicAlgorithm;
22+
import org.bouncycastle.kmip.wire.enumeration.KMIPCryptographicUsageMask;
23+
import org.bouncycastle.kmip.wire.enumeration.KMIPEnumeration;
24+
import org.bouncycastle.kmip.wire.enumeration.KMIPKeyFormatType;
25+
import org.bouncycastle.kmip.wire.enumeration.KMIPNameType;
26+
import org.bouncycastle.kmip.wire.enumeration.KMIPObjectType;
27+
import org.bouncycastle.kmip.wire.enumeration.KMIPOperation;
28+
import org.bouncycastle.kmip.wire.enumeration.KMIPResultReason;
29+
import org.bouncycastle.kmip.wire.enumeration.KMIPResultStatus;
30+
import org.bouncycastle.kmip.wire.enumeration.KMIPSplitKeyMethod;
31+
import org.bouncycastle.kmip.wire.message.KMIPBatchItem;
32+
import org.bouncycastle.kmip.wire.message.KMIPHeader;
33+
import org.bouncycastle.kmip.wire.message.KMIPMessage;
34+
import org.bouncycastle.kmip.wire.message.KMIPPayload;
35+
import org.bouncycastle.kmip.wire.message.KMIPProtocolVersion;
36+
import org.bouncycastle.kmip.wire.message.KMIPRequestBatchItem;
37+
import org.bouncycastle.kmip.wire.message.KMIPRequestHeader;
38+
import org.bouncycastle.kmip.wire.message.KMIPRequestMessage;
39+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayload;
40+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadCreate;
41+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadCreateSplitKey;
42+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadDefault;
43+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadGet;
44+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadJoinSplitKey;
45+
import org.bouncycastle.kmip.wire.message.KMIPRequestPayloadRegister;
46+
import org.bouncycastle.kmip.wire.message.KMIPResponseBatchItem;
47+
import org.bouncycastle.kmip.wire.message.KMIPResponseHeader;
48+
import org.bouncycastle.kmip.wire.message.KMIPResponseMessage;
49+
import org.bouncycastle.kmip.wire.message.KMIPResponsePayload;
50+
import org.bouncycastle.kmip.wire.message.KMIPResponsePayloadCreate;
51+
import org.bouncycastle.kmip.wire.message.KMIPResponsePayloadCreateSplitKey;
52+
import org.bouncycastle.kmip.wire.message.KMIPResponsePayloadDefault;
53+
import org.bouncycastle.kmip.wire.message.KMIPResponsePayloadGet;
54+
import org.bouncycastle.kmip.wire.object.KMIPKeyBlock;
55+
import org.bouncycastle.kmip.wire.object.KMIPObject;
56+
import org.bouncycastle.kmip.wire.object.KMIPSplitKey;
57+
import org.bouncycastle.kmip.wire.object.KMIPSymmetricKey;
5858
import org.bouncycastle.util.encoders.Hex;
5959

6060
public class KMIPInputStream

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPAttribute.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

33
public interface KMIPAttribute
44
{

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPCryptographicObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

33
public abstract class KMIPCryptographicObject
44
{

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

3-
import org.bouncycastle.crypto.split.enumeration.KMIPNameType;
3+
import org.bouncycastle.kmip.wire.enumeration.KMIPNameType;
44

55
/**
66
* Represents the Name attribute used to identify and locate an object in the key management system.

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPSymmetricKeyAttribute.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

3-
import org.bouncycastle.crypto.split.enumeration.KMIPCryptographicAlgorithm;
3+
import org.bouncycastle.kmip.wire.enumeration.KMIPCryptographicAlgorithm;
44

55
public class KMIPSymmetricKeyAttribute
66
extends KMIPCryptographicObject

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPUniqueIdentifier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

33

4-
import org.bouncycastle.crypto.split.enumeration.KMIPUniqueIdentifierEnum;
4+
import org.bouncycastle.kmip.wire.enumeration.KMIPUniqueIdentifierEnum;
55

66
public class KMIPUniqueIdentifier
77
{

kmip/src/main/java/org/bouncycastle/kmip/wire/attribute/KMIPVendorAttribute.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split.attribute;
1+
package org.bouncycastle.kmip.wire.attribute;
22

33

44
/**

kmip/src/main/java/org/bouncycastle/kmip/wire/enumeration/KMIPAttestationType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split.enumeration;
1+
package org.bouncycastle.kmip.wire.enumeration;
22

33
public enum KMIPAttestationType
44
implements KMIPEnumeration

kmip/src/main/java/org/bouncycastle/kmip/wire/enumeration/KMIPBlockCipherMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.bouncycastle.crypto.split.enumeration;
1+
package org.bouncycastle.kmip.wire.enumeration;
22

33
/**
44
* The BlockCipherMode enum represents various block cipher modes that can be used

0 commit comments

Comments
 (0)