icsneopy 1.1.0.post1.dev22__cp39-cp39-macosx_11_0_arm64.whl → 1.1.0.post1.dev46__cp39-cp39-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of icsneopy might be problematic. Click here for more details.
- icsneopy/icsneopy.cpython-39-darwin.so +0 -0
- icsneopy/icsneopy.pyi +172 -161
- {icsneopy-1.1.0.post1.dev22.dist-info → icsneopy-1.1.0.post1.dev46.dist-info}/METADATA +3 -1
- icsneopy-1.1.0.post1.dev46.dist-info/RECORD +8 -0
- icsneopy-1.1.0.post1.dev22.dist-info/RECORD +0 -8
- {icsneopy-1.1.0.post1.dev22.dist-info → icsneopy-1.1.0.post1.dev46.dist-info}/WHEEL +0 -0
- {icsneopy-1.1.0.post1.dev22.dist-info → icsneopy-1.1.0.post1.dev46.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
icsneopy/icsneopy.pyi
CHANGED
|
@@ -257,6 +257,7 @@ class ChipID:
|
|
|
257
257
|
RADGALAXY2_SYSMON_CHIP: ClassVar[ChipID] = ...
|
|
258
258
|
RADGalaxy_FFG_Zynq: ClassVar[ChipID] = ...
|
|
259
259
|
RADGalaxy_ZYNQ: ClassVar[ChipID] = ...
|
|
260
|
+
RADGemini_MCHIP: ClassVar[ChipID] = ...
|
|
260
261
|
RADGigastar2_ZYNQ: ClassVar[ChipID] = ...
|
|
261
262
|
RADGigastar_FFG_ZYNQ: ClassVar[ChipID] = ...
|
|
262
263
|
RADGigastar_USBZ_Z7007S_ZYNQ: ClassVar[ChipID] = ...
|
|
@@ -429,7 +430,7 @@ class Device:
|
|
|
429
430
|
def supports_tc10(self) -> bool: ...
|
|
430
431
|
def transmit(self, arg0: Frame) -> bool: ...
|
|
431
432
|
def upload_coremini(self, arg0: str, arg1: Disk.MemoryType) -> bool: ...
|
|
432
|
-
def write_macsec_config(self, arg0:
|
|
433
|
+
def write_macsec_config(self, arg0: MACsecConfig) -> bool: ...
|
|
433
434
|
@property
|
|
434
435
|
def settings(self): ...
|
|
435
436
|
|
|
@@ -476,6 +477,7 @@ class DeviceType:
|
|
|
476
477
|
RADEpsilonXL: ClassVar[DeviceType.Enum] = ...
|
|
477
478
|
RADGalaxy: ClassVar[DeviceType.Enum] = ...
|
|
478
479
|
RADGalaxy2: ClassVar[DeviceType.Enum] = ...
|
|
480
|
+
RADGemini: ClassVar[DeviceType.Enum] = ...
|
|
479
481
|
RADGigastar: ClassVar[DeviceType.Enum] = ...
|
|
480
482
|
RADGigastar2: ClassVar[DeviceType.Enum] = ...
|
|
481
483
|
RADIO_CANHUB: ClassVar[DeviceType.Enum] = ...
|
|
@@ -571,6 +573,7 @@ class EthernetStatusMessage(Message):
|
|
|
571
573
|
LinkModeAuto: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
572
574
|
LinkModeInvalid: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
573
575
|
LinkModeMaster: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
576
|
+
LinkModeNone: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
574
577
|
LinkModeSlave: ClassVar[EthernetStatusMessage.LinkMode] = ...
|
|
575
578
|
__entries: ClassVar[dict] = ...
|
|
576
579
|
def __init__(self, value: int) -> None: ...
|
|
@@ -860,85 +863,85 @@ class GPTPStatus(Message):
|
|
|
860
863
|
class ClockQuality:
|
|
861
864
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
862
865
|
@property
|
|
863
|
-
def
|
|
866
|
+
def clock_accuracy(self) -> int: ...
|
|
864
867
|
@property
|
|
865
|
-
def
|
|
868
|
+
def clock_class(self) -> int: ...
|
|
866
869
|
@property
|
|
867
|
-
def
|
|
870
|
+
def offset_scaled_log_variance(self) -> int: ...
|
|
868
871
|
|
|
869
872
|
class CurrentDS:
|
|
870
873
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
871
874
|
@property
|
|
872
|
-
def
|
|
875
|
+
def gm_change_count(self) -> int: ...
|
|
873
876
|
@property
|
|
874
|
-
def
|
|
877
|
+
def gm_time_base_indicator(self) -> int: ...
|
|
875
878
|
@property
|
|
876
|
-
def
|
|
879
|
+
def lastgm_freq_change(self) -> float: ...
|
|
877
880
|
@property
|
|
878
|
-
def
|
|
881
|
+
def lastgm_phase_change(self) -> GPTPStatus.ScaledNanoSeconds: ...
|
|
879
882
|
@property
|
|
880
|
-
def
|
|
883
|
+
def offset_from_master(self) -> int: ...
|
|
881
884
|
@property
|
|
882
|
-
def
|
|
885
|
+
def steps_removed(self) -> int: ...
|
|
883
886
|
@property
|
|
884
|
-
def
|
|
887
|
+
def time_of_lastgm_change_event(self) -> int: ...
|
|
885
888
|
@property
|
|
886
|
-
def
|
|
889
|
+
def time_of_lastgm_freq_change_event(self) -> int: ...
|
|
887
890
|
@property
|
|
888
|
-
def
|
|
891
|
+
def time_of_lastgm_phase_change_event(self) -> int: ...
|
|
889
892
|
|
|
890
893
|
class ParentDS:
|
|
891
894
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
892
895
|
@property
|
|
893
|
-
def
|
|
896
|
+
def cumulative_rate_ratio(self) -> int: ...
|
|
894
897
|
@property
|
|
895
|
-
def
|
|
898
|
+
def gm_clock_quality_clock_accuracy(self) -> int: ...
|
|
896
899
|
@property
|
|
897
|
-
def
|
|
900
|
+
def gm_clock_quality_clock_class(self) -> int: ...
|
|
898
901
|
@property
|
|
899
|
-
def
|
|
902
|
+
def gm_clock_quality_offset_scaled_log_variance(self) -> int: ...
|
|
900
903
|
@property
|
|
901
|
-
def
|
|
904
|
+
def gm_priority1(self) -> int: ...
|
|
902
905
|
@property
|
|
903
|
-
def
|
|
906
|
+
def gm_priority2(self) -> int: ...
|
|
904
907
|
@property
|
|
905
|
-
def
|
|
908
|
+
def grandmaster_identity(self) -> int: ...
|
|
906
909
|
@property
|
|
907
|
-
def
|
|
910
|
+
def parent_port_identity(self) -> GPTPStatus.PortID: ...
|
|
908
911
|
|
|
909
912
|
class PortID:
|
|
910
913
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
911
914
|
@property
|
|
912
|
-
def
|
|
915
|
+
def clock_identity(self) -> int: ...
|
|
913
916
|
@property
|
|
914
|
-
def
|
|
917
|
+
def port_number(self) -> int: ...
|
|
915
918
|
|
|
916
919
|
class PriorityVector:
|
|
917
920
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
918
921
|
@property
|
|
919
|
-
def
|
|
922
|
+
def port_id(self) -> GPTPStatus.PortID: ...
|
|
920
923
|
@property
|
|
921
|
-
def
|
|
924
|
+
def port_number(self) -> int: ...
|
|
922
925
|
@property
|
|
923
|
-
def
|
|
926
|
+
def steps_removed(self) -> int: ...
|
|
924
927
|
@property
|
|
925
|
-
def
|
|
928
|
+
def sys_id(self) -> GPTPStatus.SystemID: ...
|
|
926
929
|
|
|
927
930
|
class ScaledNanoSeconds:
|
|
928
931
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
929
932
|
@property
|
|
930
|
-
def
|
|
933
|
+
def fractional_nanoseconds(self) -> int: ...
|
|
931
934
|
@property
|
|
932
|
-
def
|
|
935
|
+
def nanoseconds_lsb(self) -> int: ...
|
|
933
936
|
@property
|
|
934
|
-
def
|
|
937
|
+
def nanoseconds_msb(self) -> int: ...
|
|
935
938
|
|
|
936
939
|
class SystemID:
|
|
937
940
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
938
941
|
@property
|
|
939
|
-
def
|
|
942
|
+
def clock_id(self) -> int: ...
|
|
940
943
|
@property
|
|
941
|
-
def
|
|
944
|
+
def clock_quality(self) -> GPTPStatus.ClockQuality: ...
|
|
942
945
|
@property
|
|
943
946
|
def priority1(self) -> int: ...
|
|
944
947
|
@property
|
|
@@ -953,29 +956,31 @@ class GPTPStatus(Message):
|
|
|
953
956
|
def seconds(self) -> int: ...
|
|
954
957
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
955
958
|
@property
|
|
956
|
-
def
|
|
959
|
+
def as_capable(self) -> int: ...
|
|
957
960
|
@property
|
|
958
|
-
def
|
|
961
|
+
def current_ds(self) -> GPTPStatus.CurrentDS: ...
|
|
959
962
|
@property
|
|
960
|
-
def
|
|
963
|
+
def current_time(self) -> GPTPStatus.Timestamp: ...
|
|
961
964
|
@property
|
|
962
|
-
def
|
|
965
|
+
def gm_priority(self) -> GPTPStatus.PriorityVector: ...
|
|
963
966
|
@property
|
|
964
|
-
def
|
|
967
|
+
def is_sync(self) -> int: ...
|
|
965
968
|
@property
|
|
966
|
-
def
|
|
969
|
+
def is_syntonized(self) -> int: ...
|
|
967
970
|
@property
|
|
968
|
-
def
|
|
971
|
+
def last_rx_sync_ts(self) -> GPTPStatus.Timestamp: ...
|
|
969
972
|
@property
|
|
970
|
-
def
|
|
973
|
+
def link_delay_ns(self) -> int: ...
|
|
971
974
|
@property
|
|
972
|
-
def
|
|
975
|
+
def link_status(self) -> int: ...
|
|
973
976
|
@property
|
|
974
|
-
def
|
|
977
|
+
def ms_offset_ns(self) -> int: ...
|
|
975
978
|
@property
|
|
976
|
-
def
|
|
979
|
+
def parent_ds(self) -> GPTPStatus.ParentDS: ...
|
|
977
980
|
@property
|
|
978
|
-
def
|
|
981
|
+
def selected_role(self) -> int: ...
|
|
982
|
+
@property
|
|
983
|
+
def short_format(self) -> bool: ...
|
|
979
984
|
|
|
980
985
|
class IDeviceSettings:
|
|
981
986
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
@@ -1074,21 +1079,12 @@ class MACAddress:
|
|
|
1074
1079
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
1075
1080
|
def to_string(self) -> str: ...
|
|
1076
1081
|
|
|
1077
|
-
class
|
|
1078
|
-
en: bool
|
|
1079
|
-
def __init__(self) -> None: ...
|
|
1080
|
-
|
|
1081
|
-
class MACSecGlobalFlags:
|
|
1082
|
-
en: bool
|
|
1083
|
-
nvm: bool
|
|
1084
|
-
def __init__(self) -> None: ...
|
|
1085
|
-
|
|
1086
|
-
class MACsecCipherSuiteType:
|
|
1082
|
+
class MACsecCipherSuite:
|
|
1087
1083
|
__members__: ClassVar[dict] = ... # read-only
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1084
|
+
GCM_AES_128: ClassVar[MACsecCipherSuite] = ...
|
|
1085
|
+
GCM_AES_128_XPN: ClassVar[MACsecCipherSuite] = ...
|
|
1086
|
+
GCM_AES_256: ClassVar[MACsecCipherSuite] = ...
|
|
1087
|
+
GCM_AES_256_XPN: ClassVar[MACsecCipherSuite] = ...
|
|
1092
1088
|
__entries: ClassVar[dict] = ...
|
|
1093
1089
|
def __init__(self, value: int) -> None: ...
|
|
1094
1090
|
def __eq__(self, other: object) -> bool: ...
|
|
@@ -1102,45 +1098,50 @@ class MACsecCipherSuiteType:
|
|
|
1102
1098
|
def value(self) -> int: ...
|
|
1103
1099
|
|
|
1104
1100
|
class MACsecConfig:
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
def
|
|
1101
|
+
def __init__(self, arg0: DeviceType) -> None: ...
|
|
1102
|
+
def add_rx_rule(self, arg0: MACsecRxRule, arg1: int) -> int: ...
|
|
1103
|
+
def add_rx_sa(self, arg0: MACsecRxSa) -> int: ...
|
|
1104
|
+
def add_rx_secy(self, arg0: MACsecRxSecY, arg1: int) -> int: ...
|
|
1105
|
+
def add_tx_sa(self, arg0: MACsecTxSa) -> int: ...
|
|
1106
|
+
def add_tx_secY(self, arg0: MACsecTxSecY, arg1: int) -> int: ...
|
|
1107
|
+
def clear(self) -> None: ...
|
|
1108
|
+
def disable_rx_rekey(self, arg0: int) -> None: ...
|
|
1109
|
+
def disable_tx_rekey(self, arg0: int) -> None: ...
|
|
1110
|
+
def enable_rx_rekey(self, arg0: int, arg1: int) -> bool: ...
|
|
1111
|
+
def enable_tx_rekey(self, arg0: int, arg1: int) -> bool: ...
|
|
1112
|
+
def get_bin_index(self) -> int: ...
|
|
1113
|
+
def get_max_num_rule(self) -> int: ...
|
|
1114
|
+
def get_max_num_sa(self) -> int: ...
|
|
1115
|
+
def get_max_num_secy(self) -> int: ...
|
|
1116
|
+
def get_rx_rule(self, arg0: int) -> MACsecRxRule: ...
|
|
1117
|
+
def get_rx_sa(self, arg0: int) -> MACsecRxSa: ...
|
|
1118
|
+
def get_rx_secy(self, arg0: int) -> MACsecRxSecY: ...
|
|
1119
|
+
def get_tx_sa(self, arg0: int) -> MACsecTxSa: ...
|
|
1120
|
+
def get_tx_secy(self, arg0: int) -> MACsecTxSecY: ...
|
|
1121
|
+
def get_type(self) -> DeviceType: ...
|
|
1122
|
+
def serialize(self) -> list[int]: ...
|
|
1123
|
+
def set_rx_enable(self, arg0: bool) -> None: ...
|
|
1124
|
+
def set_rx_sa_index(self, arg0: int, arg1: int) -> bool: ...
|
|
1125
|
+
def set_rx_sa_rekey_index(self, arg0: int, arg1: int) -> bool: ...
|
|
1126
|
+
def set_storage(self, arg0: bool) -> None: ...
|
|
1127
|
+
def set_tx_enable(self, arg0: bool) -> None: ...
|
|
1128
|
+
def set_tx_sa_index(self, arg0: int, arg1: int) -> bool: ...
|
|
1129
|
+
def set_tx_sa_rekey_index(self, arg0: int, arg1: int) -> bool: ...
|
|
1112
1130
|
|
|
1113
1131
|
class MACsecMPLSOuter:
|
|
1114
1132
|
exp: int
|
|
1115
1133
|
mpls_label: int
|
|
1116
1134
|
def __init__(self) -> None: ...
|
|
1117
1135
|
|
|
1118
|
-
class MACsecMap:
|
|
1119
|
-
auxiliaryPlcy: int
|
|
1120
|
-
enable: bool
|
|
1121
|
-
index: int
|
|
1122
|
-
isControlPacket: bool
|
|
1123
|
-
ruleId: int
|
|
1124
|
-
scIndex: int
|
|
1125
|
-
secTagSci: int
|
|
1126
|
-
secYIndex: int
|
|
1127
|
-
def __init__(self) -> None: ...
|
|
1128
|
-
|
|
1129
|
-
class MACsecMessage:
|
|
1130
|
-
flags: MACSecGlobalFlags
|
|
1131
|
-
rx: MACsecConfig
|
|
1132
|
-
tx: MACsecConfig
|
|
1133
|
-
def __init__(self) -> None: ...
|
|
1134
|
-
|
|
1135
1136
|
class MACsecPacketType:
|
|
1136
1137
|
__members__: ClassVar[dict] = ... # read-only
|
|
1137
|
-
|
|
1138
|
-
|
|
1138
|
+
DEFAULT: ClassVar[MACsecPacketType] = ...
|
|
1139
|
+
DUAL_VLAN: ClassVar[MACsecPacketType] = ...
|
|
1140
|
+
DUAL_VLAN_FOLLOWED_BY_MPLS: ClassVar[MACsecPacketType] = ...
|
|
1139
1141
|
MPLS: ClassVar[MACsecPacketType] = ...
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
Unsupported: ClassVar[MACsecPacketType] = ...
|
|
1142
|
+
SINGLE_VLAN: ClassVar[MACsecPacketType] = ...
|
|
1143
|
+
SINGLE_VLAN_FOLLOWED_BY_MPLS: ClassVar[MACsecPacketType] = ...
|
|
1144
|
+
UNSUPPORTED: ClassVar[MACsecPacketType] = ...
|
|
1144
1145
|
__entries: ClassVar[dict] = ...
|
|
1145
1146
|
def __init__(self, value: int) -> None: ...
|
|
1146
1147
|
def __eq__(self, other: object) -> bool: ...
|
|
@@ -1153,70 +1154,65 @@ class MACsecPacketType:
|
|
|
1153
1154
|
@property
|
|
1154
1155
|
def value(self) -> int: ...
|
|
1155
1156
|
|
|
1156
|
-
class
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
maskVlanTagOuter1: MACsecVLANTag
|
|
1187
|
-
maskVlanTagOuter2: MACsecVLANTag
|
|
1157
|
+
class MACsecRxRule:
|
|
1158
|
+
is_mpls: bool
|
|
1159
|
+
key_bonus_data: int
|
|
1160
|
+
key_ether_type: int
|
|
1161
|
+
key_express: bool
|
|
1162
|
+
key_inner_vlan_type: int
|
|
1163
|
+
key_mac_da: Incomplete
|
|
1164
|
+
key_mask_sa: Incomplete
|
|
1165
|
+
key_mpls_outer1: MACsecMPLSOuter
|
|
1166
|
+
key_mpls_outer2: MACsecMPLSOuter
|
|
1167
|
+
key_num_tags: int
|
|
1168
|
+
key_outer_vlan_type: int
|
|
1169
|
+
key_packet_type: MACsecPacketType
|
|
1170
|
+
key_tag_match_bitmap: int
|
|
1171
|
+
key_vlan_tag_outer1: MACsecVLANTag
|
|
1172
|
+
key_vlan_tag_outer2: MACsecVLANTag
|
|
1173
|
+
mask_bonus_data: int
|
|
1174
|
+
mask_ether_type: int
|
|
1175
|
+
mask_express: bool
|
|
1176
|
+
mask_inner_vlan_type: int
|
|
1177
|
+
mask_mac_da: Incomplete
|
|
1178
|
+
mask_mac_sa: Incomplete
|
|
1179
|
+
mask_mpls_outer1: MACsecMPLSOuter
|
|
1180
|
+
mask_mpls_outer2: MACsecMPLSOuter
|
|
1181
|
+
mask_num_tags: int
|
|
1182
|
+
mask_outer_vlan_type: int
|
|
1183
|
+
mask_packet_type: int
|
|
1184
|
+
mask_tag_match_bitmap: int
|
|
1185
|
+
mask_vlan_tag_outer1: MACsecVLANTag
|
|
1186
|
+
mask_vlan_tag_outer2: MACsecVLANTag
|
|
1188
1187
|
def __init__(self) -> None: ...
|
|
1189
1188
|
|
|
1190
|
-
class
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
hashKey: Incomplete
|
|
1194
|
-
index: int
|
|
1195
|
-
nextPn: int
|
|
1189
|
+
class MACsecRxSa:
|
|
1190
|
+
hash_key: Incomplete
|
|
1191
|
+
next_pn: int
|
|
1196
1192
|
sak: Incomplete
|
|
1197
1193
|
salt: Incomplete
|
|
1198
1194
|
ssci: int
|
|
1199
1195
|
def __init__(self) -> None: ...
|
|
1200
1196
|
|
|
1201
|
-
class
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1197
|
+
class MACsecRxSecY:
|
|
1198
|
+
cipher: MACsecCipherSuite
|
|
1199
|
+
confidentiality_offset: int
|
|
1200
|
+
enable_control_port: bool
|
|
1201
|
+
frame_strip: MACsecStrip
|
|
1202
|
+
frame_validation: MACsecValidation
|
|
1203
|
+
icv_includes_da_sa: bool
|
|
1204
|
+
is_control_packet: bool
|
|
1205
|
+
replay_protect: bool
|
|
1206
|
+
replay_window: int
|
|
1210
1207
|
sci: int
|
|
1211
|
-
secYIndex: int
|
|
1212
1208
|
def __init__(self) -> None: ...
|
|
1213
1209
|
|
|
1214
|
-
class
|
|
1210
|
+
class MACsecStrip:
|
|
1215
1211
|
__members__: ClassVar[dict] = ... # read-only
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1212
|
+
NO_STRIP: ClassVar[MACsecStrip] = ...
|
|
1213
|
+
PRESERVE_SECTAG_STRIP_ICV: ClassVar[MACsecStrip] = ...
|
|
1214
|
+
STRIP_SECTAG_AND_ICV: ClassVar[MACsecStrip] = ...
|
|
1215
|
+
STRIP_SECTAG_PRESERVE_ICV: ClassVar[MACsecStrip] = ...
|
|
1220
1216
|
__entries: ClassVar[dict] = ...
|
|
1221
1217
|
def __init__(self, value: int) -> None: ...
|
|
1222
1218
|
def __eq__(self, other: object) -> bool: ...
|
|
@@ -1229,21 +1225,35 @@ class MACsecSecTagIcvStripType:
|
|
|
1229
1225
|
@property
|
|
1230
1226
|
def value(self) -> int: ...
|
|
1231
1227
|
|
|
1232
|
-
class
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1228
|
+
class MACsecTci:
|
|
1229
|
+
c: bool
|
|
1230
|
+
e: bool
|
|
1231
|
+
es: bool
|
|
1232
|
+
sc: bool
|
|
1233
|
+
scb: bool
|
|
1234
|
+
def __init__(self) -> None: ...
|
|
1235
|
+
|
|
1236
|
+
class MACsecTxSa:
|
|
1237
|
+
an: int
|
|
1238
|
+
hash_key: Incomplete
|
|
1239
|
+
next_pn: int
|
|
1240
|
+
sak: Incomplete
|
|
1241
|
+
salt: Incomplete
|
|
1242
|
+
ssci: int
|
|
1243
|
+
def __init__(self) -> None: ...
|
|
1244
|
+
|
|
1245
|
+
class MACsecTxSecY:
|
|
1246
|
+
auxiliary_policy: int
|
|
1247
|
+
cipher: MACsecCipherSuite
|
|
1248
|
+
confidentiality_offset: int
|
|
1249
|
+
enable_control_port: bool
|
|
1250
|
+
icv_includes_da_sa: bool
|
|
1251
|
+
is_control_packet: bool
|
|
1240
1252
|
mtu: int
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
secTagOffset: int
|
|
1246
|
-
secTagTci: int
|
|
1253
|
+
protect_frames: bool
|
|
1254
|
+
sci: int
|
|
1255
|
+
sec_tag_offset: int
|
|
1256
|
+
sec_tag_tci: MACsecTci
|
|
1247
1257
|
def __init__(self) -> None: ...
|
|
1248
1258
|
|
|
1249
1259
|
class MACsecVLANTag:
|
|
@@ -1251,12 +1261,12 @@ class MACsecVLANTag:
|
|
|
1251
1261
|
vid: int
|
|
1252
1262
|
def __init__(self) -> None: ...
|
|
1253
1263
|
|
|
1254
|
-
class
|
|
1264
|
+
class MACsecValidation:
|
|
1255
1265
|
__members__: ClassVar[dict] = ... # read-only
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
NA: ClassVar[
|
|
1259
|
-
|
|
1266
|
+
CHECK: ClassVar[MACsecValidation] = ...
|
|
1267
|
+
DISABLED: ClassVar[MACsecValidation] = ...
|
|
1268
|
+
NA: ClassVar[MACsecValidation] = ...
|
|
1269
|
+
STRICT: ClassVar[MACsecValidation] = ...
|
|
1260
1270
|
__entries: ClassVar[dict] = ...
|
|
1261
1271
|
def __init__(self, value: int) -> None: ...
|
|
1262
1272
|
def __eq__(self, other: object) -> bool: ...
|
|
@@ -1563,10 +1573,11 @@ class Network:
|
|
|
1563
1573
|
__members__: ClassVar[dict] = ... # read-only
|
|
1564
1574
|
A2B: ClassVar[Network.Type] = ...
|
|
1565
1575
|
Any: ClassVar[Network.Type] = ...
|
|
1576
|
+
AutomotiveEthernet: ClassVar[Network.Type] = ...
|
|
1566
1577
|
CAN: ClassVar[Network.Type] = ...
|
|
1567
1578
|
Ethernet: ClassVar[Network.Type] = ...
|
|
1568
1579
|
FlexRay: ClassVar[Network.Type] = ...
|
|
1569
|
-
|
|
1580
|
+
I2C: ClassVar[Network.Type] = ...
|
|
1570
1581
|
ISO9141: ClassVar[Network.Type] = ...
|
|
1571
1582
|
Internal: ClassVar[Network.Type] = ...
|
|
1572
1583
|
Invalid: ClassVar[Network.Type] = ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: icsneopy
|
|
3
|
-
Version: 1.1.0.post1.
|
|
3
|
+
Version: 1.1.0.post1.dev46
|
|
4
4
|
Author: Intrepid Control Systems, Inc.
|
|
5
5
|
Maintainer-Email: Kyle Schwarz <kschwarz@intrepidcs.com>
|
|
6
6
|
License: Copyright (c) 2018-2025 Intrepid Control Systems, Inc.
|
|
@@ -43,6 +43,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
43
43
|
Classifier: Programming Language :: Python :: 3.11
|
|
44
44
|
Classifier: Programming Language :: Python :: 3.12
|
|
45
45
|
Classifier: Programming Language :: Python :: 3.13
|
|
46
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
46
47
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
47
48
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
48
49
|
Classifier: Operating System :: Microsoft :: Windows
|
|
@@ -85,6 +86,7 @@ each of the respective APIs.
|
|
|
85
86
|
- RAD-EpsilonXL
|
|
86
87
|
- RAD-Galaxy
|
|
87
88
|
- RAD-Galaxy 2
|
|
89
|
+
- RAD-Gemini
|
|
88
90
|
- RAD-Gigastar
|
|
89
91
|
- RAD-Gigastar 2
|
|
90
92
|
- RAD-Moon 2
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
icsneopy-1.1.0.post1.dev46.dist-info/RECORD,,
|
|
2
|
+
icsneopy-1.1.0.post1.dev46.dist-info/WHEEL,sha256=2dBuY6_W5zzmCOjU-j1QXsVFOOSmDZYYYvPlAwnAgj4,139
|
|
3
|
+
icsneopy-1.1.0.post1.dev46.dist-info/METADATA,sha256=NzeIwXoymeRF2DghEV79UpTgFzfsB1DtJxn_6b8cCQQ,4133
|
|
4
|
+
icsneopy-1.1.0.post1.dev46.dist-info/licenses/LICENSE,sha256=evgMO8IwO4ik4PxmbMCPlJ2SzvU8GQzbZEnTZ6N1byA,1650
|
|
5
|
+
icsneopy/icsneopy.cpython-39-darwin.so,sha256=O-aAHjDG41YsOm1qFhj9VY4F-rn7T5qcN1ZNSIHL9XQ,3595712
|
|
6
|
+
icsneopy/__init__.py,sha256=8JkkO6Pz2588-j1MEFY8BIBthdiBFi8V4UIoSTdTye4,25
|
|
7
|
+
icsneopy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
icsneopy/icsneopy.pyi,sha256=FZRlvTootETDh5yQ1YeNasrZAOz8kofReyk42R1g-iY,70750
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
icsneopy-1.1.0.post1.dev22.dist-info/RECORD,,
|
|
2
|
-
icsneopy-1.1.0.post1.dev22.dist-info/WHEEL,sha256=2dBuY6_W5zzmCOjU-j1QXsVFOOSmDZYYYvPlAwnAgj4,139
|
|
3
|
-
icsneopy-1.1.0.post1.dev22.dist-info/METADATA,sha256=oASByq5PQrn4NhhIojyqFRjFg4xjdASqGNru4SX8ky4,4069
|
|
4
|
-
icsneopy-1.1.0.post1.dev22.dist-info/licenses/LICENSE,sha256=evgMO8IwO4ik4PxmbMCPlJ2SzvU8GQzbZEnTZ6N1byA,1650
|
|
5
|
-
icsneopy/icsneopy.cpython-39-darwin.so,sha256=tXtfC6LSAycypFanEWXSWvEjId1cd3_Qe7ifvyXUbZk,1787872
|
|
6
|
-
icsneopy/__init__.py,sha256=8JkkO6Pz2588-j1MEFY8BIBthdiBFi8V4UIoSTdTye4,25
|
|
7
|
-
icsneopy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
icsneopy/icsneopy.pyi,sha256=dsl_6k1juaw-DzJoqk4gYM1fNxbI3W7rB0ypwcmcCJI,69274
|
|
File without changes
|
{icsneopy-1.1.0.post1.dev22.dist-info → icsneopy-1.1.0.post1.dev46.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|