|
1 | | -package org.bouncycastle.crypto.split; |
| 1 | +package org.bouncycastle.kmip.wire; |
2 | 2 |
|
3 | 3 | import java.io.InputStream; |
4 | 4 | import java.util.ArrayList; |
|
15 | 15 | import javax.xml.stream.events.StartElement; |
16 | 16 | import javax.xml.stream.events.XMLEvent; |
17 | 17 |
|
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; |
58 | 58 | import org.bouncycastle.util.encoders.Hex; |
59 | 59 |
|
60 | 60 | public class KMIPInputStream |
|
0 commit comments