Skip to content

Commit c56807f

Browse files
committed
fix Check operation code: 0x1C → 0x09 per KMIP 1.4 spec
1 parent 3680d24 commit c56807f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Tag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ final class Operation
6767
public const LOCATE = 0x00000008;
6868
public const ACTIVATE = 0x00000012;
6969
public const DESTROY = 0x00000014;
70-
public const CHECK = 0x0000001C;
70+
public const CHECK = 0x00000009;
7171
}
7272

7373
final class ObjectType

tests/TagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function testOperationDestroy(): void
9797

9898
public function testOperationCheck(): void
9999
{
100-
$this->assertSame(0x0000001C, Operation::CHECK);
100+
$this->assertSame(0x00000009, Operation::CHECK);
101101
}
102102

103103
public function testOperationNoDuplicateValues(): void

0 commit comments

Comments
 (0)