├── .gitignore ├── Assets ├── Editor.meta ├── Editor │ ├── AssetPipelineSettings.asset │ └── AssetPipelineSettings.asset.meta ├── Settings.meta ├── Settings │ ├── Resources.meta │ └── Resources │ │ ├── URSRuntimeSetting.asset │ │ └── URSRuntimeSetting.asset.meta ├── URS.meta ├── URS │ ├── Animation.meta │ ├── Animation │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── AnimationClipUtil.cs │ │ │ ├── AnimationClipUtil.cs.meta │ │ │ ├── AnimationHierarchyEditorTool.cs │ │ │ └── AnimationHierarchyEditorTool.cs.meta │ ├── AssetBundlesBrowser.meta │ ├── AssetBundlesBrowser │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── com.unity.assetbundlebrowser.md │ │ │ ├── com.unity.assetbundlebrowser.md.meta │ │ │ ├── images.meta │ │ │ └── images │ │ │ │ ├── ABundleBrowserIconY1756Basic.png │ │ │ │ ├── ABundleBrowserIconY1756Basic.png.meta │ │ │ │ ├── ABundleBrowserIconY1756Scene.png │ │ │ │ ├── ABundleBrowserIconY1756Scene.png.meta │ │ │ │ ├── browser_configure2.png │ │ │ │ ├── browser_configure2.png.meta │ │ │ │ ├── browser_header.png │ │ │ │ └── browser_header.png.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AssetBundleBrowserMain.cs │ │ │ ├── AssetBundleBrowserMain.cs.meta │ │ │ ├── AssetBundleBuildTab.cs │ │ │ ├── AssetBundleBuildTab.cs.meta │ │ │ ├── AssetBundleDataSource.meta │ │ │ ├── AssetBundleDataSource │ │ │ │ ├── ABDataSource.cs │ │ │ │ ├── ABDataSource.cs.meta │ │ │ │ ├── ABDataSourceProvider.cs │ │ │ │ ├── ABDataSourceProvider.cs.meta │ │ │ │ ├── AssetDatabaseABDataSource.cs │ │ │ │ └── AssetDatabaseABDataSource.cs.meta │ │ │ ├── AssetBundleManageTab.cs │ │ │ ├── AssetBundleManageTab.cs.meta │ │ │ ├── AssetBundleModel.meta │ │ │ ├── AssetBundleModel │ │ │ │ ├── ABModel.cs │ │ │ │ ├── ABModel.cs.meta │ │ │ │ ├── ABModelAssetInfo.cs │ │ │ │ ├── ABModelAssetInfo.cs.meta │ │ │ │ ├── ABModelBundleInfo.cs │ │ │ │ └── ABModelBundleInfo.cs.meta │ │ │ ├── AssetBundleTree.cs │ │ │ ├── AssetBundleTree.cs.meta │ │ │ ├── AssetListTree.cs │ │ │ ├── AssetListTree.cs.meta │ │ │ ├── BundleDetailList.cs │ │ │ ├── BundleDetailList.cs.meta │ │ │ ├── Icons.meta │ │ │ ├── Icons │ │ │ │ ├── ABundleBrowserIconY1756Basic.png │ │ │ │ ├── ABundleBrowserIconY1756Basic.png.meta │ │ │ │ ├── ABundleBrowserIconY1756Scene.png │ │ │ │ └── ABundleBrowserIconY1756Scene.png.meta │ │ │ ├── InspectTab.meta │ │ │ ├── InspectTab │ │ │ │ ├── AssetBundleInspectTab.cs │ │ │ │ ├── AssetBundleInspectTab.cs.meta │ │ │ │ ├── AssetBundleRecord.cs │ │ │ │ ├── AssetBundleRecord.cs.meta │ │ │ │ ├── InspectSingleBundle.cs │ │ │ │ ├── InspectSingleBundle.cs.meta │ │ │ │ ├── InspectTreeView.cs │ │ │ │ └── InspectTreeView.cs.meta │ │ │ ├── MessageList.cs │ │ │ ├── MessageList.cs.meta │ │ │ ├── MessageSystem.cs │ │ │ ├── MessageSystem.cs.meta │ │ │ ├── Unity.AssetBundleBrowser.Editor.asmdef │ │ │ └── Unity.AssetBundleBrowser.Editor.asmdef.meta │ │ ├── QAReport.md │ │ ├── QAReport.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── license.md │ │ ├── license.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── AssetPipeline.meta │ ├── AssetPipeline │ │ ├── .gitignore │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Assets.meta │ │ │ ├── Assets │ │ │ │ ├── GUIIcon.shader │ │ │ │ ├── GUIIcon.shader.meta │ │ │ │ ├── __importeraudiodummy__.wav │ │ │ │ ├── __importeraudiodummy__.wav.meta │ │ │ │ ├── __importerfontsdummy__.ttf │ │ │ │ ├── __importerfontsdummy__.ttf.meta │ │ │ │ ├── __importermodelsdummy__.obj │ │ │ │ ├── __importermodelsdummy__.obj.meta │ │ │ │ ├── __importerspriteatlasesdummy__.spriteatlas │ │ │ │ ├── __importerspriteatlasesdummy__.spriteatlas.meta │ │ │ │ ├── __importertexturesdummy__.png │ │ │ │ ├── __importertexturesdummy__.png.meta │ │ │ │ ├── __importervideosdummy__.m4v │ │ │ │ └── __importervideosdummy__.m4v.meta │ │ │ ├── Config.meta │ │ │ ├── Config │ │ │ │ ├── AssetPipelineSettings.cs │ │ │ │ ├── AssetPipelineSettings.cs.meta │ │ │ │ ├── AssetPipelineSettingsProvider.cs │ │ │ │ ├── AssetPipelineSettingsProvider.cs.meta │ │ │ │ ├── AssetTypeFileExtensions.cs │ │ │ │ └── AssetTypeFileExtensions.cs.meta │ │ │ ├── Dependencies.meta │ │ │ ├── Dependencies │ │ │ │ ├── ReflectionMagic.meta │ │ │ │ └── ReflectionMagic │ │ │ │ │ ├── DynamicField.cs │ │ │ │ │ ├── DynamicField.cs.meta │ │ │ │ │ ├── DynamicProperty.cs │ │ │ │ │ ├── DynamicProperty.cs.meta │ │ │ │ │ ├── IDynamicMember.cs │ │ │ │ │ ├── IDynamicMember.cs.meta │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── LICENSE.txt.meta │ │ │ │ │ ├── PrivateReflectionDynamicObjectBase.cs │ │ │ │ │ ├── PrivateReflectionDynamicObjectBase.cs.meta │ │ │ │ │ ├── PrivateReflectionDynamicObjectInstance.cs │ │ │ │ │ ├── PrivateReflectionDynamicObjectInstance.cs.meta │ │ │ │ │ ├── PrivateReflectionDynamicObjectStatic.cs │ │ │ │ │ ├── PrivateReflectionDynamicObjectStatic.cs.meta │ │ │ │ │ ├── PrivateReflectionUsingDynamicExtensions.cs │ │ │ │ │ └── PrivateReflectionUsingDynamicExtensions.cs.meta │ │ │ ├── Filters.meta │ │ │ ├── Filters │ │ │ │ ├── PathFilter.cs │ │ │ │ ├── PathFilter.cs.meta │ │ │ │ ├── StringTokenFilter.cs │ │ │ │ └── StringTokenFilter.cs.meta │ │ │ ├── Interface.meta │ │ │ ├── Interface │ │ │ │ ├── Colors.meta │ │ │ │ ├── Colors │ │ │ │ │ ├── ColorPalette.cs │ │ │ │ │ ├── ColorPalette.cs.meta │ │ │ │ │ ├── SkinnedColor.cs │ │ │ │ │ └── SkinnedColor.cs.meta │ │ │ │ ├── DaiGUIContent.cs │ │ │ │ ├── DaiGUIContent.cs.meta │ │ │ │ ├── DaiGUIStyles.cs │ │ │ │ ├── DaiGUIStyles.cs.meta │ │ │ │ ├── DaiGUIUtility.cs │ │ │ │ ├── DaiGUIUtility.cs.meta │ │ │ │ ├── EditorTexture.meta │ │ │ │ ├── EditorTexture │ │ │ │ │ ├── EditorTexture.cs │ │ │ │ │ ├── EditorTexture.cs.meta │ │ │ │ │ ├── EditorTextures.cs │ │ │ │ │ └── EditorTextures.cs.meta │ │ │ │ ├── Inspectors.meta │ │ │ │ ├── Inspectors │ │ │ │ │ ├── AssetFilterInspector.cs │ │ │ │ │ ├── AssetFilterInspector.cs.meta │ │ │ │ │ ├── AssetImportProfileInspector.cs │ │ │ │ │ └── AssetImportProfileInspector.cs.meta │ │ │ │ ├── PropertyDrawers.meta │ │ │ │ ├── PropertyDrawers │ │ │ │ │ ├── MaterialSetupPropertyDrawer.cs │ │ │ │ │ ├── MaterialSetupPropertyDrawer.cs.meta │ │ │ │ │ ├── NamingConventionRulePropertyDrawer.cs │ │ │ │ │ ├── NamingConventionRulePropertyDrawer.cs.meta │ │ │ │ │ ├── PathFilterPropertyDrawer.cs │ │ │ │ │ ├── PathFilterPropertyDrawer.cs.meta │ │ │ │ │ ├── StringTokenFilterPropertyDrawer.cs │ │ │ │ │ └── StringTokenFilterPropertyDrawer.cs.meta │ │ │ │ ├── TreeViews.meta │ │ │ │ └── TreeViews │ │ │ │ │ ├── AAssetTableView.cs │ │ │ │ │ ├── AAssetTableView.cs.meta │ │ │ │ │ ├── AssetSearchTableItem.cs │ │ │ │ │ ├── AssetSearchTableItem.cs.meta │ │ │ │ │ ├── AssetSearchTableView.cs │ │ │ │ │ ├── AssetSearchTableView.cs.meta │ │ │ │ │ ├── AssetTableItem.cs │ │ │ │ │ ├── AssetTableItem.cs.meta │ │ │ │ │ ├── ImportProfileAssetTableItem.cs │ │ │ │ │ ├── ImportProfileAssetTableItem.cs.meta │ │ │ │ │ ├── ImportProfileAssetTableView.cs │ │ │ │ │ ├── ImportProfileAssetTableView.cs.meta │ │ │ │ │ ├── ImportProfileTableItem.cs │ │ │ │ │ ├── ImportProfileTableItem.cs.meta │ │ │ │ │ ├── ImportProfileTableView.cs │ │ │ │ │ └── ImportProfileTableView.cs.meta │ │ │ ├── PathConvention.meta │ │ │ ├── PathConvention │ │ │ │ ├── Anchor.cs │ │ │ │ ├── Anchor.cs.meta │ │ │ │ ├── DuplicatePlaceholderMode.cs │ │ │ │ ├── DuplicatePlaceholderMode.cs.meta │ │ │ │ ├── GenericResolver.cs │ │ │ │ ├── GenericResolver.cs.meta │ │ │ │ ├── ITemplateResolver.cs │ │ │ │ ├── ITemplateResolver.cs.meta │ │ │ │ ├── NamingConventionRule.cs │ │ │ │ ├── NamingConventionRule.cs.meta │ │ │ │ ├── ResolveException.cs │ │ │ │ ├── ResolveException.cs.meta │ │ │ │ ├── Template.cs │ │ │ │ └── Template.cs.meta │ │ │ ├── Postprocessors.meta │ │ │ ├── Postprocessors │ │ │ │ ├── AssetImportPostprocessor.cs │ │ │ │ ├── AssetImportPostprocessor.cs.meta │ │ │ │ ├── TexturePostprocess.cs │ │ │ │ └── TexturePostprocess.cs.meta │ │ │ ├── Processors.meta │ │ │ ├── Processors │ │ │ │ ├── AddToSpriteAtlas.cs │ │ │ │ ├── AddToSpriteAtlas.cs.meta │ │ │ │ ├── AnimCompression.cs │ │ │ │ ├── AnimCompression.cs.meta │ │ │ │ ├── ApplyPreset.cs │ │ │ │ ├── ApplyPreset.cs.meta │ │ │ │ ├── AssetProcessor.cs │ │ │ │ ├── AssetProcessor.cs.meta │ │ │ │ ├── AssetProcessorDescriptionAttribute.cs │ │ │ │ ├── AssetProcessorDescriptionAttribute.cs.meta │ │ │ │ ├── CreatePrefab.cs │ │ │ │ ├── CreatePrefab.cs.meta │ │ │ │ ├── ExtractMaterials.cs │ │ │ │ ├── ExtractMaterials.cs.meta │ │ │ │ ├── Inspectors.meta │ │ │ │ ├── Inspectors │ │ │ │ │ ├── AddToSpriteAtlasInspector.cs │ │ │ │ │ ├── AddToSpriteAtlasInspector.cs.meta │ │ │ │ │ ├── ApplyPresetInspector.cs │ │ │ │ │ ├── ApplyPresetInspector.cs.meta │ │ │ │ │ ├── AssetProcessorInspector.cs │ │ │ │ │ ├── AssetProcessorInspector.cs.meta │ │ │ │ │ ├── CreatePrefabInspector.cs │ │ │ │ │ ├── CreatePrefabInspector.cs.meta │ │ │ │ │ ├── ExtractMaterialsInspector.cs │ │ │ │ │ ├── ExtractMaterialsInspector.cs.meta │ │ │ │ │ ├── PackTexture2DInspector.cs │ │ │ │ │ ├── PackTexture2DInspector.cs.meta │ │ │ │ │ ├── ResetTransformInspector.cs │ │ │ │ │ ├── ResetTransformInspector.cs.meta │ │ │ │ │ ├── SetAssetBundleInspector.cs │ │ │ │ │ ├── SetAssetBundleInspector.cs.meta │ │ │ │ │ ├── SetAssetLabelsInspector.cs │ │ │ │ │ ├── SetAssetLabelsInspector.cs.meta │ │ │ │ │ ├── SetTextureFormatInspector.cs │ │ │ │ │ ├── SetTextureFormatInspector.cs.meta │ │ │ │ │ ├── SetTextureMipmapsInspector.cs │ │ │ │ │ ├── SetTextureMipmapsInspector.cs.meta │ │ │ │ │ ├── SetupMaterialsInspector.cs │ │ │ │ │ ├── SetupMaterialsInspector.cs.meta │ │ │ │ │ ├── StripMeshDataInspector.cs │ │ │ │ │ └── StripMeshDataInspector.cs.meta │ │ │ │ ├── MaterialPathType.cs │ │ │ │ ├── MaterialPathType.cs.meta │ │ │ │ ├── PackTexture2D.cs │ │ │ │ ├── PackTexture2D.cs.meta │ │ │ │ ├── ResetTransform.cs │ │ │ │ ├── ResetTransform.cs.meta │ │ │ │ ├── SetAssetBundle.cs │ │ │ │ ├── SetAssetBundle.cs.meta │ │ │ │ ├── SetAssetLabels.cs │ │ │ │ ├── SetAssetLabels.cs.meta │ │ │ │ ├── SetTextureFormat.cs │ │ │ │ ├── SetTextureFormat.cs.meta │ │ │ │ ├── SetTextureMipmaps.cs │ │ │ │ ├── SetTextureMipmaps.cs.meta │ │ │ │ ├── SetupMaterials.cs │ │ │ │ ├── SetupMaterials.cs.meta │ │ │ │ ├── StripMeshData.cs │ │ │ │ ├── StripMeshData.cs.meta │ │ │ │ ├── TargetPathType.cs │ │ │ │ └── TargetPathType.cs.meta │ │ │ ├── Profiles.meta │ │ │ ├── Profiles │ │ │ │ ├── Import.meta │ │ │ │ └── Import │ │ │ │ │ ├── AssetFilter.cs │ │ │ │ │ ├── AssetFilter.cs.meta │ │ │ │ │ ├── AssetImportProfile.cs │ │ │ │ │ ├── AssetImportProfile.cs.meta │ │ │ │ │ ├── ImportAssetType.cs │ │ │ │ │ ├── ImportAssetType.cs.meta │ │ │ │ │ ├── ImportProfileUserData.cs │ │ │ │ │ └── ImportProfileUserData.cs.meta │ │ │ ├── Reflection.meta │ │ │ ├── Reflection │ │ │ │ ├── UnityEditorDynamic.cs │ │ │ │ └── UnityEditorDynamic.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Icons.meta │ │ │ │ └── Icons │ │ │ │ │ ├── AssetBundleIcon.png │ │ │ │ │ ├── AssetBundleIcon.png.meta │ │ │ │ │ ├── IgnoreCaseOff.png │ │ │ │ │ ├── IgnoreCaseOff.png.meta │ │ │ │ │ ├── IgnoreCaseOff@2x.png │ │ │ │ │ ├── IgnoreCaseOff@2x.png.meta │ │ │ │ │ ├── IgnoreCaseOn.png │ │ │ │ │ ├── IgnoreCaseOn.png.meta │ │ │ │ │ ├── IgnoreCaseOn@2x.png │ │ │ │ │ └── IgnoreCaseOn@2x.png.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ │ ├── AssetDatabaseUtility.cs │ │ │ │ ├── AssetDatabaseUtility.cs.meta │ │ │ │ ├── AssetImportPipeline.cs │ │ │ │ ├── AssetImportPipeline.cs.meta │ │ │ │ ├── AssetModificationMonitor.cs │ │ │ │ ├── AssetModificationMonitor.cs.meta │ │ │ │ ├── AssetProcessorUtility.cs │ │ │ │ ├── AssetProcessorUtility.cs.meta │ │ │ │ ├── AssetReferenceUtility.cs │ │ │ │ ├── AssetReferenceUtility.cs.meta │ │ │ │ ├── ColorUtility.cs │ │ │ │ ├── ColorUtility.cs.meta │ │ │ │ ├── EditorWindowUtility.cs │ │ │ │ ├── EditorWindowUtility.cs.meta │ │ │ │ ├── FileExistsAction.cs │ │ │ │ ├── FileExistsAction.cs.meta │ │ │ │ ├── ImportAssetTypeUtility.cs │ │ │ │ ├── ImportAssetTypeUtility.cs.meta │ │ │ │ ├── LinqUtility.cs │ │ │ │ ├── LinqUtility.cs.meta │ │ │ │ ├── ObjectUtility.cs │ │ │ │ ├── ObjectUtility.cs.meta │ │ │ │ ├── PathUtility.cs │ │ │ │ ├── PathUtility.cs.meta │ │ │ │ ├── RectUtility.cs │ │ │ │ ├── RectUtility.cs.meta │ │ │ │ ├── ReorderableListUtility.cs │ │ │ │ ├── ReorderableListUtility.cs.meta │ │ │ │ ├── SerializedPropertyUtility.cs │ │ │ │ ├── SerializedPropertyUtility.cs.meta │ │ │ │ ├── StringConvention.cs │ │ │ │ ├── StringConvention.cs.meta │ │ │ │ ├── StringUtility.cs │ │ │ │ ├── StringUtility.cs.meta │ │ │ │ ├── TargetPathTypeUtility.cs │ │ │ │ ├── TargetPathTypeUtility.cs.meta │ │ │ │ ├── TextureUtility.cs │ │ │ │ └── TextureUtility.cs.meta │ │ │ ├── Windows.meta │ │ │ ├── Windows │ │ │ │ ├── AssetSearchWindow.cs │ │ │ │ ├── AssetSearchWindow.cs.meta │ │ │ │ ├── ImportProfileAssetsViewerWindow.cs │ │ │ │ ├── ImportProfileAssetsViewerWindow.cs.meta │ │ │ │ ├── ImportProfileWindow.cs │ │ │ │ ├── ImportProfileWindow.cs.meta │ │ │ │ ├── ImportProfilesWindow.cs │ │ │ │ └── ImportProfilesWindow.cs.meta │ │ │ ├── com.daihenka.assetpipeline.editor.asmdef │ │ │ └── com.daihenka.assetpipeline.editor.asmdef.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── Best HTTP.meta │ ├── Best HTTP │ │ ├── BestHTTP.asmdef │ │ ├── BestHTTP.asmdef.meta │ │ ├── Documentation.txt │ │ ├── Documentation.txt.meta │ │ ├── Examples.meta │ │ ├── Examples │ │ │ ├── HTTP.meta │ │ │ ├── HTTP │ │ │ │ ├── AssetBundle.prefab │ │ │ │ ├── AssetBundle.prefab.meta │ │ │ │ ├── AssetBundleSample.cs │ │ │ │ ├── AssetBundleSample.cs.meta │ │ │ │ ├── MultipartFormDataStream.cs │ │ │ │ ├── MultipartFormDataStream.cs.meta │ │ │ │ ├── ResumableStreaming.prefab │ │ │ │ ├── ResumableStreaming.prefab.meta │ │ │ │ ├── ResumableStreamingSample.cs │ │ │ │ ├── ResumableStreamingSample.cs.meta │ │ │ │ ├── Streaming.prefab │ │ │ │ ├── Streaming.prefab.meta │ │ │ │ ├── StreamingSample.cs │ │ │ │ ├── StreamingSample.cs.meta │ │ │ │ ├── TextureDownload.prefab │ │ │ │ ├── TextureDownload.prefab.meta │ │ │ │ ├── TextureDownloadSample.cs │ │ │ │ ├── TextureDownloadSample.cs.meta │ │ │ │ ├── UploadStream.cs │ │ │ │ └── UploadStream.cs.meta │ │ │ ├── Helpers.meta │ │ │ ├── Helpers │ │ │ │ ├── Components.meta │ │ │ │ ├── Components │ │ │ │ │ ├── Cache.cs │ │ │ │ │ ├── Cache.cs.meta │ │ │ │ │ ├── Cookies.cs │ │ │ │ │ └── Cookies.cs.meta │ │ │ │ ├── GUIHelper.cs │ │ │ │ ├── GUIHelper.cs.meta │ │ │ │ ├── Link.cs │ │ │ │ ├── Link.cs.meta │ │ │ │ ├── LinkSelect.png │ │ │ │ ├── LinkSelect.png.meta │ │ │ │ ├── Plugins.meta │ │ │ │ ├── Plugins │ │ │ │ │ ├── WebGL.meta │ │ │ │ │ └── WebGL │ │ │ │ │ │ ├── OpenWindow.jslib │ │ │ │ │ │ └── OpenWindow.jslib.meta │ │ │ │ ├── SampleBase.cs │ │ │ │ ├── SampleBase.cs.meta │ │ │ │ ├── SelectorUI.meta │ │ │ │ ├── SelectorUI │ │ │ │ │ ├── Category.cs │ │ │ │ │ ├── Category.cs.meta │ │ │ │ │ ├── Category.prefab │ │ │ │ │ ├── Category.prefab.meta │ │ │ │ │ ├── ExampleInfo.cs │ │ │ │ │ ├── ExampleInfo.cs.meta │ │ │ │ │ ├── ExampleInfo.prefab │ │ │ │ │ ├── ExampleInfo.prefab.meta │ │ │ │ │ ├── ExampleListItem.cs │ │ │ │ │ ├── ExampleListItem.cs.meta │ │ │ │ │ ├── ExampleListItem.prefab │ │ │ │ │ ├── ExampleListItem.prefab.meta │ │ │ │ │ ├── SampleSelectorUI.cs │ │ │ │ │ └── SampleSelectorUI.cs.meta │ │ │ │ ├── TextListItem.cs │ │ │ │ ├── TextListItem.cs.meta │ │ │ │ ├── TextListItem.prefab │ │ │ │ └── TextListItem.prefab.meta │ │ │ ├── Plugin.meta │ │ │ ├── Plugin │ │ │ │ ├── AsyncExtensions.cs │ │ │ │ └── AsyncExtensions.cs.meta │ │ │ ├── SampleRoot.cs │ │ │ ├── SampleRoot.cs.meta │ │ │ ├── SampleSelector.unity │ │ │ ├── SampleSelector.unity.meta │ │ │ ├── Server-Sent Events.meta │ │ │ ├── Server-Sent Events │ │ │ │ ├── Simple.prefab │ │ │ │ ├── Simple.prefab.meta │ │ │ │ ├── SimpleSample.cs │ │ │ │ └── SimpleSample.cs.meta │ │ │ ├── SignalR.meta │ │ │ ├── SignalR │ │ │ │ ├── Authentication Providers.meta │ │ │ │ ├── Authentication Providers │ │ │ │ │ ├── SampleCookieAuthentication.cs │ │ │ │ │ ├── SampleCookieAuthentication.cs.meta │ │ │ │ │ ├── SampleHeaderAuthentication.cs │ │ │ │ │ └── SampleHeaderAuthentication.cs.meta │ │ │ │ ├── Json Encoders.meta │ │ │ │ └── Json Encoders │ │ │ │ │ ├── JSonDotnetEncoder.cs │ │ │ │ │ ├── JSonDotnetEncoder.cs.meta │ │ │ │ │ ├── LitJsonEncoder.cs │ │ │ │ │ └── LitJsonEncoder.cs.meta │ │ │ ├── SignalRCore.meta │ │ │ ├── SignalRCore │ │ │ │ ├── Async TestHub.prefab │ │ │ │ ├── Async TestHub.prefab.meta │ │ │ │ ├── AsyncTestHubSample.cs │ │ │ │ ├── AsyncTestHubSample.cs.meta │ │ │ │ ├── Authentication Providers.meta │ │ │ │ ├── Authentication Providers │ │ │ │ │ ├── HeaderAuthenticator.cs │ │ │ │ │ └── HeaderAuthenticator.cs.meta │ │ │ │ ├── Encoders.meta │ │ │ │ ├── Encoders │ │ │ │ │ ├── JsonDotNetEncoder.cs │ │ │ │ │ ├── JsonDotNetEncoder.cs.meta │ │ │ │ │ ├── LitJsonEncoder.cs │ │ │ │ │ ├── LitJsonEncoder.cs.meta │ │ │ │ │ ├── MessagePackCSharpProtocol.cs │ │ │ │ │ ├── MessagePackCSharpProtocol.cs.meta │ │ │ │ │ ├── MessagePackProtocol.cs │ │ │ │ │ └── MessagePackProtocol.cs.meta │ │ │ │ ├── HubWithAuthorization.prefab │ │ │ │ ├── HubWithAuthorization.prefab.meta │ │ │ │ ├── HubWithAuthorizationSample.cs │ │ │ │ ├── HubWithAuthorizationSample.cs.meta │ │ │ │ ├── HubWithPreAuthorization.prefab │ │ │ │ ├── HubWithPreAuthorization.prefab.meta │ │ │ │ ├── HubWithPreAuthorizationSample.cs │ │ │ │ ├── HubWithPreAuthorizationSample.cs.meta │ │ │ │ ├── Person.cs │ │ │ │ ├── Person.cs.meta │ │ │ │ ├── Redirect.prefab │ │ │ │ ├── Redirect.prefab.meta │ │ │ │ ├── RedirectSample.cs │ │ │ │ ├── RedirectSample.cs.meta │ │ │ │ ├── TestHub.prefab │ │ │ │ ├── TestHub.prefab.meta │ │ │ │ ├── TestHubSample.cs │ │ │ │ ├── TestHubSample.cs.meta │ │ │ │ ├── UploadHub.prefab │ │ │ │ ├── UploadHub.prefab.meta │ │ │ │ ├── UploadHubSample.cs │ │ │ │ └── UploadHubSample.cs.meta │ │ │ ├── SocketIO.meta │ │ │ ├── SocketIO │ │ │ │ ├── SocketIO Json Encoders.meta │ │ │ │ ├── SocketIO Json Encoders │ │ │ │ │ ├── JsonDotNetEncoder.cs │ │ │ │ │ ├── JsonDotNetEncoder.cs.meta │ │ │ │ │ ├── LitJsonEncoder.cs │ │ │ │ │ └── LitJsonEncoder.cs.meta │ │ │ │ ├── SocketIOChat.prefab │ │ │ │ ├── SocketIOChat.prefab.meta │ │ │ │ ├── SocketIOChatSample.cs │ │ │ │ └── SocketIOChatSample.cs.meta │ │ │ ├── SocketIO3.meta │ │ │ ├── SocketIO3 │ │ │ │ ├── ChatSample.cs │ │ │ │ ├── ChatSample.cs.meta │ │ │ │ ├── ChatSample.prefab │ │ │ │ ├── ChatSample.prefab.meta │ │ │ │ ├── Parsers.meta │ │ │ │ └── Parsers │ │ │ │ │ ├── JsonDotNetParser.cs │ │ │ │ │ ├── JsonDotNetParser.cs.meta │ │ │ │ │ ├── MsgPackParser.cs │ │ │ │ │ └── MsgPackParser.cs.meta │ │ │ ├── Websocket.meta │ │ │ └── Websocket │ │ │ │ ├── WebSocket.prefab │ │ │ │ ├── WebSocket.prefab.meta │ │ │ │ ├── WebSocketSample.cs │ │ │ │ └── WebSocketSample.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── Android.meta │ │ │ ├── Android │ │ │ │ ├── ProxyFinder.java │ │ │ │ └── ProxyFinder.java.meta │ │ │ ├── WebGL.meta │ │ │ └── WebGL │ │ │ │ ├── BestHTTP_EventSource.jslib │ │ │ │ ├── BestHTTP_EventSource.jslib.meta │ │ │ │ ├── BestHTTP_WebRequest.jslib │ │ │ │ ├── BestHTTP_WebRequest.jslib.meta │ │ │ │ ├── BestHTTP_WebSocket.jslib │ │ │ │ └── BestHTTP_WebSocket.jslib.meta │ │ ├── ReleaseNotes.txt │ │ ├── ReleaseNotes.txt.meta │ │ ├── Source.meta │ │ ├── Source │ │ │ ├── Authentication.meta │ │ │ ├── Authentication │ │ │ │ ├── Credentials.cs │ │ │ │ ├── Credentials.cs.meta │ │ │ │ ├── Digest.cs │ │ │ │ ├── Digest.cs.meta │ │ │ │ ├── DigestStore.cs │ │ │ │ └── DigestStore.cs.meta │ │ │ ├── Caching.meta │ │ │ ├── Caching │ │ │ │ ├── HTTPCacheFileInfo.cs │ │ │ │ ├── HTTPCacheFileInfo.cs.meta │ │ │ │ ├── HTTPCacheFileLock.cs │ │ │ │ ├── HTTPCacheFileLock.cs.meta │ │ │ │ ├── HTTPCacheMaintananceParams.cs │ │ │ │ ├── HTTPCacheMaintananceParams.cs.meta │ │ │ │ ├── HTTPCacheService.cs │ │ │ │ └── HTTPCacheService.cs.meta │ │ │ ├── Connections.meta │ │ │ ├── Connections │ │ │ │ ├── BufferedReadNetworkStream.cs │ │ │ │ ├── BufferedReadNetworkStream.cs.meta │ │ │ │ ├── ConnectionBase.cs │ │ │ │ ├── ConnectionBase.cs.meta │ │ │ │ ├── ConnectionHelper.cs │ │ │ │ ├── ConnectionHelper.cs.meta │ │ │ │ ├── FileConnection.cs │ │ │ │ ├── FileConnection.cs.meta │ │ │ │ ├── HTTP1Handler.cs │ │ │ │ ├── HTTP1Handler.cs.meta │ │ │ │ ├── HTTP2.meta │ │ │ │ ├── HTTP2 │ │ │ │ │ ├── BufferHelper.cs │ │ │ │ │ ├── BufferHelper.cs.meta │ │ │ │ │ ├── FramesAsStreamView.cs │ │ │ │ │ ├── FramesAsStreamView.cs.meta │ │ │ │ │ ├── HPACKEncoder.cs │ │ │ │ │ ├── HPACKEncoder.cs.meta │ │ │ │ │ ├── HTTP2FrameHelper.cs │ │ │ │ │ ├── HTTP2FrameHelper.cs.meta │ │ │ │ │ ├── HTTP2Frames.cs │ │ │ │ │ ├── HTTP2Frames.cs.meta │ │ │ │ │ ├── HTTP2Handler.cs │ │ │ │ │ ├── HTTP2Handler.cs.meta │ │ │ │ │ ├── HTTP2PluginSettings.cs │ │ │ │ │ ├── HTTP2PluginSettings.cs.meta │ │ │ │ │ ├── HTTP2Response.cs │ │ │ │ │ ├── HTTP2Response.cs.meta │ │ │ │ │ ├── HTTP2SettingsRegistry.cs │ │ │ │ │ ├── HTTP2SettingsRegistry.cs.meta │ │ │ │ │ ├── HTTP2Stream.cs │ │ │ │ │ ├── HTTP2Stream.cs.meta │ │ │ │ │ ├── HTTP2WebSocketStream.cs │ │ │ │ │ ├── HTTP2WebSocketStream.cs.meta │ │ │ │ │ ├── HeaderTable.cs │ │ │ │ │ ├── HeaderTable.cs.meta │ │ │ │ │ ├── HuffmanEncoder.cs │ │ │ │ │ └── HuffmanEncoder.cs.meta │ │ │ │ ├── HTTPConnection.cs │ │ │ │ ├── HTTPConnection.cs.meta │ │ │ │ ├── HTTPConnectionStates.cs │ │ │ │ ├── HTTPConnectionStates.cs.meta │ │ │ │ ├── HTTPProtocolFactory.cs │ │ │ │ ├── HTTPProtocolFactory.cs.meta │ │ │ │ ├── TCPConnector.cs │ │ │ │ ├── TCPConnector.cs.meta │ │ │ │ ├── TLS.meta │ │ │ │ ├── TLS │ │ │ │ │ ├── AbstractTls13Client.cs │ │ │ │ │ ├── AbstractTls13Client.cs.meta │ │ │ │ │ ├── Crypto.meta │ │ │ │ │ ├── Crypto │ │ │ │ │ │ ├── FastTlsCrypto.cs │ │ │ │ │ │ ├── FastTlsCrypto.cs.meta │ │ │ │ │ │ ├── Impl.meta │ │ │ │ │ │ └── Impl │ │ │ │ │ │ │ ├── BurstTables8kGcmMultiplier.cs │ │ │ │ │ │ │ ├── BurstTables8kGcmMultiplier.cs.meta │ │ │ │ │ │ │ ├── FastAesEngine.cs │ │ │ │ │ │ │ ├── FastAesEngine.cs.meta │ │ │ │ │ │ │ ├── FastAesEngineHelper.cs │ │ │ │ │ │ │ ├── FastAesEngineHelper.cs.meta │ │ │ │ │ │ │ ├── FastBcChaCha20Poly1305.cs │ │ │ │ │ │ │ ├── FastBcChaCha20Poly1305.cs.meta │ │ │ │ │ │ │ ├── FastCbcBlockCipher.cs │ │ │ │ │ │ │ ├── FastCbcBlockCipher.cs.meta │ │ │ │ │ │ │ ├── FastCcmBlockCipher.cs │ │ │ │ │ │ │ ├── FastCcmBlockCipher.cs.meta │ │ │ │ │ │ │ ├── FastChaCha7539Engine.cs │ │ │ │ │ │ │ ├── FastChaCha7539Engine.cs.meta │ │ │ │ │ │ │ ├── FastChaCha7539EngineHelper.cs │ │ │ │ │ │ │ ├── FastChaCha7539EngineHelper.cs.meta │ │ │ │ │ │ │ ├── FastChaChaEngine.cs │ │ │ │ │ │ │ ├── FastChaChaEngine.cs.meta │ │ │ │ │ │ │ ├── FastChaChaEngineHelper.cs │ │ │ │ │ │ │ ├── FastChaChaEngineHelper.cs.meta │ │ │ │ │ │ │ ├── FastGcmBlockCipher.cs │ │ │ │ │ │ │ ├── FastGcmBlockCipher.cs.meta │ │ │ │ │ │ │ ├── FastGcmBlockCipherHelper.cs │ │ │ │ │ │ │ ├── FastGcmBlockCipherHelper.cs.meta │ │ │ │ │ │ │ ├── FastPoly1305.cs │ │ │ │ │ │ │ ├── FastPoly1305.cs.meta │ │ │ │ │ │ │ ├── FastSalsa20Engine.cs │ │ │ │ │ │ │ ├── FastSalsa20Engine.cs.meta │ │ │ │ │ │ │ ├── FastSalsa20EngineHelper.cs │ │ │ │ │ │ │ ├── FastSalsa20EngineHelper.cs.meta │ │ │ │ │ │ │ ├── FastSicBlockCipher.cs │ │ │ │ │ │ │ ├── FastSicBlockCipher.cs.meta │ │ │ │ │ │ │ ├── FastTlsAeadCipher.cs │ │ │ │ │ │ │ ├── FastTlsAeadCipher.cs.meta │ │ │ │ │ │ │ ├── FastTlsAeadCipherImpl.cs │ │ │ │ │ │ │ ├── FastTlsAeadCipherImpl.cs.meta │ │ │ │ │ │ │ ├── FastTlsBlockCipher.cs │ │ │ │ │ │ │ ├── FastTlsBlockCipher.cs.meta │ │ │ │ │ │ │ ├── FastTlsBlockCipherImpl.cs │ │ │ │ │ │ │ └── FastTlsBlockCipherImpl.cs.meta │ │ │ │ │ ├── DefaultTls13Client.cs │ │ │ │ │ ├── DefaultTls13Client.cs.meta │ │ │ │ │ ├── KeyLogFileWriter.cs │ │ │ │ │ └── KeyLogFileWriter.cs.meta │ │ │ │ ├── WebGLConnection.cs │ │ │ │ └── WebGLConnection.cs.meta │ │ │ ├── Cookies.meta │ │ │ ├── Cookies │ │ │ │ ├── Cookie.cs │ │ │ │ ├── Cookie.cs.meta │ │ │ │ ├── CookieJar.cs │ │ │ │ └── CookieJar.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── ConnectionEvents.cs │ │ │ │ ├── ConnectionEvents.cs.meta │ │ │ │ ├── HostConnection.cs │ │ │ │ ├── HostConnection.cs.meta │ │ │ │ ├── HostDefinition.cs │ │ │ │ ├── HostDefinition.cs.meta │ │ │ │ ├── HostManager.cs │ │ │ │ ├── HostManager.cs.meta │ │ │ │ ├── IHTTPRequestHandler.cs │ │ │ │ ├── IHTTPRequestHandler.cs.meta │ │ │ │ ├── IProtocol.cs │ │ │ │ ├── IProtocol.cs.meta │ │ │ │ ├── PluginEvents.cs │ │ │ │ ├── PluginEvents.cs.meta │ │ │ │ ├── ProtocolEvents.cs │ │ │ │ ├── ProtocolEvents.cs.meta │ │ │ │ ├── RequestEvents.cs │ │ │ │ └── RequestEvents.cs.meta │ │ │ ├── Decompression.meta │ │ │ ├── Decompression │ │ │ │ ├── BrotliDecompressor.cs │ │ │ │ ├── BrotliDecompressor.cs.meta │ │ │ │ ├── CRC32.cs │ │ │ │ ├── CRC32.cs.meta │ │ │ │ ├── Deflate.cs │ │ │ │ ├── Deflate.cs.meta │ │ │ │ ├── DeflateStream.cs │ │ │ │ ├── DeflateStream.cs.meta │ │ │ │ ├── GZipDecompressor.cs │ │ │ │ ├── GZipDecompressor.cs.meta │ │ │ │ ├── GZipStream.cs │ │ │ │ ├── GZipStream.cs.meta │ │ │ │ ├── IDecompressor.cs │ │ │ │ ├── IDecompressor.cs.meta │ │ │ │ ├── InfTree.cs │ │ │ │ ├── InfTree.cs.meta │ │ │ │ ├── Inflate.cs │ │ │ │ ├── Inflate.cs.meta │ │ │ │ ├── ZTree.cs │ │ │ │ ├── ZTree.cs.meta │ │ │ │ ├── Zlib.cs │ │ │ │ ├── Zlib.cs.meta │ │ │ │ ├── ZlibBaseStream.cs │ │ │ │ ├── ZlibBaseStream.cs.meta │ │ │ │ ├── ZlibCodec.cs │ │ │ │ ├── ZlibCodec.cs.meta │ │ │ │ ├── ZlibConstants.cs │ │ │ │ └── ZlibConstants.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── BufferPoolMemoryStream.cs │ │ │ │ ├── BufferPoolMemoryStream.cs.meta │ │ │ │ ├── BufferSegmentStream.cs │ │ │ │ ├── BufferSegmentStream.cs.meta │ │ │ │ ├── CircularBuffer.cs │ │ │ │ ├── CircularBuffer.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── Future.cs │ │ │ │ ├── Future.cs.meta │ │ │ │ ├── HTTPRequestAsyncExtensions.cs │ │ │ │ ├── HTTPRequestAsyncExtensions.cs.meta │ │ │ │ ├── HeaderParser.cs │ │ │ │ ├── HeaderParser.cs.meta │ │ │ │ ├── HeaderValue.cs │ │ │ │ ├── HeaderValue.cs.meta │ │ │ │ ├── HeartbeatManager.cs │ │ │ │ ├── HeartbeatManager.cs.meta │ │ │ │ ├── KeyValuePairList.cs │ │ │ │ ├── KeyValuePairList.cs.meta │ │ │ │ ├── PeekableIncomingSegmentStream.cs │ │ │ │ ├── PeekableIncomingSegmentStream.cs.meta │ │ │ │ ├── ReadOnlyBufferedStream.cs │ │ │ │ ├── ReadOnlyBufferedStream.cs.meta │ │ │ │ ├── StreamList.cs │ │ │ │ ├── StreamList.cs.meta │ │ │ │ ├── Timer.cs │ │ │ │ ├── Timer.cs.meta │ │ │ │ ├── WWWAuthenticateHeaderParser.cs │ │ │ │ ├── WWWAuthenticateHeaderParser.cs.meta │ │ │ │ ├── WriteOnlyBufferedStream.cs │ │ │ │ └── WriteOnlyBufferedStream.cs.meta │ │ │ ├── Forms.meta │ │ │ ├── Forms │ │ │ │ ├── HTTPFieldData.cs │ │ │ │ ├── HTTPFieldData.cs.meta │ │ │ │ ├── HTTPFormBase.cs │ │ │ │ ├── HTTPFormBase.cs.meta │ │ │ │ ├── HTTPFormUsage.cs │ │ │ │ ├── HTTPFormUsage.cs.meta │ │ │ │ ├── Implementations.meta │ │ │ │ └── Implementations │ │ │ │ │ ├── HTTPMultiPartForm.cs │ │ │ │ │ ├── HTTPMultiPartForm.cs.meta │ │ │ │ │ ├── HTTPUrlEncodedForm.cs │ │ │ │ │ └── HTTPUrlEncodedForm.cs.meta │ │ │ ├── HTTPManager.cs │ │ │ ├── HTTPManager.cs.meta │ │ │ ├── HTTPMethods.cs │ │ │ ├── HTTPMethods.cs.meta │ │ │ ├── HTTPRange.cs │ │ │ ├── HTTPRange.cs.meta │ │ │ ├── HTTPRequest.cs │ │ │ ├── HTTPRequest.cs.meta │ │ │ ├── HTTPResponse.cs │ │ │ ├── HTTPResponse.cs.meta │ │ │ ├── HTTPUpdateDelegator.cs │ │ │ ├── HTTPUpdateDelegator.cs.meta │ │ │ ├── JSON.meta │ │ │ ├── JSON │ │ │ │ ├── JSON.cs │ │ │ │ ├── JSON.cs.meta │ │ │ │ ├── LitJson.meta │ │ │ │ └── LitJson │ │ │ │ │ ├── IJsonWrapper.cs │ │ │ │ │ ├── IJsonWrapper.cs.meta │ │ │ │ │ ├── JsonData.cs │ │ │ │ │ ├── JsonData.cs.meta │ │ │ │ │ ├── JsonException.cs │ │ │ │ │ ├── JsonException.cs.meta │ │ │ │ │ ├── JsonMapper.cs │ │ │ │ │ ├── JsonMapper.cs.meta │ │ │ │ │ ├── JsonMockWrapper.cs │ │ │ │ │ ├── JsonMockWrapper.cs.meta │ │ │ │ │ ├── JsonReader.cs │ │ │ │ │ ├── JsonReader.cs.meta │ │ │ │ │ ├── JsonWriter.cs │ │ │ │ │ ├── JsonWriter.cs.meta │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── Lexer.cs.meta │ │ │ │ │ ├── ParserToken.cs │ │ │ │ │ └── ParserToken.cs.meta │ │ │ ├── Logger.meta │ │ │ ├── Logger │ │ │ │ ├── DefaultLogger.cs │ │ │ │ ├── DefaultLogger.cs.meta │ │ │ │ ├── FileOutput.cs │ │ │ │ ├── FileOutput.cs.meta │ │ │ │ ├── ILogger.cs │ │ │ │ ├── ILogger.cs.meta │ │ │ │ ├── LoggingContext.cs │ │ │ │ ├── LoggingContext.cs.meta │ │ │ │ ├── ThreadedLogger.cs │ │ │ │ ├── ThreadedLogger.cs.meta │ │ │ │ ├── UnityOutput.cs │ │ │ │ └── UnityOutput.cs.meta │ │ │ ├── PlatformSupport.meta │ │ │ ├── PlatformSupport │ │ │ │ ├── Collections.meta │ │ │ │ ├── Collections │ │ │ │ │ ├── Concurrent.meta │ │ │ │ │ ├── Concurrent │ │ │ │ │ │ ├── ConcurrentQueue.cs │ │ │ │ │ │ └── ConcurrentQueue.cs.meta │ │ │ │ │ ├── ObjectModel.meta │ │ │ │ │ ├── ObjectModel │ │ │ │ │ │ ├── ObservableDictionary.cs │ │ │ │ │ │ └── ObservableDictionary.cs.meta │ │ │ │ │ ├── Specialized.meta │ │ │ │ │ └── Specialized │ │ │ │ │ │ ├── NotifyCollectionChangedEventArgs.cs │ │ │ │ │ │ └── NotifyCollectionChangedEventArgs.cs.meta │ │ │ │ ├── FileSystem.meta │ │ │ │ ├── FileSystem │ │ │ │ │ ├── DefaultIOService.cs │ │ │ │ │ ├── DefaultIOService.cs.meta │ │ │ │ │ ├── IIOService.cs │ │ │ │ │ ├── IIOService.cs.meta │ │ │ │ │ ├── NETFXCOREIOService.cs │ │ │ │ │ └── NETFXCOREIOService.cs.meta │ │ │ │ ├── IL2CPP.meta │ │ │ │ ├── IL2CPP │ │ │ │ │ ├── Il2CppEagerStaticClassConstructionAttribute.cs │ │ │ │ │ ├── Il2CppEagerStaticClassConstructionAttribute.cs.meta │ │ │ │ │ ├── Il2CppSetOptionAttribute.cs │ │ │ │ │ ├── Il2CppSetOptionAttribute.cs.meta │ │ │ │ │ ├── PreserveAttribute.cs │ │ │ │ │ └── PreserveAttribute.cs.meta │ │ │ │ ├── Memory.meta │ │ │ │ ├── Memory │ │ │ │ │ ├── BufferPool.cs │ │ │ │ │ ├── BufferPool.cs.meta │ │ │ │ │ ├── BufferSegment.cs │ │ │ │ │ ├── BufferSegment.cs.meta │ │ │ │ │ ├── BufferStore.cs │ │ │ │ │ └── BufferStore.cs.meta │ │ │ │ ├── TcpClient.meta │ │ │ │ ├── TcpClient │ │ │ │ │ ├── TcpClient.cs │ │ │ │ │ ├── TcpClient.cs.meta │ │ │ │ │ ├── WinRT.meta │ │ │ │ │ └── WinRT │ │ │ │ │ │ ├── DataReaderWriterStream.cs │ │ │ │ │ │ ├── DataReaderWriterStream.cs.meta │ │ │ │ │ │ ├── TcpClient.cs │ │ │ │ │ │ └── TcpClient.cs.meta │ │ │ │ ├── Text.meta │ │ │ │ ├── Text │ │ │ │ │ ├── StringBuilderPool.cs │ │ │ │ │ └── StringBuilderPool.cs.meta │ │ │ │ ├── Threading.meta │ │ │ │ └── Threading │ │ │ │ │ ├── LockHelpers.cs │ │ │ │ │ ├── LockHelpers.cs.meta │ │ │ │ │ ├── ThreadedRunner.cs │ │ │ │ │ └── ThreadedRunner.cs.meta │ │ │ ├── Proxies.meta │ │ │ ├── Proxies │ │ │ │ ├── Autodetect.meta │ │ │ │ ├── Autodetect │ │ │ │ │ ├── AndroidProxyDetector.cs │ │ │ │ │ ├── AndroidProxyDetector.cs.meta │ │ │ │ │ ├── EnvironmentProxyDetector.cs │ │ │ │ │ ├── EnvironmentProxyDetector.cs.meta │ │ │ │ │ ├── FrameworkProxyDetector.cs │ │ │ │ │ ├── FrameworkProxyDetector.cs.meta │ │ │ │ │ ├── ProgrammaticallyAddedProxyDetector.cs │ │ │ │ │ ├── ProgrammaticallyAddedProxyDetector.cs.meta │ │ │ │ │ ├── ProxyDetector.cs │ │ │ │ │ └── ProxyDetector.cs.meta │ │ │ │ ├── HTTPProxy.cs │ │ │ │ ├── HTTPProxy.cs.meta │ │ │ │ ├── SOCKSProxy.cs │ │ │ │ └── SOCKSProxy.cs.meta │ │ │ ├── SecureProtocol.meta │ │ │ ├── SecureProtocol │ │ │ │ ├── License.txt │ │ │ │ ├── License.txt.meta │ │ │ │ ├── ReflectionHelpers.cs │ │ │ │ ├── ReflectionHelpers.cs.meta │ │ │ │ ├── asn1.meta │ │ │ │ ├── asn1 │ │ │ │ │ ├── ASN1Generator.cs │ │ │ │ │ ├── ASN1Generator.cs.meta │ │ │ │ │ ├── ASN1OctetStringParser.cs │ │ │ │ │ ├── ASN1OctetStringParser.cs.meta │ │ │ │ │ ├── ASN1SequenceParser.cs │ │ │ │ │ ├── ASN1SequenceParser.cs.meta │ │ │ │ │ ├── ASN1SetParser.cs │ │ │ │ │ ├── ASN1SetParser.cs.meta │ │ │ │ │ ├── ASN1StreamParser.cs │ │ │ │ │ ├── ASN1StreamParser.cs.meta │ │ │ │ │ ├── ASN1TaggedObjectParser.cs │ │ │ │ │ ├── ASN1TaggedObjectParser.cs.meta │ │ │ │ │ ├── Asn1BitStringParser.cs │ │ │ │ │ ├── Asn1BitStringParser.cs.meta │ │ │ │ │ ├── Asn1Encodable.cs │ │ │ │ │ ├── Asn1Encodable.cs.meta │ │ │ │ │ ├── Asn1EncodableVector.cs │ │ │ │ │ ├── Asn1EncodableVector.cs.meta │ │ │ │ │ ├── Asn1Exception.cs │ │ │ │ │ ├── Asn1Exception.cs.meta │ │ │ │ │ ├── Asn1GeneralizedTime.cs │ │ │ │ │ ├── Asn1GeneralizedTime.cs.meta │ │ │ │ │ ├── Asn1InputStream.cs │ │ │ │ │ ├── Asn1InputStream.cs.meta │ │ │ │ │ ├── Asn1Null.cs │ │ │ │ │ ├── Asn1Null.cs.meta │ │ │ │ │ ├── Asn1Object.cs │ │ │ │ │ ├── Asn1Object.cs.meta │ │ │ │ │ ├── Asn1ObjectDescriptor.cs │ │ │ │ │ ├── Asn1ObjectDescriptor.cs.meta │ │ │ │ │ ├── Asn1OctetString.cs │ │ │ │ │ ├── Asn1OctetString.cs.meta │ │ │ │ │ ├── Asn1OutputStream.cs │ │ │ │ │ ├── Asn1OutputStream.cs.meta │ │ │ │ │ ├── Asn1ParsingException.cs │ │ │ │ │ ├── Asn1ParsingException.cs.meta │ │ │ │ │ ├── Asn1RelativeOid.cs │ │ │ │ │ ├── Asn1RelativeOid.cs.meta │ │ │ │ │ ├── Asn1Sequence.cs │ │ │ │ │ ├── Asn1Sequence.cs.meta │ │ │ │ │ ├── Asn1Set.cs │ │ │ │ │ ├── Asn1Set.cs.meta │ │ │ │ │ ├── Asn1Tag.cs │ │ │ │ │ ├── Asn1Tag.cs.meta │ │ │ │ │ ├── Asn1TaggedObject.cs │ │ │ │ │ ├── Asn1TaggedObject.cs.meta │ │ │ │ │ ├── Asn1Tags.cs │ │ │ │ │ ├── Asn1Tags.cs.meta │ │ │ │ │ ├── Asn1Type.cs │ │ │ │ │ ├── Asn1Type.cs.meta │ │ │ │ │ ├── Asn1UniversalType.cs │ │ │ │ │ ├── Asn1UniversalType.cs.meta │ │ │ │ │ ├── Asn1UniversalTypes.cs │ │ │ │ │ ├── Asn1UniversalTypes.cs.meta │ │ │ │ │ ├── Asn1UtcTime.cs │ │ │ │ │ ├── Asn1UtcTime.cs.meta │ │ │ │ │ ├── Asn1Utilities.cs │ │ │ │ │ ├── Asn1Utilities.cs.meta │ │ │ │ │ ├── BERBitString.cs │ │ │ │ │ ├── BERBitString.cs.meta │ │ │ │ │ ├── BERGenerator.cs │ │ │ │ │ ├── BERGenerator.cs.meta │ │ │ │ │ ├── BEROctetStringGenerator.cs │ │ │ │ │ ├── BEROctetStringGenerator.cs.meta │ │ │ │ │ ├── BEROctetStringParser.cs │ │ │ │ │ ├── BEROctetStringParser.cs.meta │ │ │ │ │ ├── BERSequenceGenerator.cs │ │ │ │ │ ├── BERSequenceGenerator.cs.meta │ │ │ │ │ ├── BERSequenceParser.cs │ │ │ │ │ ├── BERSequenceParser.cs.meta │ │ │ │ │ ├── BERSetGenerator.cs │ │ │ │ │ ├── BERSetGenerator.cs.meta │ │ │ │ │ ├── BERSetParser.cs │ │ │ │ │ ├── BERSetParser.cs.meta │ │ │ │ │ ├── BERTaggedObjectParser.cs │ │ │ │ │ ├── BERTaggedObjectParser.cs.meta │ │ │ │ │ ├── BerApplicationSpecific.cs │ │ │ │ │ ├── BerApplicationSpecific.cs.meta │ │ │ │ │ ├── BerApplicationSpecificParser.cs │ │ │ │ │ ├── BerApplicationSpecificParser.cs.meta │ │ │ │ │ ├── BerBitStringParser.cs │ │ │ │ │ ├── BerBitStringParser.cs.meta │ │ │ │ │ ├── BerNull.cs │ │ │ │ │ ├── BerNull.cs.meta │ │ │ │ │ ├── BerOctetString.cs │ │ │ │ │ ├── BerOctetString.cs.meta │ │ │ │ │ ├── BerOutputStream.cs │ │ │ │ │ ├── BerOutputStream.cs.meta │ │ │ │ │ ├── BerSequence.cs │ │ │ │ │ ├── BerSequence.cs.meta │ │ │ │ │ ├── BerSet.cs │ │ │ │ │ ├── BerSet.cs.meta │ │ │ │ │ ├── BerTaggedObject.cs │ │ │ │ │ ├── BerTaggedObject.cs.meta │ │ │ │ │ ├── ConstructedBitStream.cs │ │ │ │ │ ├── ConstructedBitStream.cs.meta │ │ │ │ │ ├── ConstructedDLEncoding.cs │ │ │ │ │ ├── ConstructedDLEncoding.cs.meta │ │ │ │ │ ├── ConstructedILEncoding.cs │ │ │ │ │ ├── ConstructedILEncoding.cs.meta │ │ │ │ │ ├── ConstructedLazyDLEncoding.cs │ │ │ │ │ ├── ConstructedLazyDLEncoding.cs.meta │ │ │ │ │ ├── ConstructedOctetStream.cs │ │ │ │ │ ├── ConstructedOctetStream.cs.meta │ │ │ │ │ ├── DERExternal.cs │ │ │ │ │ ├── DERExternal.cs.meta │ │ │ │ │ ├── DERExternalParser.cs │ │ │ │ │ ├── DERExternalParser.cs.meta │ │ │ │ │ ├── DERGenerator.cs │ │ │ │ │ ├── DERGenerator.cs.meta │ │ │ │ │ ├── DEROctetStringParser.cs │ │ │ │ │ ├── DEROctetStringParser.cs.meta │ │ │ │ │ ├── DERSequenceGenerator.cs │ │ │ │ │ ├── DERSequenceGenerator.cs.meta │ │ │ │ │ ├── DERSequenceParser.cs │ │ │ │ │ ├── DERSequenceParser.cs.meta │ │ │ │ │ ├── DERSetGenerator.cs │ │ │ │ │ ├── DERSetGenerator.cs.meta │ │ │ │ │ ├── DERSetParser.cs │ │ │ │ │ ├── DERSetParser.cs.meta │ │ │ │ │ ├── DLBitString.cs │ │ │ │ │ ├── DLBitString.cs.meta │ │ │ │ │ ├── DLBitStringParser.cs │ │ │ │ │ ├── DLBitStringParser.cs.meta │ │ │ │ │ ├── DLSequence.cs │ │ │ │ │ ├── DLSequence.cs.meta │ │ │ │ │ ├── DLSet.cs │ │ │ │ │ ├── DLSet.cs.meta │ │ │ │ │ ├── DLTaggedObject.cs │ │ │ │ │ ├── DLTaggedObject.cs.meta │ │ │ │ │ ├── DLTaggedObjectParser.cs │ │ │ │ │ ├── DLTaggedObjectParser.cs.meta │ │ │ │ │ ├── DefiniteLengthInputStream.cs │ │ │ │ │ ├── DefiniteLengthInputStream.cs.meta │ │ │ │ │ ├── DerApplicationSpecific.cs │ │ │ │ │ ├── DerApplicationSpecific.cs.meta │ │ │ │ │ ├── DerBMPString.cs │ │ │ │ │ ├── DerBMPString.cs.meta │ │ │ │ │ ├── DerBitString.cs │ │ │ │ │ ├── DerBitString.cs.meta │ │ │ │ │ ├── DerBoolean.cs │ │ │ │ │ ├── DerBoolean.cs.meta │ │ │ │ │ ├── DerEnumerated.cs │ │ │ │ │ ├── DerEnumerated.cs.meta │ │ │ │ │ ├── DerGeneralString.cs │ │ │ │ │ ├── DerGeneralString.cs.meta │ │ │ │ │ ├── DerGeneralizedTime.cs │ │ │ │ │ ├── DerGeneralizedTime.cs.meta │ │ │ │ │ ├── DerGraphicString.cs │ │ │ │ │ ├── DerGraphicString.cs.meta │ │ │ │ │ ├── DerIA5String.cs │ │ │ │ │ ├── DerIA5String.cs.meta │ │ │ │ │ ├── DerInteger.cs │ │ │ │ │ ├── DerInteger.cs.meta │ │ │ │ │ ├── DerNull.cs │ │ │ │ │ ├── DerNull.cs.meta │ │ │ │ │ ├── DerNumericString.cs │ │ │ │ │ ├── DerNumericString.cs.meta │ │ │ │ │ ├── DerObjectIdentifier.cs │ │ │ │ │ ├── DerObjectIdentifier.cs.meta │ │ │ │ │ ├── DerOctetString.cs │ │ │ │ │ ├── DerOctetString.cs.meta │ │ │ │ │ ├── DerOutputStream.cs │ │ │ │ │ ├── DerOutputStream.cs.meta │ │ │ │ │ ├── DerPrintableString.cs │ │ │ │ │ ├── DerPrintableString.cs.meta │ │ │ │ │ ├── DerSequence.cs │ │ │ │ │ ├── DerSequence.cs.meta │ │ │ │ │ ├── DerSet.cs │ │ │ │ │ ├── DerSet.cs.meta │ │ │ │ │ ├── DerStringBase.cs │ │ │ │ │ ├── DerStringBase.cs.meta │ │ │ │ │ ├── DerT61String.cs │ │ │ │ │ ├── DerT61String.cs.meta │ │ │ │ │ ├── DerTaggedObject.cs │ │ │ │ │ ├── DerTaggedObject.cs.meta │ │ │ │ │ ├── DerUTCTime.cs │ │ │ │ │ ├── DerUTCTime.cs.meta │ │ │ │ │ ├── DerUTF8String.cs │ │ │ │ │ ├── DerUTF8String.cs.meta │ │ │ │ │ ├── DerUniversalString.cs │ │ │ │ │ ├── DerUniversalString.cs.meta │ │ │ │ │ ├── DerVideotexString.cs │ │ │ │ │ ├── DerVideotexString.cs.meta │ │ │ │ │ ├── DerVisibleString.cs │ │ │ │ │ ├── DerVisibleString.cs.meta │ │ │ │ │ ├── IAsn1ApplicationSpecificParser.cs │ │ │ │ │ ├── IAsn1ApplicationSpecificParser.cs.meta │ │ │ │ │ ├── IAsn1Choice.cs │ │ │ │ │ ├── IAsn1Choice.cs.meta │ │ │ │ │ ├── IAsn1Convertible.cs │ │ │ │ │ ├── IAsn1Convertible.cs.meta │ │ │ │ │ ├── IAsn1Encoding.cs │ │ │ │ │ ├── IAsn1Encoding.cs.meta │ │ │ │ │ ├── IAsn1String.cs │ │ │ │ │ ├── IAsn1String.cs.meta │ │ │ │ │ ├── IndefiniteLengthInputStream.cs │ │ │ │ │ ├── IndefiniteLengthInputStream.cs.meta │ │ │ │ │ ├── LazyASN1InputStream.cs │ │ │ │ │ ├── LazyASN1InputStream.cs.meta │ │ │ │ │ ├── LazyDERSequence.cs │ │ │ │ │ ├── LazyDERSequence.cs.meta │ │ │ │ │ ├── LazyDERSet.cs │ │ │ │ │ ├── LazyDERSet.cs.meta │ │ │ │ │ ├── LazyDLEnumerator.cs │ │ │ │ │ ├── LazyDLEnumerator.cs.meta │ │ │ │ │ ├── LazyDLSequence.cs │ │ │ │ │ ├── LazyDLSequence.cs.meta │ │ │ │ │ ├── LazyDLSet.cs │ │ │ │ │ ├── LazyDLSet.cs.meta │ │ │ │ │ ├── LimitedInputStream.cs │ │ │ │ │ ├── LimitedInputStream.cs.meta │ │ │ │ │ ├── OidTokenizer.cs │ │ │ │ │ ├── OidTokenizer.cs.meta │ │ │ │ │ ├── PrimitiveEncoding.cs │ │ │ │ │ ├── PrimitiveEncoding.cs.meta │ │ │ │ │ ├── PrimitiveEncodingSuffixed.cs │ │ │ │ │ ├── PrimitiveEncodingSuffixed.cs.meta │ │ │ │ │ ├── anssi.meta │ │ │ │ │ ├── anssi │ │ │ │ │ │ ├── ANSSINamedCurves.cs │ │ │ │ │ │ ├── ANSSINamedCurves.cs.meta │ │ │ │ │ │ ├── ANSSIObjectIdentifiers.cs │ │ │ │ │ │ └── ANSSIObjectIdentifiers.cs.meta │ │ │ │ │ ├── bc.meta │ │ │ │ │ ├── bc │ │ │ │ │ │ ├── BCObjectIdentifiers.cs │ │ │ │ │ │ ├── BCObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── LinkedCertificate.cs │ │ │ │ │ │ └── LinkedCertificate.cs.meta │ │ │ │ │ ├── bsi.meta │ │ │ │ │ ├── bsi │ │ │ │ │ │ ├── BsiObjectIdentifiers.cs │ │ │ │ │ │ └── BsiObjectIdentifiers.cs.meta │ │ │ │ │ ├── cmp.meta │ │ │ │ │ ├── cmp │ │ │ │ │ │ ├── CAKeyUpdAnnContent.cs │ │ │ │ │ │ ├── CAKeyUpdAnnContent.cs.meta │ │ │ │ │ │ ├── CertAnnContent.cs │ │ │ │ │ │ ├── CertAnnContent.cs.meta │ │ │ │ │ │ ├── CertConfirmContent.cs │ │ │ │ │ │ ├── CertConfirmContent.cs.meta │ │ │ │ │ │ ├── CertOrEncCert.cs │ │ │ │ │ │ ├── CertOrEncCert.cs.meta │ │ │ │ │ │ ├── CertRepMessage.cs │ │ │ │ │ │ ├── CertRepMessage.cs.meta │ │ │ │ │ │ ├── CertReqTemplateContent.cs │ │ │ │ │ │ ├── CertReqTemplateContent.cs.meta │ │ │ │ │ │ ├── CertResponse.cs │ │ │ │ │ │ ├── CertResponse.cs.meta │ │ │ │ │ │ ├── CertStatus.cs │ │ │ │ │ │ ├── CertStatus.cs.meta │ │ │ │ │ │ ├── CertifiedKeyPair.cs │ │ │ │ │ │ ├── CertifiedKeyPair.cs.meta │ │ │ │ │ │ ├── Challenge.cs │ │ │ │ │ │ ├── Challenge.cs.meta │ │ │ │ │ │ ├── CmpCertificate.cs │ │ │ │ │ │ ├── CmpCertificate.cs.meta │ │ │ │ │ │ ├── CmpObjectIdentifiers.cs │ │ │ │ │ │ ├── CmpObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── CrlAnnContent.cs │ │ │ │ │ │ ├── CrlAnnContent.cs.meta │ │ │ │ │ │ ├── CrlSource.cs │ │ │ │ │ │ ├── CrlSource.cs.meta │ │ │ │ │ │ ├── CrlStatus.cs │ │ │ │ │ │ ├── CrlStatus.cs.meta │ │ │ │ │ │ ├── DhbmParameter.cs │ │ │ │ │ │ ├── DhbmParameter.cs.meta │ │ │ │ │ │ ├── ErrorMsgContent.cs │ │ │ │ │ │ ├── ErrorMsgContent.cs.meta │ │ │ │ │ │ ├── GenMsgContent.cs │ │ │ │ │ │ ├── GenMsgContent.cs.meta │ │ │ │ │ │ ├── GenRepContent.cs │ │ │ │ │ │ ├── GenRepContent.cs.meta │ │ │ │ │ │ ├── InfoTypeAndValue.cs │ │ │ │ │ │ ├── InfoTypeAndValue.cs.meta │ │ │ │ │ │ ├── KeyRecRepContent.cs │ │ │ │ │ │ ├── KeyRecRepContent.cs.meta │ │ │ │ │ │ ├── NestedMessageContent.cs │ │ │ │ │ │ ├── NestedMessageContent.cs.meta │ │ │ │ │ │ ├── OobCert.cs │ │ │ │ │ │ ├── OobCert.cs.meta │ │ │ │ │ │ ├── OobCertHash.cs │ │ │ │ │ │ ├── OobCertHash.cs.meta │ │ │ │ │ │ ├── PKIBody.cs │ │ │ │ │ │ ├── PKIBody.cs.meta │ │ │ │ │ │ ├── PKIConfirmContent.cs │ │ │ │ │ │ ├── PKIConfirmContent.cs.meta │ │ │ │ │ │ ├── PKIFailureInfo.cs │ │ │ │ │ │ ├── PKIFailureInfo.cs.meta │ │ │ │ │ │ ├── PKIFreeText.cs │ │ │ │ │ │ ├── PKIFreeText.cs.meta │ │ │ │ │ │ ├── PKIHeader.cs │ │ │ │ │ │ ├── PKIHeader.cs.meta │ │ │ │ │ │ ├── PKIHeaderBuilder.cs │ │ │ │ │ │ ├── PKIHeaderBuilder.cs.meta │ │ │ │ │ │ ├── PKIMessage.cs │ │ │ │ │ │ ├── PKIMessage.cs.meta │ │ │ │ │ │ ├── PKIMessages.cs │ │ │ │ │ │ ├── PKIMessages.cs.meta │ │ │ │ │ │ ├── PKIStatus.cs │ │ │ │ │ │ ├── PKIStatus.cs.meta │ │ │ │ │ │ ├── PKIStatusInfo.cs │ │ │ │ │ │ ├── PKIStatusInfo.cs.meta │ │ │ │ │ │ ├── PbmParameter.cs │ │ │ │ │ │ ├── PbmParameter.cs.meta │ │ │ │ │ │ ├── PollRepContent.cs │ │ │ │ │ │ ├── PollRepContent.cs.meta │ │ │ │ │ │ ├── PollReqContent.cs │ │ │ │ │ │ ├── PollReqContent.cs.meta │ │ │ │ │ │ ├── PopoDecKeyChallContent.cs │ │ │ │ │ │ ├── PopoDecKeyChallContent.cs.meta │ │ │ │ │ │ ├── PopoDecKeyRespContent.cs │ │ │ │ │ │ ├── PopoDecKeyRespContent.cs.meta │ │ │ │ │ │ ├── ProtectedPart.cs │ │ │ │ │ │ ├── ProtectedPart.cs.meta │ │ │ │ │ │ ├── RevAnnContent.cs │ │ │ │ │ │ ├── RevAnnContent.cs.meta │ │ │ │ │ │ ├── RevDetails.cs │ │ │ │ │ │ ├── RevDetails.cs.meta │ │ │ │ │ │ ├── RevRepContent.cs │ │ │ │ │ │ ├── RevRepContent.cs.meta │ │ │ │ │ │ ├── RevRepContentBuilder.cs │ │ │ │ │ │ ├── RevRepContentBuilder.cs.meta │ │ │ │ │ │ ├── RevReqContent.cs │ │ │ │ │ │ ├── RevReqContent.cs.meta │ │ │ │ │ │ ├── RootCaKeyUpdateContent.cs │ │ │ │ │ │ └── RootCaKeyUpdateContent.cs.meta │ │ │ │ │ ├── cms.meta │ │ │ │ │ ├── cms │ │ │ │ │ │ ├── Attribute.cs │ │ │ │ │ │ ├── Attribute.cs.meta │ │ │ │ │ │ ├── AttributeTable.cs │ │ │ │ │ │ ├── AttributeTable.cs.meta │ │ │ │ │ │ ├── Attributes.cs │ │ │ │ │ │ ├── Attributes.cs.meta │ │ │ │ │ │ ├── AuthEnvelopedData.cs │ │ │ │ │ │ ├── AuthEnvelopedData.cs.meta │ │ │ │ │ │ ├── AuthEnvelopedDataParser.cs │ │ │ │ │ │ ├── AuthEnvelopedDataParser.cs.meta │ │ │ │ │ │ ├── AuthenticatedData.cs │ │ │ │ │ │ ├── AuthenticatedData.cs.meta │ │ │ │ │ │ ├── AuthenticatedDataParser.cs │ │ │ │ │ │ ├── AuthenticatedDataParser.cs.meta │ │ │ │ │ │ ├── CMSAttributes.cs │ │ │ │ │ │ ├── CMSAttributes.cs.meta │ │ │ │ │ │ ├── CMSObjectIdentifiers.cs │ │ │ │ │ │ ├── CMSObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── CompressedData.cs │ │ │ │ │ │ ├── CompressedData.cs.meta │ │ │ │ │ │ ├── CompressedDataParser.cs │ │ │ │ │ │ ├── CompressedDataParser.cs.meta │ │ │ │ │ │ ├── ContentInfo.cs │ │ │ │ │ │ ├── ContentInfo.cs.meta │ │ │ │ │ │ ├── ContentInfoParser.cs │ │ │ │ │ │ ├── ContentInfoParser.cs.meta │ │ │ │ │ │ ├── EncryptedContentInfo.cs │ │ │ │ │ │ ├── EncryptedContentInfo.cs.meta │ │ │ │ │ │ ├── EncryptedContentInfoParser.cs │ │ │ │ │ │ ├── EncryptedContentInfoParser.cs.meta │ │ │ │ │ │ ├── EncryptedData.cs │ │ │ │ │ │ ├── EncryptedData.cs.meta │ │ │ │ │ │ ├── EnvelopedData.cs │ │ │ │ │ │ ├── EnvelopedData.cs.meta │ │ │ │ │ │ ├── EnvelopedDataParser.cs │ │ │ │ │ │ ├── EnvelopedDataParser.cs.meta │ │ │ │ │ │ ├── Evidence.cs │ │ │ │ │ │ ├── Evidence.cs.meta │ │ │ │ │ │ ├── IssuerAndSerialNumber.cs │ │ │ │ │ │ ├── IssuerAndSerialNumber.cs.meta │ │ │ │ │ │ ├── KEKIdentifier.cs │ │ │ │ │ │ ├── KEKIdentifier.cs.meta │ │ │ │ │ │ ├── KEKRecipientInfo.cs │ │ │ │ │ │ ├── KEKRecipientInfo.cs.meta │ │ │ │ │ │ ├── KeyAgreeRecipientIdentifier.cs │ │ │ │ │ │ ├── KeyAgreeRecipientIdentifier.cs.meta │ │ │ │ │ │ ├── KeyAgreeRecipientInfo.cs │ │ │ │ │ │ ├── KeyAgreeRecipientInfo.cs.meta │ │ │ │ │ │ ├── KeyTransRecipientInfo.cs │ │ │ │ │ │ ├── KeyTransRecipientInfo.cs.meta │ │ │ │ │ │ ├── MetaData.cs │ │ │ │ │ │ ├── MetaData.cs.meta │ │ │ │ │ │ ├── OriginatorIdentifierOrKey.cs │ │ │ │ │ │ ├── OriginatorIdentifierOrKey.cs.meta │ │ │ │ │ │ ├── OriginatorInfo.cs │ │ │ │ │ │ ├── OriginatorInfo.cs.meta │ │ │ │ │ │ ├── OriginatorPublicKey.cs │ │ │ │ │ │ ├── OriginatorPublicKey.cs.meta │ │ │ │ │ │ ├── OtherKeyAttribute.cs │ │ │ │ │ │ ├── OtherKeyAttribute.cs.meta │ │ │ │ │ │ ├── OtherRecipientInfo.cs │ │ │ │ │ │ ├── OtherRecipientInfo.cs.meta │ │ │ │ │ │ ├── OtherRevocationInfoFormat.cs │ │ │ │ │ │ ├── OtherRevocationInfoFormat.cs.meta │ │ │ │ │ │ ├── PasswordRecipientInfo.cs │ │ │ │ │ │ ├── PasswordRecipientInfo.cs.meta │ │ │ │ │ │ ├── RecipientEncryptedKey.cs │ │ │ │ │ │ ├── RecipientEncryptedKey.cs.meta │ │ │ │ │ │ ├── RecipientIdentifier.cs │ │ │ │ │ │ ├── RecipientIdentifier.cs.meta │ │ │ │ │ │ ├── RecipientInfo.cs │ │ │ │ │ │ ├── RecipientInfo.cs.meta │ │ │ │ │ │ ├── RecipientKeyIdentifier.cs │ │ │ │ │ │ ├── RecipientKeyIdentifier.cs.meta │ │ │ │ │ │ ├── SCVPReqRes.cs │ │ │ │ │ │ ├── SCVPReqRes.cs.meta │ │ │ │ │ │ ├── SignedData.cs │ │ │ │ │ │ ├── SignedData.cs.meta │ │ │ │ │ │ ├── SignedDataParser.cs │ │ │ │ │ │ ├── SignedDataParser.cs.meta │ │ │ │ │ │ ├── SignerIdentifier.cs │ │ │ │ │ │ ├── SignerIdentifier.cs.meta │ │ │ │ │ │ ├── SignerInfo.cs │ │ │ │ │ │ ├── SignerInfo.cs.meta │ │ │ │ │ │ ├── Time.cs │ │ │ │ │ │ ├── Time.cs.meta │ │ │ │ │ │ ├── TimeStampAndCRL.cs │ │ │ │ │ │ ├── TimeStampAndCRL.cs.meta │ │ │ │ │ │ ├── TimeStampTokenEvidence.cs │ │ │ │ │ │ ├── TimeStampTokenEvidence.cs.meta │ │ │ │ │ │ ├── TimeStampedData.cs │ │ │ │ │ │ ├── TimeStampedData.cs.meta │ │ │ │ │ │ ├── TimeStampedDataParser.cs │ │ │ │ │ │ ├── TimeStampedDataParser.cs.meta │ │ │ │ │ │ ├── ecc.meta │ │ │ │ │ │ └── ecc │ │ │ │ │ │ │ ├── MQVuserKeyingMaterial.cs │ │ │ │ │ │ │ └── MQVuserKeyingMaterial.cs.meta │ │ │ │ │ ├── crmf.meta │ │ │ │ │ ├── crmf │ │ │ │ │ │ ├── AttributeTypeAndValue.cs │ │ │ │ │ │ ├── AttributeTypeAndValue.cs.meta │ │ │ │ │ │ ├── CertId.cs │ │ │ │ │ │ ├── CertId.cs.meta │ │ │ │ │ │ ├── CertReqMessages.cs │ │ │ │ │ │ ├── CertReqMessages.cs.meta │ │ │ │ │ │ ├── CertReqMsg.cs │ │ │ │ │ │ ├── CertReqMsg.cs.meta │ │ │ │ │ │ ├── CertRequest.cs │ │ │ │ │ │ ├── CertRequest.cs.meta │ │ │ │ │ │ ├── CertTemplate.cs │ │ │ │ │ │ ├── CertTemplate.cs.meta │ │ │ │ │ │ ├── CertTemplateBuilder.cs │ │ │ │ │ │ ├── CertTemplateBuilder.cs.meta │ │ │ │ │ │ ├── Controls.cs │ │ │ │ │ │ ├── Controls.cs.meta │ │ │ │ │ │ ├── CrmfObjectIdentifiers.cs │ │ │ │ │ │ ├── CrmfObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── EncKeyWithID.cs │ │ │ │ │ │ ├── EncKeyWithID.cs.meta │ │ │ │ │ │ ├── EncryptedKey.cs │ │ │ │ │ │ ├── EncryptedKey.cs.meta │ │ │ │ │ │ ├── EncryptedValue.cs │ │ │ │ │ │ ├── EncryptedValue.cs.meta │ │ │ │ │ │ ├── OptionalValidity.cs │ │ │ │ │ │ ├── OptionalValidity.cs.meta │ │ │ │ │ │ ├── PKIArchiveOptions.cs │ │ │ │ │ │ ├── PKIArchiveOptions.cs.meta │ │ │ │ │ │ ├── PKIPublicationInfo.cs │ │ │ │ │ │ ├── PKIPublicationInfo.cs.meta │ │ │ │ │ │ ├── PKMacValue.cs │ │ │ │ │ │ ├── PKMacValue.cs.meta │ │ │ │ │ │ ├── PopoPrivKey.cs │ │ │ │ │ │ ├── PopoPrivKey.cs.meta │ │ │ │ │ │ ├── PopoSigningKey.cs │ │ │ │ │ │ ├── PopoSigningKey.cs.meta │ │ │ │ │ │ ├── PopoSigningKeyInput.cs │ │ │ │ │ │ ├── PopoSigningKeyInput.cs.meta │ │ │ │ │ │ ├── ProofOfPossession.cs │ │ │ │ │ │ ├── ProofOfPossession.cs.meta │ │ │ │ │ │ ├── SinglePubInfo.cs │ │ │ │ │ │ ├── SinglePubInfo.cs.meta │ │ │ │ │ │ ├── SubsequentMessage.cs │ │ │ │ │ │ └── SubsequentMessage.cs.meta │ │ │ │ │ ├── cryptlib.meta │ │ │ │ │ ├── cryptlib │ │ │ │ │ │ ├── CryptlibObjectIdentifiers.cs │ │ │ │ │ │ └── CryptlibObjectIdentifiers.cs.meta │ │ │ │ │ ├── cryptopro.meta │ │ │ │ │ ├── cryptopro │ │ │ │ │ │ ├── CryptoProObjectIdentifiers.cs │ │ │ │ │ │ ├── CryptoProObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── ECGOST3410NamedCurves.cs │ │ │ │ │ │ ├── ECGOST3410NamedCurves.cs.meta │ │ │ │ │ │ ├── ECGOST3410ParamSetParameters.cs │ │ │ │ │ │ ├── ECGOST3410ParamSetParameters.cs.meta │ │ │ │ │ │ ├── GOST28147Parameters.cs │ │ │ │ │ │ ├── GOST28147Parameters.cs.meta │ │ │ │ │ │ ├── GOST3410NamedParameters.cs │ │ │ │ │ │ ├── GOST3410NamedParameters.cs.meta │ │ │ │ │ │ ├── GOST3410ParamSetParameters.cs │ │ │ │ │ │ ├── GOST3410ParamSetParameters.cs.meta │ │ │ │ │ │ ├── GOST3410PublicKeyAlgParameters.cs │ │ │ │ │ │ └── GOST3410PublicKeyAlgParameters.cs.meta │ │ │ │ │ ├── eac.meta │ │ │ │ │ ├── eac │ │ │ │ │ │ ├── EACObjectIdentifiers.cs │ │ │ │ │ │ └── EACObjectIdentifiers.cs.meta │ │ │ │ │ ├── edec.meta │ │ │ │ │ ├── edec │ │ │ │ │ │ ├── EdECObjectIdentifiers.cs │ │ │ │ │ │ └── EdECObjectIdentifiers.cs.meta │ │ │ │ │ ├── esf.meta │ │ │ │ │ ├── esf │ │ │ │ │ │ ├── CertificateValues.cs │ │ │ │ │ │ ├── CertificateValues.cs.meta │ │ │ │ │ │ ├── CommitmentTypeIdentifier.cs │ │ │ │ │ │ ├── CommitmentTypeIdentifier.cs.meta │ │ │ │ │ │ ├── CommitmentTypeIndication.cs │ │ │ │ │ │ ├── CommitmentTypeIndication.cs.meta │ │ │ │ │ │ ├── CommitmentTypeQualifier.cs │ │ │ │ │ │ ├── CommitmentTypeQualifier.cs.meta │ │ │ │ │ │ ├── CompleteCertificateRefs.cs │ │ │ │ │ │ ├── CompleteCertificateRefs.cs.meta │ │ │ │ │ │ ├── CompleteRevocationRefs.cs │ │ │ │ │ │ ├── CompleteRevocationRefs.cs.meta │ │ │ │ │ │ ├── CrlIdentifier.cs │ │ │ │ │ │ ├── CrlIdentifier.cs.meta │ │ │ │ │ │ ├── CrlListID.cs │ │ │ │ │ │ ├── CrlListID.cs.meta │ │ │ │ │ │ ├── CrlOcspRef.cs │ │ │ │ │ │ ├── CrlOcspRef.cs.meta │ │ │ │ │ │ ├── CrlValidatedID.cs │ │ │ │ │ │ ├── CrlValidatedID.cs.meta │ │ │ │ │ │ ├── ESFAttributes.cs │ │ │ │ │ │ ├── ESFAttributes.cs.meta │ │ │ │ │ │ ├── OcspIdentifier.cs │ │ │ │ │ │ ├── OcspIdentifier.cs.meta │ │ │ │ │ │ ├── OcspListID.cs │ │ │ │ │ │ ├── OcspListID.cs.meta │ │ │ │ │ │ ├── OcspResponsesID.cs │ │ │ │ │ │ ├── OcspResponsesID.cs.meta │ │ │ │ │ │ ├── OtherCertID.cs │ │ │ │ │ │ ├── OtherCertID.cs.meta │ │ │ │ │ │ ├── OtherHash.cs │ │ │ │ │ │ ├── OtherHash.cs.meta │ │ │ │ │ │ ├── OtherHashAlgAndValue.cs │ │ │ │ │ │ ├── OtherHashAlgAndValue.cs.meta │ │ │ │ │ │ ├── OtherRevRefs.cs │ │ │ │ │ │ ├── OtherRevRefs.cs.meta │ │ │ │ │ │ ├── OtherRevVals.cs │ │ │ │ │ │ ├── OtherRevVals.cs.meta │ │ │ │ │ │ ├── OtherSigningCertificate.cs │ │ │ │ │ │ ├── OtherSigningCertificate.cs.meta │ │ │ │ │ │ ├── RevocationValues.cs │ │ │ │ │ │ ├── RevocationValues.cs.meta │ │ │ │ │ │ ├── SigPolicyQualifierInfo.cs │ │ │ │ │ │ ├── SigPolicyQualifierInfo.cs.meta │ │ │ │ │ │ ├── SignaturePolicyId.cs │ │ │ │ │ │ ├── SignaturePolicyId.cs.meta │ │ │ │ │ │ ├── SignaturePolicyIdentifier.cs │ │ │ │ │ │ ├── SignaturePolicyIdentifier.cs.meta │ │ │ │ │ │ ├── SignerAttribute.cs │ │ │ │ │ │ ├── SignerAttribute.cs.meta │ │ │ │ │ │ ├── SignerLocation.cs │ │ │ │ │ │ └── SignerLocation.cs.meta │ │ │ │ │ ├── ess.meta │ │ │ │ │ ├── ess │ │ │ │ │ │ ├── ContentHints.cs │ │ │ │ │ │ ├── ContentHints.cs.meta │ │ │ │ │ │ ├── ContentIdentifier.cs │ │ │ │ │ │ ├── ContentIdentifier.cs.meta │ │ │ │ │ │ ├── ESSCertID.cs │ │ │ │ │ │ ├── ESSCertID.cs.meta │ │ │ │ │ │ ├── ESSCertIDv2.cs │ │ │ │ │ │ ├── ESSCertIDv2.cs.meta │ │ │ │ │ │ ├── OtherCertID.cs │ │ │ │ │ │ ├── OtherCertID.cs.meta │ │ │ │ │ │ ├── OtherSigningCertificate.cs │ │ │ │ │ │ ├── OtherSigningCertificate.cs.meta │ │ │ │ │ │ ├── SigningCertificate.cs │ │ │ │ │ │ ├── SigningCertificate.cs.meta │ │ │ │ │ │ ├── SigningCertificateV2.cs │ │ │ │ │ │ └── SigningCertificateV2.cs.meta │ │ │ │ │ ├── gm.meta │ │ │ │ │ ├── gm │ │ │ │ │ │ ├── GMNamedCurves.cs │ │ │ │ │ │ ├── GMNamedCurves.cs.meta │ │ │ │ │ │ ├── GMObjectIdentifiers.cs │ │ │ │ │ │ └── GMObjectIdentifiers.cs.meta │ │ │ │ │ ├── gnu.meta │ │ │ │ │ ├── gnu │ │ │ │ │ │ ├── GNUObjectIdentifiers.cs │ │ │ │ │ │ └── GNUObjectIdentifiers.cs.meta │ │ │ │ │ ├── iana.meta │ │ │ │ │ ├── iana │ │ │ │ │ │ ├── IANAObjectIdentifiers.cs │ │ │ │ │ │ └── IANAObjectIdentifiers.cs.meta │ │ │ │ │ ├── icao.meta │ │ │ │ │ ├── icao │ │ │ │ │ │ ├── CscaMasterList.cs │ │ │ │ │ │ ├── CscaMasterList.cs.meta │ │ │ │ │ │ ├── DataGroupHash.cs │ │ │ │ │ │ ├── DataGroupHash.cs.meta │ │ │ │ │ │ ├── ICAOObjectIdentifiers.cs │ │ │ │ │ │ ├── ICAOObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── LDSSecurityObject.cs │ │ │ │ │ │ ├── LDSSecurityObject.cs.meta │ │ │ │ │ │ ├── LDSVersionInfo.cs │ │ │ │ │ │ └── LDSVersionInfo.cs.meta │ │ │ │ │ ├── isismtt.meta │ │ │ │ │ ├── isismtt │ │ │ │ │ │ ├── ISISMTTObjectIdentifiers.cs │ │ │ │ │ │ ├── ISISMTTObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── ocsp.meta │ │ │ │ │ │ ├── ocsp │ │ │ │ │ │ │ ├── CertHash.cs │ │ │ │ │ │ │ ├── CertHash.cs.meta │ │ │ │ │ │ │ ├── RequestedCertificate.cs │ │ │ │ │ │ │ └── RequestedCertificate.cs.meta │ │ │ │ │ │ ├── x509.meta │ │ │ │ │ │ └── x509 │ │ │ │ │ │ │ ├── AdditionalInformationSyntax.cs │ │ │ │ │ │ │ ├── AdditionalInformationSyntax.cs.meta │ │ │ │ │ │ │ ├── AdmissionSyntax.cs │ │ │ │ │ │ │ ├── AdmissionSyntax.cs.meta │ │ │ │ │ │ │ ├── Admissions.cs │ │ │ │ │ │ │ ├── Admissions.cs.meta │ │ │ │ │ │ │ ├── DeclarationOfMajority.cs │ │ │ │ │ │ │ ├── DeclarationOfMajority.cs.meta │ │ │ │ │ │ │ ├── MonetaryLimit.cs │ │ │ │ │ │ │ ├── MonetaryLimit.cs.meta │ │ │ │ │ │ │ ├── NamingAuthority.cs │ │ │ │ │ │ │ ├── NamingAuthority.cs.meta │ │ │ │ │ │ │ ├── ProcurationSyntax.cs │ │ │ │ │ │ │ ├── ProcurationSyntax.cs.meta │ │ │ │ │ │ │ ├── ProfessionInfo.cs │ │ │ │ │ │ │ ├── ProfessionInfo.cs.meta │ │ │ │ │ │ │ ├── Restriction.cs │ │ │ │ │ │ │ └── Restriction.cs.meta │ │ │ │ │ ├── kisa.meta │ │ │ │ │ ├── kisa │ │ │ │ │ │ ├── KISAObjectIdentifiers.cs │ │ │ │ │ │ └── KISAObjectIdentifiers.cs.meta │ │ │ │ │ ├── microsoft.meta │ │ │ │ │ ├── microsoft │ │ │ │ │ │ ├── MicrosoftObjectIdentifiers.cs │ │ │ │ │ │ └── MicrosoftObjectIdentifiers.cs.meta │ │ │ │ │ ├── misc.meta │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── CAST5CBCParameters.cs │ │ │ │ │ │ ├── CAST5CBCParameters.cs.meta │ │ │ │ │ │ ├── IDEACBCPar.cs │ │ │ │ │ │ ├── IDEACBCPar.cs.meta │ │ │ │ │ │ ├── MiscObjectIdentifiers.cs │ │ │ │ │ │ ├── MiscObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── NetscapeCertType.cs │ │ │ │ │ │ ├── NetscapeCertType.cs.meta │ │ │ │ │ │ ├── NetscapeRevocationURL.cs │ │ │ │ │ │ ├── NetscapeRevocationURL.cs.meta │ │ │ │ │ │ ├── VerisignCzagExtension.cs │ │ │ │ │ │ └── VerisignCzagExtension.cs.meta │ │ │ │ │ ├── mozilla.meta │ │ │ │ │ ├── mozilla │ │ │ │ │ │ ├── PublicKeyAndChallenge.cs │ │ │ │ │ │ └── PublicKeyAndChallenge.cs.meta │ │ │ │ │ ├── nist.meta │ │ │ │ │ ├── nist │ │ │ │ │ │ ├── KMACwithSHAKE128_params.cs │ │ │ │ │ │ ├── KMACwithSHAKE128_params.cs.meta │ │ │ │ │ │ ├── KMACwithSHAKE256_params.cs │ │ │ │ │ │ ├── KMACwithSHAKE256_params.cs.meta │ │ │ │ │ │ ├── NISTNamedCurves.cs │ │ │ │ │ │ ├── NISTNamedCurves.cs.meta │ │ │ │ │ │ ├── NISTObjectIdentifiers.cs │ │ │ │ │ │ └── NISTObjectIdentifiers.cs.meta │ │ │ │ │ ├── nsri.meta │ │ │ │ │ ├── nsri │ │ │ │ │ │ ├── NsriObjectIdentifiers.cs │ │ │ │ │ │ └── NsriObjectIdentifiers.cs.meta │ │ │ │ │ ├── ntt.meta │ │ │ │ │ ├── ntt │ │ │ │ │ │ ├── NTTObjectIdentifiers.cs │ │ │ │ │ │ └── NTTObjectIdentifiers.cs.meta │ │ │ │ │ ├── ocsp.meta │ │ │ │ │ ├── ocsp │ │ │ │ │ │ ├── BasicOCSPResponse.cs │ │ │ │ │ │ ├── BasicOCSPResponse.cs.meta │ │ │ │ │ │ ├── CertID.cs │ │ │ │ │ │ ├── CertID.cs.meta │ │ │ │ │ │ ├── CertStatus.cs │ │ │ │ │ │ ├── CertStatus.cs.meta │ │ │ │ │ │ ├── CrlID.cs │ │ │ │ │ │ ├── CrlID.cs.meta │ │ │ │ │ │ ├── OCSPObjectIdentifiers.cs │ │ │ │ │ │ ├── OCSPObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── OCSPRequest.cs │ │ │ │ │ │ ├── OCSPRequest.cs.meta │ │ │ │ │ │ ├── OCSPResponse.cs │ │ │ │ │ │ ├── OCSPResponse.cs.meta │ │ │ │ │ │ ├── OCSPResponseStatus.cs │ │ │ │ │ │ ├── OCSPResponseStatus.cs.meta │ │ │ │ │ │ ├── Request.cs │ │ │ │ │ │ ├── Request.cs.meta │ │ │ │ │ │ ├── ResponderID.cs │ │ │ │ │ │ ├── ResponderID.cs.meta │ │ │ │ │ │ ├── ResponseBytes.cs │ │ │ │ │ │ ├── ResponseBytes.cs.meta │ │ │ │ │ │ ├── ResponseData.cs │ │ │ │ │ │ ├── ResponseData.cs.meta │ │ │ │ │ │ ├── RevokedInfo.cs │ │ │ │ │ │ ├── RevokedInfo.cs.meta │ │ │ │ │ │ ├── ServiceLocator.cs │ │ │ │ │ │ ├── ServiceLocator.cs.meta │ │ │ │ │ │ ├── Signature.cs │ │ │ │ │ │ ├── Signature.cs.meta │ │ │ │ │ │ ├── SingleResponse.cs │ │ │ │ │ │ ├── SingleResponse.cs.meta │ │ │ │ │ │ ├── TBSRequest.cs │ │ │ │ │ │ └── TBSRequest.cs.meta │ │ │ │ │ ├── oiw.meta │ │ │ │ │ ├── oiw │ │ │ │ │ │ ├── ElGamalParameter.cs │ │ │ │ │ │ ├── ElGamalParameter.cs.meta │ │ │ │ │ │ ├── OIWObjectIdentifiers.cs │ │ │ │ │ │ └── OIWObjectIdentifiers.cs.meta │ │ │ │ │ ├── pkcs.meta │ │ │ │ │ ├── pkcs │ │ │ │ │ │ ├── Attribute.cs │ │ │ │ │ │ ├── Attribute.cs.meta │ │ │ │ │ │ ├── AuthenticatedSafe.cs │ │ │ │ │ │ ├── AuthenticatedSafe.cs.meta │ │ │ │ │ │ ├── CertBag.cs │ │ │ │ │ │ ├── CertBag.cs.meta │ │ │ │ │ │ ├── CertificationRequest.cs │ │ │ │ │ │ ├── CertificationRequest.cs.meta │ │ │ │ │ │ ├── CertificationRequestInfo.cs │ │ │ │ │ │ ├── CertificationRequestInfo.cs.meta │ │ │ │ │ │ ├── ContentInfo.cs │ │ │ │ │ │ ├── ContentInfo.cs.meta │ │ │ │ │ │ ├── DHParameter.cs │ │ │ │ │ │ ├── DHParameter.cs.meta │ │ │ │ │ │ ├── EncryptedData.cs │ │ │ │ │ │ ├── EncryptedData.cs.meta │ │ │ │ │ │ ├── EncryptedPrivateKeyInfo.cs │ │ │ │ │ │ ├── EncryptedPrivateKeyInfo.cs.meta │ │ │ │ │ │ ├── EncryptionScheme.cs │ │ │ │ │ │ ├── EncryptionScheme.cs.meta │ │ │ │ │ │ ├── IssuerAndSerialNumber.cs │ │ │ │ │ │ ├── IssuerAndSerialNumber.cs.meta │ │ │ │ │ │ ├── KeyDerivationFunc.cs │ │ │ │ │ │ ├── KeyDerivationFunc.cs.meta │ │ │ │ │ │ ├── MacData.cs │ │ │ │ │ │ ├── MacData.cs.meta │ │ │ │ │ │ ├── PBEParameter.cs │ │ │ │ │ │ ├── PBEParameter.cs.meta │ │ │ │ │ │ ├── PBES2Parameters.cs │ │ │ │ │ │ ├── PBES2Parameters.cs.meta │ │ │ │ │ │ ├── PBKDF2Params.cs │ │ │ │ │ │ ├── PBKDF2Params.cs.meta │ │ │ │ │ │ ├── PKCS12PBEParams.cs │ │ │ │ │ │ ├── PKCS12PBEParams.cs.meta │ │ │ │ │ │ ├── PKCSObjectIdentifiers.cs │ │ │ │ │ │ ├── PKCSObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── Pfx.cs │ │ │ │ │ │ ├── Pfx.cs.meta │ │ │ │ │ │ ├── PrivateKeyInfo.cs │ │ │ │ │ │ ├── PrivateKeyInfo.cs.meta │ │ │ │ │ │ ├── RC2CBCParameter.cs │ │ │ │ │ │ ├── RC2CBCParameter.cs.meta │ │ │ │ │ │ ├── RSAESOAEPparams.cs │ │ │ │ │ │ ├── RSAESOAEPparams.cs.meta │ │ │ │ │ │ ├── RSAPrivateKeyStructure.cs │ │ │ │ │ │ ├── RSAPrivateKeyStructure.cs.meta │ │ │ │ │ │ ├── RSASSAPSSparams.cs │ │ │ │ │ │ ├── RSASSAPSSparams.cs.meta │ │ │ │ │ │ ├── SafeBag.cs │ │ │ │ │ │ ├── SafeBag.cs.meta │ │ │ │ │ │ ├── SignedData.cs │ │ │ │ │ │ ├── SignedData.cs.meta │ │ │ │ │ │ ├── SignerInfo.cs │ │ │ │ │ │ └── SignerInfo.cs.meta │ │ │ │ │ ├── rosstandart.meta │ │ │ │ │ ├── rosstandart │ │ │ │ │ │ ├── RosstandartObjectIdentifiers.cs │ │ │ │ │ │ └── RosstandartObjectIdentifiers.cs.meta │ │ │ │ │ ├── sec.meta │ │ │ │ │ ├── sec │ │ │ │ │ │ ├── ECPrivateKeyStructure.cs │ │ │ │ │ │ ├── ECPrivateKeyStructure.cs.meta │ │ │ │ │ │ ├── SECNamedCurves.cs │ │ │ │ │ │ ├── SECNamedCurves.cs.meta │ │ │ │ │ │ ├── SECObjectIdentifiers.cs │ │ │ │ │ │ └── SECObjectIdentifiers.cs.meta │ │ │ │ │ ├── smime.meta │ │ │ │ │ ├── smime │ │ │ │ │ │ ├── SMIMEAttributes.cs │ │ │ │ │ │ ├── SMIMEAttributes.cs.meta │ │ │ │ │ │ ├── SMIMECapabilities.cs │ │ │ │ │ │ ├── SMIMECapabilities.cs.meta │ │ │ │ │ │ ├── SMIMECapabilitiesAttribute.cs │ │ │ │ │ │ ├── SMIMECapabilitiesAttribute.cs.meta │ │ │ │ │ │ ├── SMIMECapability.cs │ │ │ │ │ │ ├── SMIMECapability.cs.meta │ │ │ │ │ │ ├── SMIMECapabilityVector.cs │ │ │ │ │ │ ├── SMIMECapabilityVector.cs.meta │ │ │ │ │ │ ├── SMIMEEncryptionKeyPreferenceAttribute.cs │ │ │ │ │ │ └── SMIMEEncryptionKeyPreferenceAttribute.cs.meta │ │ │ │ │ ├── teletrust.meta │ │ │ │ │ ├── teletrust │ │ │ │ │ │ ├── TeleTrusTNamedCurves.cs │ │ │ │ │ │ ├── TeleTrusTNamedCurves.cs.meta │ │ │ │ │ │ ├── TeleTrusTObjectIdentifiers.cs │ │ │ │ │ │ └── TeleTrusTObjectIdentifiers.cs.meta │ │ │ │ │ ├── tsp.meta │ │ │ │ │ ├── tsp │ │ │ │ │ │ ├── Accuracy.cs │ │ │ │ │ │ ├── Accuracy.cs.meta │ │ │ │ │ │ ├── MessageImprint.cs │ │ │ │ │ │ ├── MessageImprint.cs.meta │ │ │ │ │ │ ├── TSTInfo.cs │ │ │ │ │ │ ├── TSTInfo.cs.meta │ │ │ │ │ │ ├── TimeStampReq.cs │ │ │ │ │ │ ├── TimeStampReq.cs.meta │ │ │ │ │ │ ├── TimeStampResp.cs │ │ │ │ │ │ └── TimeStampResp.cs.meta │ │ │ │ │ ├── ua.meta │ │ │ │ │ ├── ua │ │ │ │ │ │ ├── UAObjectIdentifiers.cs │ │ │ │ │ │ └── UAObjectIdentifiers.cs.meta │ │ │ │ │ ├── util.meta │ │ │ │ │ ├── util │ │ │ │ │ │ ├── Asn1Dump.cs │ │ │ │ │ │ ├── Asn1Dump.cs.meta │ │ │ │ │ │ ├── FilterStream.cs │ │ │ │ │ │ └── FilterStream.cs.meta │ │ │ │ │ ├── x500.meta │ │ │ │ │ ├── x500 │ │ │ │ │ │ ├── AttributeTypeAndValue.cs │ │ │ │ │ │ ├── AttributeTypeAndValue.cs.meta │ │ │ │ │ │ ├── DirectoryString.cs │ │ │ │ │ │ ├── DirectoryString.cs.meta │ │ │ │ │ │ ├── Rdn.cs │ │ │ │ │ │ ├── Rdn.cs.meta │ │ │ │ │ │ ├── style.meta │ │ │ │ │ │ └── style │ │ │ │ │ │ │ ├── IetfUtilities.cs │ │ │ │ │ │ │ └── IetfUtilities.cs.meta │ │ │ │ │ ├── x509.meta │ │ │ │ │ ├── x509 │ │ │ │ │ │ ├── AccessDescription.cs │ │ │ │ │ │ ├── AccessDescription.cs.meta │ │ │ │ │ │ ├── AlgorithmIdentifier.cs │ │ │ │ │ │ ├── AlgorithmIdentifier.cs.meta │ │ │ │ │ │ ├── AttCertIssuer.cs │ │ │ │ │ │ ├── AttCertIssuer.cs.meta │ │ │ │ │ │ ├── AttCertValidityPeriod.cs │ │ │ │ │ │ ├── AttCertValidityPeriod.cs.meta │ │ │ │ │ │ ├── Attribute.cs │ │ │ │ │ │ ├── Attribute.cs.meta │ │ │ │ │ │ ├── AttributeCertificate.cs │ │ │ │ │ │ ├── AttributeCertificate.cs.meta │ │ │ │ │ │ ├── AttributeCertificateInfo.cs │ │ │ │ │ │ ├── AttributeCertificateInfo.cs.meta │ │ │ │ │ │ ├── AttributeTable.cs │ │ │ │ │ │ ├── AttributeTable.cs.meta │ │ │ │ │ │ ├── AuthorityInformationAccess.cs │ │ │ │ │ │ ├── AuthorityInformationAccess.cs.meta │ │ │ │ │ │ ├── AuthorityKeyIdentifier.cs │ │ │ │ │ │ ├── AuthorityKeyIdentifier.cs.meta │ │ │ │ │ │ ├── BasicConstraints.cs │ │ │ │ │ │ ├── BasicConstraints.cs.meta │ │ │ │ │ │ ├── CRLDistPoint.cs │ │ │ │ │ │ ├── CRLDistPoint.cs.meta │ │ │ │ │ │ ├── CRLNumber.cs │ │ │ │ │ │ ├── CRLNumber.cs.meta │ │ │ │ │ │ ├── CRLReason.cs │ │ │ │ │ │ ├── CRLReason.cs.meta │ │ │ │ │ │ ├── CertPolicyId.cs │ │ │ │ │ │ ├── CertPolicyId.cs.meta │ │ │ │ │ │ ├── CertificateList.cs │ │ │ │ │ │ ├── CertificateList.cs.meta │ │ │ │ │ │ ├── CertificatePair.cs │ │ │ │ │ │ ├── CertificatePair.cs.meta │ │ │ │ │ │ ├── CertificatePolicies.cs │ │ │ │ │ │ ├── CertificatePolicies.cs.meta │ │ │ │ │ │ ├── DSAParameter.cs │ │ │ │ │ │ ├── DSAParameter.cs.meta │ │ │ │ │ │ ├── DigestInfo.cs │ │ │ │ │ │ ├── DigestInfo.cs.meta │ │ │ │ │ │ ├── DisplayText.cs │ │ │ │ │ │ ├── DisplayText.cs.meta │ │ │ │ │ │ ├── DistributionPoint.cs │ │ │ │ │ │ ├── DistributionPoint.cs.meta │ │ │ │ │ │ ├── DistributionPointName.cs │ │ │ │ │ │ ├── DistributionPointName.cs.meta │ │ │ │ │ │ ├── ExtendedKeyUsage.cs │ │ │ │ │ │ ├── ExtendedKeyUsage.cs.meta │ │ │ │ │ │ ├── GeneralName.cs │ │ │ │ │ │ ├── GeneralName.cs.meta │ │ │ │ │ │ ├── GeneralNames.cs │ │ │ │ │ │ ├── GeneralNames.cs.meta │ │ │ │ │ │ ├── GeneralSubtree.cs │ │ │ │ │ │ ├── GeneralSubtree.cs.meta │ │ │ │ │ │ ├── Holder.cs │ │ │ │ │ │ ├── Holder.cs.meta │ │ │ │ │ │ ├── IetfAttrSyntax.cs │ │ │ │ │ │ ├── IetfAttrSyntax.cs.meta │ │ │ │ │ │ ├── IssuerSerial.cs │ │ │ │ │ │ ├── IssuerSerial.cs.meta │ │ │ │ │ │ ├── IssuingDistributionPoint.cs │ │ │ │ │ │ ├── IssuingDistributionPoint.cs.meta │ │ │ │ │ │ ├── KeyPurposeId.cs │ │ │ │ │ │ ├── KeyPurposeId.cs.meta │ │ │ │ │ │ ├── KeyUsage.cs │ │ │ │ │ │ ├── KeyUsage.cs.meta │ │ │ │ │ │ ├── NameConstraints.cs │ │ │ │ │ │ ├── NameConstraints.cs.meta │ │ │ │ │ │ ├── NoticeReference.cs │ │ │ │ │ │ ├── NoticeReference.cs.meta │ │ │ │ │ │ ├── ObjectDigestInfo.cs │ │ │ │ │ │ ├── ObjectDigestInfo.cs.meta │ │ │ │ │ │ ├── OtherName.cs │ │ │ │ │ │ ├── OtherName.cs.meta │ │ │ │ │ │ ├── PolicyInformation.cs │ │ │ │ │ │ ├── PolicyInformation.cs.meta │ │ │ │ │ │ ├── PolicyMappings.cs │ │ │ │ │ │ ├── PolicyMappings.cs.meta │ │ │ │ │ │ ├── PolicyQualifierId.cs │ │ │ │ │ │ ├── PolicyQualifierId.cs.meta │ │ │ │ │ │ ├── PolicyQualifierInfo.cs │ │ │ │ │ │ ├── PolicyQualifierInfo.cs.meta │ │ │ │ │ │ ├── PrivateKeyUsagePeriod.cs │ │ │ │ │ │ ├── PrivateKeyUsagePeriod.cs.meta │ │ │ │ │ │ ├── RSAPublicKeyStructure.cs │ │ │ │ │ │ ├── RSAPublicKeyStructure.cs.meta │ │ │ │ │ │ ├── ReasonFlags.cs │ │ │ │ │ │ ├── ReasonFlags.cs.meta │ │ │ │ │ │ ├── RoleSyntax.cs │ │ │ │ │ │ ├── RoleSyntax.cs.meta │ │ │ │ │ │ ├── SubjectDirectoryAttributes.cs │ │ │ │ │ │ ├── SubjectDirectoryAttributes.cs.meta │ │ │ │ │ │ ├── SubjectKeyIdentifier.cs │ │ │ │ │ │ ├── SubjectKeyIdentifier.cs.meta │ │ │ │ │ │ ├── SubjectPublicKeyInfo.cs │ │ │ │ │ │ ├── SubjectPublicKeyInfo.cs.meta │ │ │ │ │ │ ├── TBSCertList.cs │ │ │ │ │ │ ├── TBSCertList.cs.meta │ │ │ │ │ │ ├── TBSCertificateStructure.cs │ │ │ │ │ │ ├── TBSCertificateStructure.cs.meta │ │ │ │ │ │ ├── Target.cs │ │ │ │ │ │ ├── Target.cs.meta │ │ │ │ │ │ ├── TargetInformation.cs │ │ │ │ │ │ ├── TargetInformation.cs.meta │ │ │ │ │ │ ├── Targets.cs │ │ │ │ │ │ ├── Targets.cs.meta │ │ │ │ │ │ ├── Time.cs │ │ │ │ │ │ ├── Time.cs.meta │ │ │ │ │ │ ├── UserNotice.cs │ │ │ │ │ │ ├── UserNotice.cs.meta │ │ │ │ │ │ ├── V1TBSCertificateGenerator.cs │ │ │ │ │ │ ├── V1TBSCertificateGenerator.cs.meta │ │ │ │ │ │ ├── V2AttributeCertificateInfoGenerator.cs │ │ │ │ │ │ ├── V2AttributeCertificateInfoGenerator.cs.meta │ │ │ │ │ │ ├── V2Form.cs │ │ │ │ │ │ ├── V2Form.cs.meta │ │ │ │ │ │ ├── V2TBSCertListGenerator.cs │ │ │ │ │ │ ├── V2TBSCertListGenerator.cs.meta │ │ │ │ │ │ ├── V3TBSCertificateGenerator.cs │ │ │ │ │ │ ├── V3TBSCertificateGenerator.cs.meta │ │ │ │ │ │ ├── X509Attributes.cs │ │ │ │ │ │ ├── X509Attributes.cs.meta │ │ │ │ │ │ ├── X509CertificateStructure.cs │ │ │ │ │ │ ├── X509CertificateStructure.cs.meta │ │ │ │ │ │ ├── X509DefaultEntryConverter.cs │ │ │ │ │ │ ├── X509DefaultEntryConverter.cs.meta │ │ │ │ │ │ ├── X509Extension.cs │ │ │ │ │ │ ├── X509Extension.cs.meta │ │ │ │ │ │ ├── X509Extensions.cs │ │ │ │ │ │ ├── X509Extensions.cs.meta │ │ │ │ │ │ ├── X509ExtensionsGenerator.cs │ │ │ │ │ │ ├── X509ExtensionsGenerator.cs.meta │ │ │ │ │ │ ├── X509Name.cs │ │ │ │ │ │ ├── X509Name.cs.meta │ │ │ │ │ │ ├── X509NameEntryConverter.cs │ │ │ │ │ │ ├── X509NameEntryConverter.cs.meta │ │ │ │ │ │ ├── X509NameTokenizer.cs │ │ │ │ │ │ ├── X509NameTokenizer.cs.meta │ │ │ │ │ │ ├── X509ObjectIdentifiers.cs │ │ │ │ │ │ ├── X509ObjectIdentifiers.cs.meta │ │ │ │ │ │ ├── qualified.meta │ │ │ │ │ │ ├── qualified │ │ │ │ │ │ │ ├── BiometricData.cs │ │ │ │ │ │ │ ├── BiometricData.cs.meta │ │ │ │ │ │ │ ├── ETSIQCObjectIdentifiers.cs │ │ │ │ │ │ │ ├── ETSIQCObjectIdentifiers.cs.meta │ │ │ │ │ │ │ ├── Iso4217CurrencyCode.cs │ │ │ │ │ │ │ ├── Iso4217CurrencyCode.cs.meta │ │ │ │ │ │ │ ├── MonetaryValue.cs │ │ │ │ │ │ │ ├── MonetaryValue.cs.meta │ │ │ │ │ │ │ ├── QCStatement.cs │ │ │ │ │ │ │ ├── QCStatement.cs.meta │ │ │ │ │ │ │ ├── RFC3739QCObjectIdentifiers.cs │ │ │ │ │ │ │ ├── RFC3739QCObjectIdentifiers.cs.meta │ │ │ │ │ │ │ ├── SemanticsInformation.cs │ │ │ │ │ │ │ ├── SemanticsInformation.cs.meta │ │ │ │ │ │ │ ├── TypeOfBiometricData.cs │ │ │ │ │ │ │ └── TypeOfBiometricData.cs.meta │ │ │ │ │ │ ├── sigi.meta │ │ │ │ │ │ └── sigi │ │ │ │ │ │ │ ├── NameOrPseudonym.cs │ │ │ │ │ │ │ ├── NameOrPseudonym.cs.meta │ │ │ │ │ │ │ ├── PersonalData.cs │ │ │ │ │ │ │ ├── PersonalData.cs.meta │ │ │ │ │ │ │ ├── SigIObjectIdentifiers.cs │ │ │ │ │ │ │ └── SigIObjectIdentifiers.cs.meta │ │ │ │ │ ├── x9.meta │ │ │ │ │ └── x9 │ │ │ │ │ │ ├── DHDomainParameters.cs │ │ │ │ │ │ ├── DHDomainParameters.cs.meta │ │ │ │ │ │ ├── DHPublicKey.cs │ │ │ │ │ │ ├── DHPublicKey.cs.meta │ │ │ │ │ │ ├── DHValidationParms.cs │ │ │ │ │ │ ├── DHValidationParms.cs.meta │ │ │ │ │ │ ├── ECNamedCurveTable.cs │ │ │ │ │ │ ├── ECNamedCurveTable.cs.meta │ │ │ │ │ │ ├── KeySpecificInfo.cs │ │ │ │ │ │ ├── KeySpecificInfo.cs.meta │ │ │ │ │ │ ├── OtherInfo.cs │ │ │ │ │ │ ├── OtherInfo.cs.meta │ │ │ │ │ │ ├── X962NamedCurves.cs │ │ │ │ │ │ ├── X962NamedCurves.cs.meta │ │ │ │ │ │ ├── X962Parameters.cs │ │ │ │ │ │ ├── X962Parameters.cs.meta │ │ │ │ │ │ ├── X9Curve.cs │ │ │ │ │ │ ├── X9Curve.cs.meta │ │ │ │ │ │ ├── X9ECParameters.cs │ │ │ │ │ │ ├── X9ECParameters.cs.meta │ │ │ │ │ │ ├── X9ECParametersHolder.cs │ │ │ │ │ │ ├── X9ECParametersHolder.cs.meta │ │ │ │ │ │ ├── X9ECPoint.cs │ │ │ │ │ │ ├── X9ECPoint.cs.meta │ │ │ │ │ │ ├── X9FieldElement.cs │ │ │ │ │ │ ├── X9FieldElement.cs.meta │ │ │ │ │ │ ├── X9FieldID.cs │ │ │ │ │ │ ├── X9FieldID.cs.meta │ │ │ │ │ │ ├── X9IntegerConverter.cs │ │ │ │ │ │ ├── X9IntegerConverter.cs.meta │ │ │ │ │ │ ├── X9ObjectIdentifiers.cs │ │ │ │ │ │ └── X9ObjectIdentifiers.cs.meta │ │ │ │ ├── bcpg.meta │ │ │ │ ├── bcpg │ │ │ │ │ ├── ArmoredInputStream.cs │ │ │ │ │ ├── ArmoredInputStream.cs.meta │ │ │ │ │ ├── ArmoredOutputStream.cs │ │ │ │ │ ├── ArmoredOutputStream.cs.meta │ │ │ │ │ ├── BcpgInputStream.cs │ │ │ │ │ ├── BcpgInputStream.cs.meta │ │ │ │ │ ├── BcpgObject.cs │ │ │ │ │ ├── BcpgObject.cs.meta │ │ │ │ │ ├── BcpgOutputStream.cs │ │ │ │ │ ├── BcpgOutputStream.cs.meta │ │ │ │ │ ├── CompressedDataPacket.cs │ │ │ │ │ ├── CompressedDataPacket.cs.meta │ │ │ │ │ ├── CompressionAlgorithmTags.cs │ │ │ │ │ ├── CompressionAlgorithmTags.cs.meta │ │ │ │ │ ├── ContainedPacket.cs │ │ │ │ │ ├── ContainedPacket.cs.meta │ │ │ │ │ ├── Crc24.cs │ │ │ │ │ ├── Crc24.cs.meta │ │ │ │ │ ├── DsaPublicBcpgKey.cs │ │ │ │ │ ├── DsaPublicBcpgKey.cs.meta │ │ │ │ │ ├── DsaSecretBcpgKey.cs │ │ │ │ │ ├── DsaSecretBcpgKey.cs.meta │ │ │ │ │ ├── ECDHPublicBCPGKey.cs │ │ │ │ │ ├── ECDHPublicBCPGKey.cs.meta │ │ │ │ │ ├── ECDsaPublicBCPGKey.cs │ │ │ │ │ ├── ECDsaPublicBCPGKey.cs.meta │ │ │ │ │ ├── ECPublicBCPGKey.cs │ │ │ │ │ ├── ECPublicBCPGKey.cs.meta │ │ │ │ │ ├── ECSecretBCPGKey.cs │ │ │ │ │ ├── ECSecretBCPGKey.cs.meta │ │ │ │ │ ├── EdDsaPublicBcpgKey.cs │ │ │ │ │ ├── EdDsaPublicBcpgKey.cs.meta │ │ │ │ │ ├── EdSecretBcpgKey.cs │ │ │ │ │ ├── EdSecretBcpgKey.cs.meta │ │ │ │ │ ├── ElGamalPublicBcpgKey.cs │ │ │ │ │ ├── ElGamalPublicBcpgKey.cs.meta │ │ │ │ │ ├── ElGamalSecretBcpgKey.cs │ │ │ │ │ ├── ElGamalSecretBcpgKey.cs.meta │ │ │ │ │ ├── ExperimentalPacket.cs │ │ │ │ │ ├── ExperimentalPacket.cs.meta │ │ │ │ │ ├── HashAlgorithmTags.cs │ │ │ │ │ ├── HashAlgorithmTags.cs.meta │ │ │ │ │ ├── IBcpgKey.cs │ │ │ │ │ ├── IBcpgKey.cs.meta │ │ │ │ │ ├── InputStreamPacket.cs │ │ │ │ │ ├── InputStreamPacket.cs.meta │ │ │ │ │ ├── LiteralDataPacket.cs │ │ │ │ │ ├── LiteralDataPacket.cs.meta │ │ │ │ │ ├── MPInteger.cs │ │ │ │ │ ├── MPInteger.cs.meta │ │ │ │ │ ├── MarkerPacket.cs │ │ │ │ │ ├── MarkerPacket.cs.meta │ │ │ │ │ ├── ModDetectionCodePacket.cs │ │ │ │ │ ├── ModDetectionCodePacket.cs.meta │ │ │ │ │ ├── OnePassSignaturePacket.cs │ │ │ │ │ ├── OnePassSignaturePacket.cs.meta │ │ │ │ │ ├── OutputStreamPacket.cs │ │ │ │ │ ├── OutputStreamPacket.cs.meta │ │ │ │ │ ├── Packet.cs │ │ │ │ │ ├── Packet.cs.meta │ │ │ │ │ ├── PacketTags.cs │ │ │ │ │ ├── PacketTags.cs.meta │ │ │ │ │ ├── PublicKeyAlgorithmTags.cs │ │ │ │ │ ├── PublicKeyAlgorithmTags.cs.meta │ │ │ │ │ ├── PublicKeyEncSessionPacket.cs │ │ │ │ │ ├── PublicKeyEncSessionPacket.cs.meta │ │ │ │ │ ├── PublicKeyPacket.cs │ │ │ │ │ ├── PublicKeyPacket.cs.meta │ │ │ │ │ ├── PublicSubkeyPacket.cs │ │ │ │ │ ├── PublicSubkeyPacket.cs.meta │ │ │ │ │ ├── RsaPublicBcpgKey.cs │ │ │ │ │ ├── RsaPublicBcpgKey.cs.meta │ │ │ │ │ ├── RsaSecretBcpgKey.cs │ │ │ │ │ ├── RsaSecretBcpgKey.cs.meta │ │ │ │ │ ├── S2k.cs │ │ │ │ │ ├── S2k.cs.meta │ │ │ │ │ ├── SecretKeyPacket.cs │ │ │ │ │ ├── SecretKeyPacket.cs.meta │ │ │ │ │ ├── SecretSubkeyPacket.cs │ │ │ │ │ ├── SecretSubkeyPacket.cs.meta │ │ │ │ │ ├── SignaturePacket.cs │ │ │ │ │ ├── SignaturePacket.cs.meta │ │ │ │ │ ├── SignatureSubpacket.cs │ │ │ │ │ ├── SignatureSubpacket.cs.meta │ │ │ │ │ ├── SignatureSubpacketTags.cs │ │ │ │ │ ├── SignatureSubpacketTags.cs.meta │ │ │ │ │ ├── SignatureSubpacketsReader.cs │ │ │ │ │ ├── SignatureSubpacketsReader.cs.meta │ │ │ │ │ ├── SymmetricEncDataPacket.cs │ │ │ │ │ ├── SymmetricEncDataPacket.cs.meta │ │ │ │ │ ├── SymmetricEncIntegrityPacket.cs │ │ │ │ │ ├── SymmetricEncIntegrityPacket.cs.meta │ │ │ │ │ ├── SymmetricKeyAlgorithmTags.cs │ │ │ │ │ ├── SymmetricKeyAlgorithmTags.cs.meta │ │ │ │ │ ├── SymmetricKeyEncSessionPacket.cs │ │ │ │ │ ├── SymmetricKeyEncSessionPacket.cs.meta │ │ │ │ │ ├── TrustPacket.cs │ │ │ │ │ ├── TrustPacket.cs.meta │ │ │ │ │ ├── UnsupportedPacketVersionException.cs │ │ │ │ │ ├── UnsupportedPacketVersionException.cs.meta │ │ │ │ │ ├── UserAttributePacket.cs │ │ │ │ │ ├── UserAttributePacket.cs.meta │ │ │ │ │ ├── UserAttributeSubpacket.cs │ │ │ │ │ ├── UserAttributeSubpacket.cs.meta │ │ │ │ │ ├── UserAttributeSubpacketTags.cs │ │ │ │ │ ├── UserAttributeSubpacketTags.cs.meta │ │ │ │ │ ├── UserAttributeSubpacketsReader.cs │ │ │ │ │ ├── UserAttributeSubpacketsReader.cs.meta │ │ │ │ │ ├── UserIdPacket.cs │ │ │ │ │ ├── UserIdPacket.cs.meta │ │ │ │ │ ├── attr.meta │ │ │ │ │ ├── attr │ │ │ │ │ │ ├── ImageAttrib.cs │ │ │ │ │ │ └── ImageAttrib.cs.meta │ │ │ │ │ ├── sig.meta │ │ │ │ │ └── sig │ │ │ │ │ │ ├── EmbeddedSignature.cs │ │ │ │ │ │ ├── EmbeddedSignature.cs.meta │ │ │ │ │ │ ├── Exportable.cs │ │ │ │ │ │ ├── Exportable.cs.meta │ │ │ │ │ │ ├── Features.cs │ │ │ │ │ │ ├── Features.cs.meta │ │ │ │ │ │ ├── IssuerKeyId.cs │ │ │ │ │ │ ├── IssuerKeyId.cs.meta │ │ │ │ │ │ ├── KeyExpirationTime.cs │ │ │ │ │ │ ├── KeyExpirationTime.cs.meta │ │ │ │ │ │ ├── KeyFlags.cs │ │ │ │ │ │ ├── KeyFlags.cs.meta │ │ │ │ │ │ ├── NotationData.cs │ │ │ │ │ │ ├── NotationData.cs.meta │ │ │ │ │ │ ├── PreferredAlgorithms.cs │ │ │ │ │ │ ├── PreferredAlgorithms.cs.meta │ │ │ │ │ │ ├── PrimaryUserId.cs │ │ │ │ │ │ ├── PrimaryUserId.cs.meta │ │ │ │ │ │ ├── Revocable.cs │ │ │ │ │ │ ├── Revocable.cs.meta │ │ │ │ │ │ ├── RevocationKey.cs │ │ │ │ │ │ ├── RevocationKey.cs.meta │ │ │ │ │ │ ├── RevocationKeyTags.cs │ │ │ │ │ │ ├── RevocationKeyTags.cs.meta │ │ │ │ │ │ ├── RevocationReason.cs │ │ │ │ │ │ ├── RevocationReason.cs.meta │ │ │ │ │ │ ├── RevocationReasonTags.cs │ │ │ │ │ │ ├── RevocationReasonTags.cs.meta │ │ │ │ │ │ ├── SignatureCreationTime.cs │ │ │ │ │ │ ├── SignatureCreationTime.cs.meta │ │ │ │ │ │ ├── SignatureExpirationTime.cs │ │ │ │ │ │ ├── SignatureExpirationTime.cs.meta │ │ │ │ │ │ ├── SignerUserId.cs │ │ │ │ │ │ ├── SignerUserId.cs.meta │ │ │ │ │ │ ├── TrustSignature.cs │ │ │ │ │ │ └── TrustSignature.cs.meta │ │ │ │ ├── cmp.meta │ │ │ │ ├── cmp │ │ │ │ │ ├── CertificateConfirmationContent.cs │ │ │ │ │ ├── CertificateConfirmationContent.cs.meta │ │ │ │ │ ├── CertificateConfirmationContentBuilder.cs │ │ │ │ │ ├── CertificateConfirmationContentBuilder.cs.meta │ │ │ │ │ ├── CertificateStatus.cs │ │ │ │ │ ├── CertificateStatus.cs.meta │ │ │ │ │ ├── CmpException.cs │ │ │ │ │ ├── CmpException.cs.meta │ │ │ │ │ ├── GeneralPkiMessage.cs │ │ │ │ │ ├── GeneralPkiMessage.cs.meta │ │ │ │ │ ├── ProtectedPkiMessage.cs │ │ │ │ │ ├── ProtectedPkiMessage.cs.meta │ │ │ │ │ ├── ProtectedPkiMessageBuilder.cs │ │ │ │ │ ├── ProtectedPkiMessageBuilder.cs.meta │ │ │ │ │ ├── RevocationDetails.cs │ │ │ │ │ ├── RevocationDetails.cs.meta │ │ │ │ │ ├── RevocationDetailsBuilder.cs │ │ │ │ │ └── RevocationDetailsBuilder.cs.meta │ │ │ │ ├── cms.meta │ │ │ │ ├── cms │ │ │ │ │ ├── BaseDigestCalculator.cs │ │ │ │ │ ├── BaseDigestCalculator.cs.meta │ │ │ │ │ ├── CMSAttributeTableGenerationException.cs │ │ │ │ │ ├── CMSAttributeTableGenerationException.cs.meta │ │ │ │ │ ├── CMSAttributeTableGenerator.cs │ │ │ │ │ ├── CMSAttributeTableGenerator.cs.meta │ │ │ │ │ ├── CMSAuthEnvelopedData.cs │ │ │ │ │ ├── CMSAuthEnvelopedData.cs.meta │ │ │ │ │ ├── CMSAuthEnvelopedGenerator.cs │ │ │ │ │ ├── CMSAuthEnvelopedGenerator.cs.meta │ │ │ │ │ ├── CMSAuthenticatedData.cs │ │ │ │ │ ├── CMSAuthenticatedData.cs.meta │ │ │ │ │ ├── CMSAuthenticatedDataGenerator.cs │ │ │ │ │ ├── CMSAuthenticatedDataGenerator.cs.meta │ │ │ │ │ ├── CMSAuthenticatedDataParser.cs │ │ │ │ │ ├── CMSAuthenticatedDataParser.cs.meta │ │ │ │ │ ├── CMSAuthenticatedDataStreamGenerator.cs │ │ │ │ │ ├── CMSAuthenticatedDataStreamGenerator.cs.meta │ │ │ │ │ ├── CMSAuthenticatedGenerator.cs │ │ │ │ │ ├── CMSAuthenticatedGenerator.cs.meta │ │ │ │ │ ├── CMSCompressedData.cs │ │ │ │ │ ├── CMSCompressedData.cs.meta │ │ │ │ │ ├── CMSCompressedDataGenerator.cs │ │ │ │ │ ├── CMSCompressedDataGenerator.cs.meta │ │ │ │ │ ├── CMSCompressedDataParser.cs │ │ │ │ │ ├── CMSCompressedDataParser.cs.meta │ │ │ │ │ ├── CMSCompressedDataStreamGenerator.cs │ │ │ │ │ ├── CMSCompressedDataStreamGenerator.cs.meta │ │ │ │ │ ├── CMSContentInfoParser.cs │ │ │ │ │ ├── CMSContentInfoParser.cs.meta │ │ │ │ │ ├── CMSEnvelopedData.cs │ │ │ │ │ ├── CMSEnvelopedData.cs.meta │ │ │ │ │ ├── CMSEnvelopedDataGenerator.cs │ │ │ │ │ ├── CMSEnvelopedDataGenerator.cs.meta │ │ │ │ │ ├── CMSEnvelopedDataParser.cs │ │ │ │ │ ├── CMSEnvelopedDataParser.cs.meta │ │ │ │ │ ├── CMSEnvelopedDataStreamGenerator.cs │ │ │ │ │ ├── CMSEnvelopedDataStreamGenerator.cs.meta │ │ │ │ │ ├── CMSEnvelopedGenerator.cs │ │ │ │ │ ├── CMSEnvelopedGenerator.cs.meta │ │ │ │ │ ├── CMSEnvelopedHelper.cs │ │ │ │ │ ├── CMSEnvelopedHelper.cs.meta │ │ │ │ │ ├── CMSException.cs │ │ │ │ │ ├── CMSException.cs.meta │ │ │ │ │ ├── CMSPBEKey.cs │ │ │ │ │ ├── CMSPBEKey.cs.meta │ │ │ │ │ ├── CMSProcessable.cs │ │ │ │ │ ├── CMSProcessable.cs.meta │ │ │ │ │ ├── CMSProcessableByteArray.cs │ │ │ │ │ ├── CMSProcessableByteArray.cs.meta │ │ │ │ │ ├── CMSProcessableFile.cs │ │ │ │ │ ├── CMSProcessableFile.cs.meta │ │ │ │ │ ├── CMSProcessableInputStream.cs │ │ │ │ │ ├── CMSProcessableInputStream.cs.meta │ │ │ │ │ ├── CMSReadable.cs │ │ │ │ │ ├── CMSReadable.cs.meta │ │ │ │ │ ├── CMSSecureReadable.cs │ │ │ │ │ ├── CMSSecureReadable.cs.meta │ │ │ │ │ ├── CMSSignedData.cs │ │ │ │ │ ├── CMSSignedData.cs.meta │ │ │ │ │ ├── CMSSignedDataGenerator.cs │ │ │ │ │ ├── CMSSignedDataGenerator.cs.meta │ │ │ │ │ ├── CMSSignedDataParser.cs │ │ │ │ │ ├── CMSSignedDataParser.cs.meta │ │ │ │ │ ├── CMSSignedDataStreamGenerator.cs │ │ │ │ │ ├── CMSSignedDataStreamGenerator.cs.meta │ │ │ │ │ ├── CMSSignedGenerator.cs │ │ │ │ │ ├── CMSSignedGenerator.cs.meta │ │ │ │ │ ├── CMSSignedHelper.cs │ │ │ │ │ ├── CMSSignedHelper.cs.meta │ │ │ │ │ ├── CMSStreamException.cs │ │ │ │ │ ├── CMSStreamException.cs.meta │ │ │ │ │ ├── CMSTypedStream.cs │ │ │ │ │ ├── CMSTypedStream.cs.meta │ │ │ │ │ ├── CMSUtils.cs │ │ │ │ │ ├── CMSUtils.cs.meta │ │ │ │ │ ├── CounterSignatureDigestCalculator.cs │ │ │ │ │ ├── CounterSignatureDigestCalculator.cs.meta │ │ │ │ │ ├── DefaultAuthenticatedAttributeTableGenerator.cs │ │ │ │ │ ├── DefaultAuthenticatedAttributeTableGenerator.cs.meta │ │ │ │ │ ├── DefaultSignedAttributeTableGenerator.cs │ │ │ │ │ ├── DefaultSignedAttributeTableGenerator.cs.meta │ │ │ │ │ ├── EnvelopedDataHelper.cs │ │ │ │ │ ├── EnvelopedDataHelper.cs.meta │ │ │ │ │ ├── IDigestCalculator.cs │ │ │ │ │ ├── IDigestCalculator.cs.meta │ │ │ │ │ ├── KEKRecipientInfoGenerator.cs │ │ │ │ │ ├── KEKRecipientInfoGenerator.cs.meta │ │ │ │ │ ├── KEKRecipientInformation.cs │ │ │ │ │ ├── KEKRecipientInformation.cs.meta │ │ │ │ │ ├── KeyAgreeRecipientInfoGenerator.cs │ │ │ │ │ ├── KeyAgreeRecipientInfoGenerator.cs.meta │ │ │ │ │ ├── KeyAgreeRecipientInformation.cs │ │ │ │ │ ├── KeyAgreeRecipientInformation.cs.meta │ │ │ │ │ ├── KeyTransRecipientInfoGenerator.cs │ │ │ │ │ ├── KeyTransRecipientInfoGenerator.cs.meta │ │ │ │ │ ├── KeyTransRecipientInformation.cs │ │ │ │ │ ├── KeyTransRecipientInformation.cs.meta │ │ │ │ │ ├── OriginatorId.cs │ │ │ │ │ ├── OriginatorId.cs.meta │ │ │ │ │ ├── OriginatorInfoGenerator.cs │ │ │ │ │ ├── OriginatorInfoGenerator.cs.meta │ │ │ │ │ ├── OriginatorInformation.cs │ │ │ │ │ ├── OriginatorInformation.cs.meta │ │ │ │ │ ├── PKCS5Scheme2PBEKey.cs │ │ │ │ │ ├── PKCS5Scheme2PBEKey.cs.meta │ │ │ │ │ ├── PKCS5Scheme2UTF8PBEKey.cs │ │ │ │ │ ├── PKCS5Scheme2UTF8PBEKey.cs.meta │ │ │ │ │ ├── PasswordRecipientInfoGenerator.cs │ │ │ │ │ ├── PasswordRecipientInfoGenerator.cs.meta │ │ │ │ │ ├── PasswordRecipientInformation.cs │ │ │ │ │ ├── PasswordRecipientInformation.cs.meta │ │ │ │ │ ├── RecipientId.cs │ │ │ │ │ ├── RecipientId.cs.meta │ │ │ │ │ ├── RecipientInfoGenerator.cs │ │ │ │ │ ├── RecipientInfoGenerator.cs.meta │ │ │ │ │ ├── RecipientInformation.cs │ │ │ │ │ ├── RecipientInformation.cs.meta │ │ │ │ │ ├── RecipientInformationStore.cs │ │ │ │ │ ├── RecipientInformationStore.cs.meta │ │ │ │ │ ├── SignerId.cs │ │ │ │ │ ├── SignerId.cs.meta │ │ │ │ │ ├── SignerInfoGenerator.cs │ │ │ │ │ ├── SignerInfoGenerator.cs.meta │ │ │ │ │ ├── SignerInformation.cs │ │ │ │ │ ├── SignerInformation.cs.meta │ │ │ │ │ ├── SignerInformationStore.cs │ │ │ │ │ ├── SignerInformationStore.cs.meta │ │ │ │ │ ├── SimpleAttributeTableGenerator.cs │ │ │ │ │ └── SimpleAttributeTableGenerator.cs.meta │ │ │ │ ├── crmf.meta │ │ │ │ ├── crmf │ │ │ │ │ ├── AuthenticatorControl.cs │ │ │ │ │ ├── AuthenticatorControl.cs.meta │ │ │ │ │ ├── CertificateRequestMessage.cs │ │ │ │ │ ├── CertificateRequestMessage.cs.meta │ │ │ │ │ ├── CertificateRequestMessageBuilder.cs │ │ │ │ │ ├── CertificateRequestMessageBuilder.cs.meta │ │ │ │ │ ├── CrmfException.cs │ │ │ │ │ ├── CrmfException.cs.meta │ │ │ │ │ ├── DefaultPKMacPrimitivesProvider.cs │ │ │ │ │ ├── DefaultPKMacPrimitivesProvider.cs.meta │ │ │ │ │ ├── EncryptedValueBuilder.cs │ │ │ │ │ ├── EncryptedValueBuilder.cs.meta │ │ │ │ │ ├── IControl.cs │ │ │ │ │ ├── IControl.cs.meta │ │ │ │ │ ├── IEncryptedValuePadder.cs │ │ │ │ │ ├── IEncryptedValuePadder.cs.meta │ │ │ │ │ ├── IPKMacPrimitivesProvider.cs │ │ │ │ │ ├── IPKMacPrimitivesProvider.cs.meta │ │ │ │ │ ├── PKMacBuilder.cs │ │ │ │ │ ├── PKMacBuilder.cs.meta │ │ │ │ │ ├── PkiArchiveControl.cs │ │ │ │ │ ├── PkiArchiveControl.cs.meta │ │ │ │ │ ├── PkiArchiveControlBuilder.cs │ │ │ │ │ ├── PkiArchiveControlBuilder.cs.meta │ │ │ │ │ ├── ProofOfPossessionSigningKeyBuilder.cs │ │ │ │ │ ├── ProofOfPossessionSigningKeyBuilder.cs.meta │ │ │ │ │ ├── RegTokenControl.cs │ │ │ │ │ └── RegTokenControl.cs.meta │ │ │ │ ├── crypto.meta │ │ │ │ ├── crypto │ │ │ │ │ ├── AesUtilities.cs │ │ │ │ │ ├── AesUtilities.cs.meta │ │ │ │ │ ├── AsymmetricCipherKeyPair.cs │ │ │ │ │ ├── AsymmetricCipherKeyPair.cs.meta │ │ │ │ │ ├── AsymmetricKeyParameter.cs │ │ │ │ │ ├── AsymmetricKeyParameter.cs.meta │ │ │ │ │ ├── BufferedAeadBlockCipher.cs │ │ │ │ │ ├── BufferedAeadBlockCipher.cs.meta │ │ │ │ │ ├── BufferedAeadCipher.cs │ │ │ │ │ ├── BufferedAeadCipher.cs.meta │ │ │ │ │ ├── BufferedAsymmetricBlockCipher.cs │ │ │ │ │ ├── BufferedAsymmetricBlockCipher.cs.meta │ │ │ │ │ ├── BufferedBlockCipher.cs │ │ │ │ │ ├── BufferedBlockCipher.cs.meta │ │ │ │ │ ├── BufferedCipherBase.cs │ │ │ │ │ ├── BufferedCipherBase.cs.meta │ │ │ │ │ ├── BufferedIesCipher.cs │ │ │ │ │ ├── BufferedIesCipher.cs.meta │ │ │ │ │ ├── BufferedStreamCipher.cs │ │ │ │ │ ├── BufferedStreamCipher.cs.meta │ │ │ │ │ ├── Check.cs │ │ │ │ │ ├── Check.cs.meta │ │ │ │ │ ├── CipherKeyGenerator.cs │ │ │ │ │ ├── CipherKeyGenerator.cs.meta │ │ │ │ │ ├── CryptoException.cs │ │ │ │ │ ├── CryptoException.cs.meta │ │ │ │ │ ├── CryptoServicesRegistrar.cs │ │ │ │ │ ├── CryptoServicesRegistrar.cs.meta │ │ │ │ │ ├── DataLengthException.cs │ │ │ │ │ ├── DataLengthException.cs.meta │ │ │ │ │ ├── IAlphabetMapper.cs │ │ │ │ │ ├── IAlphabetMapper.cs.meta │ │ │ │ │ ├── IAsymmetricBlockCipher.cs │ │ │ │ │ ├── IAsymmetricBlockCipher.cs.meta │ │ │ │ │ ├── IAsymmetricCipherKeyPairGenerator.cs │ │ │ │ │ ├── IAsymmetricCipherKeyPairGenerator.cs.meta │ │ │ │ │ ├── IBasicAgreement.cs │ │ │ │ │ ├── IBasicAgreement.cs.meta │ │ │ │ │ ├── IBlockCipher.cs │ │ │ │ │ ├── IBlockCipher.cs.meta │ │ │ │ │ ├── IBlockResult.cs │ │ │ │ │ ├── IBlockResult.cs.meta │ │ │ │ │ ├── IBufferedCipher.cs │ │ │ │ │ ├── IBufferedCipher.cs.meta │ │ │ │ │ ├── ICipher.cs │ │ │ │ │ ├── ICipher.cs.meta │ │ │ │ │ ├── ICipherBuilder.cs │ │ │ │ │ ├── ICipherBuilder.cs.meta │ │ │ │ │ ├── ICipherBuilderWithKey.cs │ │ │ │ │ ├── ICipherBuilderWithKey.cs.meta │ │ │ │ │ ├── ICipherParameters.cs │ │ │ │ │ ├── ICipherParameters.cs.meta │ │ │ │ │ ├── IDSA.cs │ │ │ │ │ ├── IDSA.cs.meta │ │ │ │ │ ├── IDecryptorBuilderProvider.cs │ │ │ │ │ ├── IDecryptorBuilderProvider.cs.meta │ │ │ │ │ ├── IDerivationFunction.cs │ │ │ │ │ ├── IDerivationFunction.cs.meta │ │ │ │ │ ├── IDerivationParameters.cs │ │ │ │ │ ├── IDerivationParameters.cs.meta │ │ │ │ │ ├── IDigest.cs │ │ │ │ │ ├── IDigest.cs.meta │ │ │ │ │ ├── IDigestFactory.cs │ │ │ │ │ ├── IDigestFactory.cs.meta │ │ │ │ │ ├── IDsaExt.cs │ │ │ │ │ ├── IDsaExt.cs.meta │ │ │ │ │ ├── IEncapsulatedSecretExtractor.cs │ │ │ │ │ ├── IEncapsulatedSecretExtractor.cs.meta │ │ │ │ │ ├── IEncapsulatedSecretGenerator.cs │ │ │ │ │ ├── IEncapsulatedSecretGenerator.cs.meta │ │ │ │ │ ├── IEntropySource.cs │ │ │ │ │ ├── IEntropySource.cs.meta │ │ │ │ │ ├── IEntropySourceProvider.cs │ │ │ │ │ ├── IEntropySourceProvider.cs.meta │ │ │ │ │ ├── IKeyUnwrapper.cs │ │ │ │ │ ├── IKeyUnwrapper.cs.meta │ │ │ │ │ ├── IKeyWrapper.cs │ │ │ │ │ ├── IKeyWrapper.cs.meta │ │ │ │ │ ├── IMac.cs │ │ │ │ │ ├── IMac.cs.meta │ │ │ │ │ ├── IMacDerivationFunction.cs │ │ │ │ │ ├── IMacDerivationFunction.cs.meta │ │ │ │ │ ├── IMacFactory.cs │ │ │ │ │ ├── IMacFactory.cs.meta │ │ │ │ │ ├── IRawAgreement.cs │ │ │ │ │ ├── IRawAgreement.cs.meta │ │ │ │ │ ├── IRsa.cs │ │ │ │ │ ├── IRsa.cs.meta │ │ │ │ │ ├── ISecretWithEncapsulation.cs │ │ │ │ │ ├── ISecretWithEncapsulation.cs.meta │ │ │ │ │ ├── ISignatureFactory.cs │ │ │ │ │ ├── ISignatureFactory.cs.meta │ │ │ │ │ ├── ISigner.cs │ │ │ │ │ ├── ISigner.cs.meta │ │ │ │ │ ├── ISignerWithRecovery.cs │ │ │ │ │ ├── ISignerWithRecovery.cs.meta │ │ │ │ │ ├── IStreamCalculator.cs │ │ │ │ │ ├── IStreamCalculator.cs.meta │ │ │ │ │ ├── IStreamCipher.cs │ │ │ │ │ ├── IStreamCipher.cs.meta │ │ │ │ │ ├── IVerifier.cs │ │ │ │ │ ├── IVerifier.cs.meta │ │ │ │ │ ├── IVerifierFactory.cs │ │ │ │ │ ├── IVerifierFactory.cs.meta │ │ │ │ │ ├── IVerifierFactoryProvider.cs │ │ │ │ │ ├── IVerifierFactoryProvider.cs.meta │ │ │ │ │ ├── IWrapper.cs │ │ │ │ │ ├── IWrapper.cs.meta │ │ │ │ │ ├── IXof.cs │ │ │ │ │ ├── IXof.cs.meta │ │ │ │ │ ├── InvalidCipherTextException.cs │ │ │ │ │ ├── InvalidCipherTextException.cs.meta │ │ │ │ │ ├── KeyGenerationParameters.cs │ │ │ │ │ ├── KeyGenerationParameters.cs.meta │ │ │ │ │ ├── MaxBytesExceededException.cs │ │ │ │ │ ├── MaxBytesExceededException.cs.meta │ │ │ │ │ ├── OutputLengthException.cs │ │ │ │ │ ├── OutputLengthException.cs.meta │ │ │ │ │ ├── PbeParametersGenerator.cs │ │ │ │ │ ├── PbeParametersGenerator.cs.meta │ │ │ │ │ ├── Security.cs │ │ │ │ │ ├── Security.cs.meta │ │ │ │ │ ├── SimpleBlockResult.cs │ │ │ │ │ ├── SimpleBlockResult.cs.meta │ │ │ │ │ ├── StreamBlockCipher.cs │ │ │ │ │ ├── StreamBlockCipher.cs.meta │ │ │ │ │ ├── agreement.meta │ │ │ │ │ ├── agreement │ │ │ │ │ │ ├── DHAgreement.cs │ │ │ │ │ │ ├── DHAgreement.cs.meta │ │ │ │ │ │ ├── DHBasicAgreement.cs │ │ │ │ │ │ ├── DHBasicAgreement.cs.meta │ │ │ │ │ │ ├── DHStandardGroups.cs │ │ │ │ │ │ ├── DHStandardGroups.cs.meta │ │ │ │ │ │ ├── ECDHBasicAgreement.cs │ │ │ │ │ │ ├── ECDHBasicAgreement.cs.meta │ │ │ │ │ │ ├── ECDHCBasicAgreement.cs │ │ │ │ │ │ ├── ECDHCBasicAgreement.cs.meta │ │ │ │ │ │ ├── ECDHWithKdfBasicAgreement.cs │ │ │ │ │ │ ├── ECDHWithKdfBasicAgreement.cs.meta │ │ │ │ │ │ ├── ECMqvBasicAgreement.cs │ │ │ │ │ │ ├── ECMqvBasicAgreement.cs.meta │ │ │ │ │ │ ├── ECMqvWithKdfBasicAgreement.cs │ │ │ │ │ │ ├── ECMqvWithKdfBasicAgreement.cs.meta │ │ │ │ │ │ ├── SM2KeyExchange.cs │ │ │ │ │ │ ├── SM2KeyExchange.cs.meta │ │ │ │ │ │ ├── X25519Agreement.cs │ │ │ │ │ │ ├── X25519Agreement.cs.meta │ │ │ │ │ │ ├── X448Agreement.cs │ │ │ │ │ │ ├── X448Agreement.cs.meta │ │ │ │ │ │ ├── jpake.meta │ │ │ │ │ │ ├── jpake │ │ │ │ │ │ │ ├── JPakeParticipant.cs │ │ │ │ │ │ │ ├── JPakeParticipant.cs.meta │ │ │ │ │ │ │ ├── JPakePrimeOrderGroup.cs │ │ │ │ │ │ │ ├── JPakePrimeOrderGroup.cs.meta │ │ │ │ │ │ │ ├── JPakePrimeOrderGroups.cs │ │ │ │ │ │ │ ├── JPakePrimeOrderGroups.cs.meta │ │ │ │ │ │ │ ├── JPakeRound1Payload.cs │ │ │ │ │ │ │ ├── JPakeRound1Payload.cs.meta │ │ │ │ │ │ │ ├── JPakeRound2Payload.cs │ │ │ │ │ │ │ ├── JPakeRound2Payload.cs.meta │ │ │ │ │ │ │ ├── JPakeRound3Payload.cs │ │ │ │ │ │ │ ├── JPakeRound3Payload.cs.meta │ │ │ │ │ │ │ ├── JPakeUtilities.cs │ │ │ │ │ │ │ └── JPakeUtilities.cs.meta │ │ │ │ │ │ ├── kdf.meta │ │ │ │ │ │ ├── kdf │ │ │ │ │ │ │ ├── ConcatenationKdfGenerator.cs │ │ │ │ │ │ │ ├── ConcatenationKdfGenerator.cs.meta │ │ │ │ │ │ │ ├── DHKdfParameters.cs │ │ │ │ │ │ │ ├── DHKdfParameters.cs.meta │ │ │ │ │ │ │ ├── DHKekGenerator.cs │ │ │ │ │ │ │ ├── DHKekGenerator.cs.meta │ │ │ │ │ │ │ ├── ECDHKekGenerator.cs │ │ │ │ │ │ │ └── ECDHKekGenerator.cs.meta │ │ │ │ │ │ ├── srp.meta │ │ │ │ │ │ └── srp │ │ │ │ │ │ │ ├── SRP6Client.cs │ │ │ │ │ │ │ ├── SRP6Client.cs.meta │ │ │ │ │ │ │ ├── SRP6Server.cs │ │ │ │ │ │ │ ├── SRP6Server.cs.meta │ │ │ │ │ │ │ ├── SRP6StandardGroups.cs │ │ │ │ │ │ │ ├── SRP6StandardGroups.cs.meta │ │ │ │ │ │ │ ├── SRP6Utilities.cs │ │ │ │ │ │ │ ├── SRP6Utilities.cs.meta │ │ │ │ │ │ │ ├── SRP6VerifierGenerator.cs │ │ │ │ │ │ │ └── SRP6VerifierGenerator.cs.meta │ │ │ │ │ ├── digests.meta │ │ │ │ │ ├── digests │ │ │ │ │ │ ├── Blake2bDigest.cs │ │ │ │ │ │ ├── Blake2bDigest.cs.meta │ │ │ │ │ │ ├── Blake2sDigest.cs │ │ │ │ │ │ ├── Blake2sDigest.cs.meta │ │ │ │ │ │ ├── Blake2xsDigest.cs │ │ │ │ │ │ ├── Blake2xsDigest.cs.meta │ │ │ │ │ │ ├── Blake3Digest.cs │ │ │ │ │ │ ├── Blake3Digest.cs.meta │ │ │ │ │ │ ├── CSHAKEDigest.cs │ │ │ │ │ │ ├── CSHAKEDigest.cs.meta │ │ │ │ │ │ ├── DSTU7564Digest.cs │ │ │ │ │ │ ├── DSTU7564Digest.cs.meta │ │ │ │ │ │ ├── GOST3411Digest.cs │ │ │ │ │ │ ├── GOST3411Digest.cs.meta │ │ │ │ │ │ ├── GOST3411_2012Digest.cs │ │ │ │ │ │ ├── GOST3411_2012Digest.cs.meta │ │ │ │ │ │ ├── GOST3411_2012_256Digest.cs │ │ │ │ │ │ ├── GOST3411_2012_256Digest.cs.meta │ │ │ │ │ │ ├── GOST3411_2012_512Digest.cs │ │ │ │ │ │ ├── GOST3411_2012_512Digest.cs.meta │ │ │ │ │ │ ├── GeneralDigest.cs │ │ │ │ │ │ ├── GeneralDigest.cs.meta │ │ │ │ │ │ ├── Haraka256Digest.cs │ │ │ │ │ │ ├── Haraka256Digest.cs.meta │ │ │ │ │ │ ├── Haraka256_X86.cs │ │ │ │ │ │ ├── Haraka256_X86.cs.meta │ │ │ │ │ │ ├── Haraka512Digest.cs │ │ │ │ │ │ ├── Haraka512Digest.cs.meta │ │ │ │ │ │ ├── Haraka512_X86.cs │ │ │ │ │ │ ├── Haraka512_X86.cs.meta │ │ │ │ │ │ ├── HarakaBase.cs │ │ │ │ │ │ ├── HarakaBase.cs.meta │ │ │ │ │ │ ├── KeccakDigest.cs │ │ │ │ │ │ ├── KeccakDigest.cs.meta │ │ │ │ │ │ ├── LongDigest.cs │ │ │ │ │ │ ├── LongDigest.cs.meta │ │ │ │ │ │ ├── MD2Digest.cs │ │ │ │ │ │ ├── MD2Digest.cs.meta │ │ │ │ │ │ ├── MD4Digest.cs │ │ │ │ │ │ ├── MD4Digest.cs.meta │ │ │ │ │ │ ├── MD5Digest.cs │ │ │ │ │ │ ├── MD5Digest.cs.meta │ │ │ │ │ │ ├── NonMemoableDigest.cs │ │ │ │ │ │ ├── NonMemoableDigest.cs.meta │ │ │ │ │ │ ├── NullDigest.cs │ │ │ │ │ │ ├── NullDigest.cs.meta │ │ │ │ │ │ ├── ParallelHash.cs │ │ │ │ │ │ ├── ParallelHash.cs.meta │ │ │ │ │ │ ├── RipeMD128Digest.cs │ │ │ │ │ │ ├── RipeMD128Digest.cs.meta │ │ │ │ │ │ ├── RipeMD160Digest.cs │ │ │ │ │ │ ├── RipeMD160Digest.cs.meta │ │ │ │ │ │ ├── RipeMD256Digest.cs │ │ │ │ │ │ ├── RipeMD256Digest.cs.meta │ │ │ │ │ │ ├── RipeMD320Digest.cs │ │ │ │ │ │ ├── RipeMD320Digest.cs.meta │ │ │ │ │ │ ├── SHA3Digest.cs │ │ │ │ │ │ ├── SHA3Digest.cs.meta │ │ │ │ │ │ ├── SM3Digest.cs │ │ │ │ │ │ ├── SM3Digest.cs.meta │ │ │ │ │ │ ├── Sha1Digest.cs │ │ │ │ │ │ ├── Sha1Digest.cs.meta │ │ │ │ │ │ ├── Sha224Digest.cs │ │ │ │ │ │ ├── Sha224Digest.cs.meta │ │ │ │ │ │ ├── Sha256Digest.cs │ │ │ │ │ │ ├── Sha256Digest.cs.meta │ │ │ │ │ │ ├── Sha384Digest.cs │ │ │ │ │ │ ├── Sha384Digest.cs.meta │ │ │ │ │ │ ├── Sha512Digest.cs │ │ │ │ │ │ ├── Sha512Digest.cs.meta │ │ │ │ │ │ ├── Sha512tDigest.cs │ │ │ │ │ │ ├── Sha512tDigest.cs.meta │ │ │ │ │ │ ├── ShakeDigest.cs │ │ │ │ │ │ ├── ShakeDigest.cs.meta │ │ │ │ │ │ ├── ShortenedDigest.cs │ │ │ │ │ │ ├── ShortenedDigest.cs.meta │ │ │ │ │ │ ├── SkeinDigest.cs │ │ │ │ │ │ ├── SkeinDigest.cs.meta │ │ │ │ │ │ ├── SkeinEngine.cs │ │ │ │ │ │ ├── SkeinEngine.cs.meta │ │ │ │ │ │ ├── TigerDigest.cs │ │ │ │ │ │ ├── TigerDigest.cs.meta │ │ │ │ │ │ ├── TupleHash.cs │ │ │ │ │ │ ├── TupleHash.cs.meta │ │ │ │ │ │ ├── WhirlpoolDigest.cs │ │ │ │ │ │ ├── WhirlpoolDigest.cs.meta │ │ │ │ │ │ ├── XofUtils.cs │ │ │ │ │ │ └── XofUtils.cs.meta │ │ │ │ │ ├── ec.meta │ │ │ │ │ ├── ec │ │ │ │ │ │ ├── CustomNamedCurves.cs │ │ │ │ │ │ └── CustomNamedCurves.cs.meta │ │ │ │ │ ├── encodings.meta │ │ │ │ │ ├── encodings │ │ │ │ │ │ ├── ISO9796d1Encoding.cs │ │ │ │ │ │ ├── ISO9796d1Encoding.cs.meta │ │ │ │ │ │ ├── OaepEncoding.cs │ │ │ │ │ │ ├── OaepEncoding.cs.meta │ │ │ │ │ │ ├── Pkcs1Encoding.cs │ │ │ │ │ │ └── Pkcs1Encoding.cs.meta │ │ │ │ │ ├── engines.meta │ │ │ │ │ ├── engines │ │ │ │ │ │ ├── AesEngine.cs │ │ │ │ │ │ ├── AesEngine.cs.meta │ │ │ │ │ │ ├── AesEngine_X86.cs │ │ │ │ │ │ ├── AesEngine_X86.cs.meta │ │ │ │ │ │ ├── AesFastEngine.cs │ │ │ │ │ │ ├── AesFastEngine.cs.meta │ │ │ │ │ │ ├── AesLightEngine.cs │ │ │ │ │ │ ├── AesLightEngine.cs.meta │ │ │ │ │ │ ├── AesWrapEngine.cs │ │ │ │ │ │ ├── AesWrapEngine.cs.meta │ │ │ │ │ │ ├── AriaEngine.cs │ │ │ │ │ │ ├── AriaEngine.cs.meta │ │ │ │ │ │ ├── BlowfishEngine.cs │ │ │ │ │ │ ├── BlowfishEngine.cs.meta │ │ │ │ │ │ ├── CamelliaEngine.cs │ │ │ │ │ │ ├── CamelliaEngine.cs.meta │ │ │ │ │ │ ├── CamelliaLightEngine.cs │ │ │ │ │ │ ├── CamelliaLightEngine.cs.meta │ │ │ │ │ │ ├── CamelliaWrapEngine.cs │ │ │ │ │ │ ├── CamelliaWrapEngine.cs.meta │ │ │ │ │ │ ├── Cast5Engine.cs │ │ │ │ │ │ ├── Cast5Engine.cs.meta │ │ │ │ │ │ ├── Cast6Engine.cs │ │ │ │ │ │ ├── Cast6Engine.cs.meta │ │ │ │ │ │ ├── ChaCha7539Engine.cs │ │ │ │ │ │ ├── ChaCha7539Engine.cs.meta │ │ │ │ │ │ ├── ChaChaEngine.cs │ │ │ │ │ │ ├── ChaChaEngine.cs.meta │ │ │ │ │ │ ├── DesEdeEngine.cs │ │ │ │ │ │ ├── DesEdeEngine.cs.meta │ │ │ │ │ │ ├── DesEdeWrapEngine.cs │ │ │ │ │ │ ├── DesEdeWrapEngine.cs.meta │ │ │ │ │ │ ├── DesEngine.cs │ │ │ │ │ │ ├── DesEngine.cs.meta │ │ │ │ │ │ ├── Dstu7624Engine.cs │ │ │ │ │ │ ├── Dstu7624Engine.cs.meta │ │ │ │ │ │ ├── Dstu7624WrapEngine.cs │ │ │ │ │ │ ├── Dstu7624WrapEngine.cs.meta │ │ │ │ │ │ ├── ElGamalEngine.cs │ │ │ │ │ │ ├── ElGamalEngine.cs.meta │ │ │ │ │ │ ├── GOST28147Engine.cs │ │ │ │ │ │ ├── GOST28147Engine.cs.meta │ │ │ │ │ │ ├── Grain128AEADEngine.cs │ │ │ │ │ │ ├── Grain128AEADEngine.cs.meta │ │ │ │ │ │ ├── HC128Engine.cs │ │ │ │ │ │ ├── HC128Engine.cs.meta │ │ │ │ │ │ ├── HC256Engine.cs │ │ │ │ │ │ ├── HC256Engine.cs.meta │ │ │ │ │ │ ├── ISAACEngine.cs │ │ │ │ │ │ ├── ISAACEngine.cs.meta │ │ │ │ │ │ ├── IdeaEngine.cs │ │ │ │ │ │ ├── IdeaEngine.cs.meta │ │ │ │ │ │ ├── IesEngine.cs │ │ │ │ │ │ ├── IesEngine.cs.meta │ │ │ │ │ │ ├── NaccacheSternEngine.cs │ │ │ │ │ │ ├── NaccacheSternEngine.cs.meta │ │ │ │ │ │ ├── NoekeonEngine.cs │ │ │ │ │ │ ├── NoekeonEngine.cs.meta │ │ │ │ │ │ ├── NullEngine.cs │ │ │ │ │ │ ├── NullEngine.cs.meta │ │ │ │ │ │ ├── RC2Engine.cs │ │ │ │ │ │ ├── RC2Engine.cs.meta │ │ │ │ │ │ ├── RC2WrapEngine.cs │ │ │ │ │ │ ├── RC2WrapEngine.cs.meta │ │ │ │ │ │ ├── RC4Engine.cs │ │ │ │ │ │ ├── RC4Engine.cs.meta │ │ │ │ │ │ ├── RC532Engine.cs │ │ │ │ │ │ ├── RC532Engine.cs.meta │ │ │ │ │ │ ├── RC564Engine.cs │ │ │ │ │ │ ├── RC564Engine.cs.meta │ │ │ │ │ │ ├── RC6Engine.cs │ │ │ │ │ │ ├── RC6Engine.cs.meta │ │ │ │ │ │ ├── RFC3211WrapEngine.cs │ │ │ │ │ │ ├── RFC3211WrapEngine.cs.meta │ │ │ │ │ │ ├── RFC3394WrapEngine.cs │ │ │ │ │ │ ├── RFC3394WrapEngine.cs.meta │ │ │ │ │ │ ├── RSABlindedEngine.cs │ │ │ │ │ │ ├── RSABlindedEngine.cs.meta │ │ │ │ │ │ ├── RSABlindingEngine.cs │ │ │ │ │ │ ├── RSABlindingEngine.cs.meta │ │ │ │ │ │ ├── RSACoreEngine.cs │ │ │ │ │ │ ├── RSACoreEngine.cs.meta │ │ │ │ │ │ ├── RijndaelEngine.cs │ │ │ │ │ │ ├── RijndaelEngine.cs.meta │ │ │ │ │ │ ├── RsaEngine.cs │ │ │ │ │ │ ├── RsaEngine.cs.meta │ │ │ │ │ │ ├── SEEDEngine.cs │ │ │ │ │ │ ├── SEEDEngine.cs.meta │ │ │ │ │ │ ├── SEEDWrapEngine.cs │ │ │ │ │ │ ├── SEEDWrapEngine.cs.meta │ │ │ │ │ │ ├── SM2Engine.cs │ │ │ │ │ │ ├── SM2Engine.cs.meta │ │ │ │ │ │ ├── SM4Engine.cs │ │ │ │ │ │ ├── SM4Engine.cs.meta │ │ │ │ │ │ ├── Salsa20Engine.cs │ │ │ │ │ │ ├── Salsa20Engine.cs.meta │ │ │ │ │ │ ├── SerpentEngine.cs │ │ │ │ │ │ ├── SerpentEngine.cs.meta │ │ │ │ │ │ ├── SerpentEngineBase.cs │ │ │ │ │ │ ├── SerpentEngineBase.cs.meta │ │ │ │ │ │ ├── SkipjackEngine.cs │ │ │ │ │ │ ├── SkipjackEngine.cs.meta │ │ │ │ │ │ ├── TEAEngine.cs │ │ │ │ │ │ ├── TEAEngine.cs.meta │ │ │ │ │ │ ├── ThreefishEngine.cs │ │ │ │ │ │ ├── ThreefishEngine.cs.meta │ │ │ │ │ │ ├── TnepresEngine.cs │ │ │ │ │ │ ├── TnepresEngine.cs.meta │ │ │ │ │ │ ├── TwofishEngine.cs │ │ │ │ │ │ ├── TwofishEngine.cs.meta │ │ │ │ │ │ ├── VMPCEngine.cs │ │ │ │ │ │ ├── VMPCEngine.cs.meta │ │ │ │ │ │ ├── VMPCKSA3Engine.cs │ │ │ │ │ │ ├── VMPCKSA3Engine.cs.meta │ │ │ │ │ │ ├── XSalsa20Engine.cs │ │ │ │ │ │ ├── XSalsa20Engine.cs.meta │ │ │ │ │ │ ├── XTEAEngine.cs │ │ │ │ │ │ └── XTEAEngine.cs.meta │ │ │ │ │ ├── fpe.meta │ │ │ │ │ ├── fpe │ │ │ │ │ │ ├── FpeEngine.cs │ │ │ │ │ │ ├── FpeEngine.cs.meta │ │ │ │ │ │ ├── FpeFf1Engine.cs │ │ │ │ │ │ ├── FpeFf1Engine.cs.meta │ │ │ │ │ │ ├── FpeFf3_1Engine.cs │ │ │ │ │ │ ├── FpeFf3_1Engine.cs.meta │ │ │ │ │ │ ├── SP80038G.cs │ │ │ │ │ │ └── SP80038G.cs.meta │ │ │ │ │ ├── generators.meta │ │ │ │ │ ├── generators │ │ │ │ │ │ ├── BCrypt.cs │ │ │ │ │ │ ├── BCrypt.cs.meta │ │ │ │ │ │ ├── BaseKdfBytesGenerator.cs │ │ │ │ │ │ ├── BaseKdfBytesGenerator.cs.meta │ │ │ │ │ │ ├── DHBasicKeyPairGenerator.cs │ │ │ │ │ │ ├── DHBasicKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── DHKeyGeneratorHelper.cs │ │ │ │ │ │ ├── DHKeyGeneratorHelper.cs.meta │ │ │ │ │ │ ├── DHKeyPairGenerator.cs │ │ │ │ │ │ ├── DHKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── DHParametersGenerator.cs │ │ │ │ │ │ ├── DHParametersGenerator.cs.meta │ │ │ │ │ │ ├── DHParametersHelper.cs │ │ │ │ │ │ ├── DHParametersHelper.cs.meta │ │ │ │ │ │ ├── DesEdeKeyGenerator.cs │ │ │ │ │ │ ├── DesEdeKeyGenerator.cs.meta │ │ │ │ │ │ ├── DesKeyGenerator.cs │ │ │ │ │ │ ├── DesKeyGenerator.cs.meta │ │ │ │ │ │ ├── DsaKeyPairGenerator.cs │ │ │ │ │ │ ├── DsaKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── DsaParametersGenerator.cs │ │ │ │ │ │ ├── DsaParametersGenerator.cs.meta │ │ │ │ │ │ ├── ECKeyPairGenerator.cs │ │ │ │ │ │ ├── ECKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── Ed25519KeyPairGenerator.cs │ │ │ │ │ │ ├── Ed25519KeyPairGenerator.cs.meta │ │ │ │ │ │ ├── Ed448KeyPairGenerator.cs │ │ │ │ │ │ ├── Ed448KeyPairGenerator.cs.meta │ │ │ │ │ │ ├── ElGamalKeyPairGenerator.cs │ │ │ │ │ │ ├── ElGamalKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── ElGamalParametersGenerator.cs │ │ │ │ │ │ ├── ElGamalParametersGenerator.cs.meta │ │ │ │ │ │ ├── GOST3410KeyPairGenerator.cs │ │ │ │ │ │ ├── GOST3410KeyPairGenerator.cs.meta │ │ │ │ │ │ ├── GOST3410ParametersGenerator.cs │ │ │ │ │ │ ├── GOST3410ParametersGenerator.cs.meta │ │ │ │ │ │ ├── HKDFBytesGenerator.cs │ │ │ │ │ │ ├── HKDFBytesGenerator.cs.meta │ │ │ │ │ │ ├── KDFCounterBytesGenerator.cs │ │ │ │ │ │ ├── KDFCounterBytesGenerator.cs.meta │ │ │ │ │ │ ├── KDFDoublePipelineIterationBytesGenerator.cs │ │ │ │ │ │ ├── KDFDoublePipelineIterationBytesGenerator.cs.meta │ │ │ │ │ │ ├── KDFFeedbackBytesGenerator.cs │ │ │ │ │ │ ├── KDFFeedbackBytesGenerator.cs.meta │ │ │ │ │ │ ├── Kdf1BytesGenerator.cs │ │ │ │ │ │ ├── Kdf1BytesGenerator.cs.meta │ │ │ │ │ │ ├── Kdf2BytesGenerator.cs │ │ │ │ │ │ ├── Kdf2BytesGenerator.cs.meta │ │ │ │ │ │ ├── Mgf1BytesGenerator.cs │ │ │ │ │ │ ├── Mgf1BytesGenerator.cs.meta │ │ │ │ │ │ ├── NaccacheSternKeyPairGenerator.cs │ │ │ │ │ │ ├── NaccacheSternKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── OpenBsdBCrypt.cs │ │ │ │ │ │ ├── OpenBsdBCrypt.cs.meta │ │ │ │ │ │ ├── OpenSSLPBEParametersGenerator.cs │ │ │ │ │ │ ├── OpenSSLPBEParametersGenerator.cs.meta │ │ │ │ │ │ ├── Pkcs12ParametersGenerator.cs │ │ │ │ │ │ ├── Pkcs12ParametersGenerator.cs.meta │ │ │ │ │ │ ├── Pkcs5S1ParametersGenerator.cs │ │ │ │ │ │ ├── Pkcs5S1ParametersGenerator.cs.meta │ │ │ │ │ │ ├── Pkcs5S2ParametersGenerator.cs │ │ │ │ │ │ ├── Pkcs5S2ParametersGenerator.cs.meta │ │ │ │ │ │ ├── Poly1305KeyGenerator.cs │ │ │ │ │ │ ├── Poly1305KeyGenerator.cs.meta │ │ │ │ │ │ ├── RSABlindingFactorGenerator.cs │ │ │ │ │ │ ├── RSABlindingFactorGenerator.cs.meta │ │ │ │ │ │ ├── RsaKeyPairGenerator.cs │ │ │ │ │ │ ├── RsaKeyPairGenerator.cs.meta │ │ │ │ │ │ ├── SCrypt.cs │ │ │ │ │ │ ├── SCrypt.cs.meta │ │ │ │ │ │ ├── X25519KeyPairGenerator.cs │ │ │ │ │ │ ├── X25519KeyPairGenerator.cs.meta │ │ │ │ │ │ ├── X448KeyPairGenerator.cs │ │ │ │ │ │ └── X448KeyPairGenerator.cs.meta │ │ │ │ │ ├── io.meta │ │ │ │ │ ├── io │ │ │ │ │ │ ├── CipherStream.cs │ │ │ │ │ │ ├── CipherStream.cs.meta │ │ │ │ │ │ ├── DigestSink.cs │ │ │ │ │ │ ├── DigestSink.cs.meta │ │ │ │ │ │ ├── DigestStream.cs │ │ │ │ │ │ ├── DigestStream.cs.meta │ │ │ │ │ │ ├── MacSink.cs │ │ │ │ │ │ ├── MacSink.cs.meta │ │ │ │ │ │ ├── MacStream.cs │ │ │ │ │ │ ├── MacStream.cs.meta │ │ │ │ │ │ ├── SignerSink.cs │ │ │ │ │ │ ├── SignerSink.cs.meta │ │ │ │ │ │ ├── SignerStream.cs │ │ │ │ │ │ └── SignerStream.cs.meta │ │ │ │ │ ├── macs.meta │ │ │ │ │ ├── macs │ │ │ │ │ │ ├── CMac.cs │ │ │ │ │ │ ├── CMac.cs.meta │ │ │ │ │ │ ├── CbcBlockCipherMac.cs │ │ │ │ │ │ ├── CbcBlockCipherMac.cs.meta │ │ │ │ │ │ ├── CfbBlockCipherMac.cs │ │ │ │ │ │ ├── CfbBlockCipherMac.cs.meta │ │ │ │ │ │ ├── DSTU7564Mac.cs │ │ │ │ │ │ ├── DSTU7564Mac.cs.meta │ │ │ │ │ │ ├── DSTU7624Mac.cs │ │ │ │ │ │ ├── DSTU7624Mac.cs.meta │ │ │ │ │ │ ├── GMac.cs │ │ │ │ │ │ ├── GMac.cs.meta │ │ │ │ │ │ ├── GOST28147Mac.cs │ │ │ │ │ │ ├── GOST28147Mac.cs.meta │ │ │ │ │ │ ├── HMac.cs │ │ │ │ │ │ ├── HMac.cs.meta │ │ │ │ │ │ ├── ISO9797Alg3Mac.cs │ │ │ │ │ │ ├── ISO9797Alg3Mac.cs.meta │ │ │ │ │ │ ├── KMac.cs │ │ │ │ │ │ ├── KMac.cs.meta │ │ │ │ │ │ ├── Poly1305.cs │ │ │ │ │ │ ├── Poly1305.cs.meta │ │ │ │ │ │ ├── SipHash.cs │ │ │ │ │ │ ├── SipHash.cs.meta │ │ │ │ │ │ ├── SkeinMac.cs │ │ │ │ │ │ ├── SkeinMac.cs.meta │ │ │ │ │ │ ├── VMPCMac.cs │ │ │ │ │ │ └── VMPCMac.cs.meta │ │ │ │ │ ├── modes.meta │ │ │ │ │ ├── modes │ │ │ │ │ │ ├── CbcBlockCipher.cs │ │ │ │ │ │ ├── CbcBlockCipher.cs.meta │ │ │ │ │ │ ├── CcmBlockCipher.cs │ │ │ │ │ │ ├── CcmBlockCipher.cs.meta │ │ │ │ │ │ ├── CfbBlockCipher.cs │ │ │ │ │ │ ├── CfbBlockCipher.cs.meta │ │ │ │ │ │ ├── ChaCha20Poly1305.cs │ │ │ │ │ │ ├── ChaCha20Poly1305.cs.meta │ │ │ │ │ │ ├── CtsBlockCipher.cs │ │ │ │ │ │ ├── CtsBlockCipher.cs.meta │ │ │ │ │ │ ├── EAXBlockCipher.cs │ │ │ │ │ │ ├── EAXBlockCipher.cs.meta │ │ │ │ │ │ ├── EcbBlockCipher.cs │ │ │ │ │ │ ├── EcbBlockCipher.cs.meta │ │ │ │ │ │ ├── GCMBlockCipher.cs │ │ │ │ │ │ ├── GCMBlockCipher.cs.meta │ │ │ │ │ │ ├── GOFBBlockCipher.cs │ │ │ │ │ │ ├── GOFBBlockCipher.cs.meta │ │ │ │ │ │ ├── GcmSivBlockCipher.cs │ │ │ │ │ │ ├── GcmSivBlockCipher.cs.meta │ │ │ │ │ │ ├── IAeadBlockCipher.cs │ │ │ │ │ │ ├── IAeadBlockCipher.cs.meta │ │ │ │ │ │ ├── IAeadCipher.cs │ │ │ │ │ │ ├── IAeadCipher.cs.meta │ │ │ │ │ │ ├── IBlockCipherMode.cs │ │ │ │ │ │ ├── IBlockCipherMode.cs.meta │ │ │ │ │ │ ├── KCcmBlockCipher.cs │ │ │ │ │ │ ├── KCcmBlockCipher.cs.meta │ │ │ │ │ │ ├── KCtrBlockCipher.cs │ │ │ │ │ │ ├── KCtrBlockCipher.cs.meta │ │ │ │ │ │ ├── OCBBlockCipher.cs │ │ │ │ │ │ ├── OCBBlockCipher.cs.meta │ │ │ │ │ │ ├── OfbBlockCipher.cs │ │ │ │ │ │ ├── OfbBlockCipher.cs.meta │ │ │ │ │ │ ├── OpenPgpCfbBlockCipher.cs │ │ │ │ │ │ ├── OpenPgpCfbBlockCipher.cs.meta │ │ │ │ │ │ ├── SicBlockCipher.cs │ │ │ │ │ │ ├── SicBlockCipher.cs.meta │ │ │ │ │ │ ├── gcm.meta │ │ │ │ │ │ └── gcm │ │ │ │ │ │ │ ├── BasicGcmExponentiator.cs │ │ │ │ │ │ │ ├── BasicGcmExponentiator.cs.meta │ │ │ │ │ │ │ ├── BasicGcmMultiplier.cs │ │ │ │ │ │ │ ├── BasicGcmMultiplier.cs.meta │ │ │ │ │ │ │ ├── GcmUtilities.cs │ │ │ │ │ │ │ ├── GcmUtilities.cs.meta │ │ │ │ │ │ │ ├── IGcmExponentiator.cs │ │ │ │ │ │ │ ├── IGcmExponentiator.cs.meta │ │ │ │ │ │ │ ├── IGcmMultiplier.cs │ │ │ │ │ │ │ ├── IGcmMultiplier.cs.meta │ │ │ │ │ │ │ ├── Tables1kGcmExponentiator.cs │ │ │ │ │ │ │ ├── Tables1kGcmExponentiator.cs.meta │ │ │ │ │ │ │ ├── Tables4kGcmMultiplier.cs │ │ │ │ │ │ │ ├── Tables4kGcmMultiplier.cs.meta │ │ │ │ │ │ │ ├── Tables64kGcmMultiplier.cs │ │ │ │ │ │ │ ├── Tables64kGcmMultiplier.cs.meta │ │ │ │ │ │ │ ├── Tables8kGcmMultiplier.cs │ │ │ │ │ │ │ └── Tables8kGcmMultiplier.cs.meta │ │ │ │ │ ├── operators.meta │ │ │ │ │ ├── operators │ │ │ │ │ │ ├── Asn1CipherBuilder.cs │ │ │ │ │ │ ├── Asn1CipherBuilder.cs.meta │ │ │ │ │ │ ├── Asn1DigestFactory.cs │ │ │ │ │ │ ├── Asn1DigestFactory.cs.meta │ │ │ │ │ │ ├── Asn1KeyWrapper.cs │ │ │ │ │ │ ├── Asn1KeyWrapper.cs.meta │ │ │ │ │ │ ├── Asn1Signature.cs │ │ │ │ │ │ ├── Asn1Signature.cs.meta │ │ │ │ │ │ ├── CmsContentEncryptorBuilder.cs │ │ │ │ │ │ ├── CmsContentEncryptorBuilder.cs.meta │ │ │ │ │ │ ├── CmsKeyTransRecipientInfoGenerator.cs │ │ │ │ │ │ ├── CmsKeyTransRecipientInfoGenerator.cs.meta │ │ │ │ │ │ ├── DefaultSignatureCalculator.cs │ │ │ │ │ │ ├── DefaultSignatureCalculator.cs.meta │ │ │ │ │ │ ├── DefaultSignatureResult.cs │ │ │ │ │ │ ├── DefaultSignatureResult.cs.meta │ │ │ │ │ │ ├── DefaultVerifierCalculator.cs │ │ │ │ │ │ ├── DefaultVerifierCalculator.cs.meta │ │ │ │ │ │ ├── DefaultVerifierResult.cs │ │ │ │ │ │ ├── DefaultVerifierResult.cs.meta │ │ │ │ │ │ ├── GenericKey.cs │ │ │ │ │ │ └── GenericKey.cs.meta │ │ │ │ │ ├── paddings.meta │ │ │ │ │ ├── paddings │ │ │ │ │ │ ├── BlockCipherPadding.cs │ │ │ │ │ │ ├── BlockCipherPadding.cs.meta │ │ │ │ │ │ ├── IBlockCipherPadding.cs │ │ │ │ │ │ ├── IBlockCipherPadding.cs.meta │ │ │ │ │ │ ├── ISO10126d2Padding.cs │ │ │ │ │ │ ├── ISO10126d2Padding.cs.meta │ │ │ │ │ │ ├── ISO7816d4Padding.cs │ │ │ │ │ │ ├── ISO7816d4Padding.cs.meta │ │ │ │ │ │ ├── PaddedBufferedBlockCipher.cs │ │ │ │ │ │ ├── PaddedBufferedBlockCipher.cs.meta │ │ │ │ │ │ ├── Pkcs7Padding.cs │ │ │ │ │ │ ├── Pkcs7Padding.cs.meta │ │ │ │ │ │ ├── TbcPadding.cs │ │ │ │ │ │ ├── TbcPadding.cs.meta │ │ │ │ │ │ ├── X923Padding.cs │ │ │ │ │ │ ├── X923Padding.cs.meta │ │ │ │ │ │ ├── ZeroBytePadding.cs │ │ │ │ │ │ └── ZeroBytePadding.cs.meta │ │ │ │ │ ├── parameters.meta │ │ │ │ │ ├── parameters │ │ │ │ │ │ ├── AEADParameters.cs │ │ │ │ │ │ ├── AEADParameters.cs.meta │ │ │ │ │ │ ├── Blake3Parameters.cs │ │ │ │ │ │ ├── Blake3Parameters.cs.meta │ │ │ │ │ │ ├── CcmParameters.cs │ │ │ │ │ │ ├── CcmParameters.cs.meta │ │ │ │ │ │ ├── DHKeyGenerationParameters.cs │ │ │ │ │ │ ├── DHKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── DHKeyParameters.cs │ │ │ │ │ │ ├── DHKeyParameters.cs.meta │ │ │ │ │ │ ├── DHParameters.cs │ │ │ │ │ │ ├── DHParameters.cs.meta │ │ │ │ │ │ ├── DHPrivateKeyParameters.cs │ │ │ │ │ │ ├── DHPrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── DHPublicKeyParameters.cs │ │ │ │ │ │ ├── DHPublicKeyParameters.cs.meta │ │ │ │ │ │ ├── DHValidationParameters.cs │ │ │ │ │ │ ├── DHValidationParameters.cs.meta │ │ │ │ │ │ ├── DSAParameterGenerationParameters.cs │ │ │ │ │ │ ├── DSAParameterGenerationParameters.cs.meta │ │ │ │ │ │ ├── DesEdeParameters.cs │ │ │ │ │ │ ├── DesEdeParameters.cs.meta │ │ │ │ │ │ ├── DesParameters.cs │ │ │ │ │ │ ├── DesParameters.cs.meta │ │ │ │ │ │ ├── DsaKeyGenerationParameters.cs │ │ │ │ │ │ ├── DsaKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── DsaKeyParameters.cs │ │ │ │ │ │ ├── DsaKeyParameters.cs.meta │ │ │ │ │ │ ├── DsaParameters.cs │ │ │ │ │ │ ├── DsaParameters.cs.meta │ │ │ │ │ │ ├── DsaPrivateKeyParameters.cs │ │ │ │ │ │ ├── DsaPrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── DsaPublicKeyParameters.cs │ │ │ │ │ │ ├── DsaPublicKeyParameters.cs.meta │ │ │ │ │ │ ├── DsaValidationParameters.cs │ │ │ │ │ │ ├── DsaValidationParameters.cs.meta │ │ │ │ │ │ ├── ECDomainParameters.cs │ │ │ │ │ │ ├── ECDomainParameters.cs.meta │ │ │ │ │ │ ├── ECGOST3410Parameters.cs │ │ │ │ │ │ ├── ECGOST3410Parameters.cs.meta │ │ │ │ │ │ ├── ECKeyGenerationParameters.cs │ │ │ │ │ │ ├── ECKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── ECKeyParameters.cs │ │ │ │ │ │ ├── ECKeyParameters.cs.meta │ │ │ │ │ │ ├── ECNamedDomainParameters.cs │ │ │ │ │ │ ├── ECNamedDomainParameters.cs.meta │ │ │ │ │ │ ├── ECPrivateKeyParameters.cs │ │ │ │ │ │ ├── ECPrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── ECPublicKeyParameters.cs │ │ │ │ │ │ ├── ECPublicKeyParameters.cs.meta │ │ │ │ │ │ ├── Ed25519KeyGenerationParameters.cs │ │ │ │ │ │ ├── Ed25519KeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── Ed25519PrivateKeyParameters.cs │ │ │ │ │ │ ├── Ed25519PrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── Ed25519PublicKeyParameters.cs │ │ │ │ │ │ ├── Ed25519PublicKeyParameters.cs.meta │ │ │ │ │ │ ├── Ed448KeyGenerationParameters.cs │ │ │ │ │ │ ├── Ed448KeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── Ed448PrivateKeyParameters.cs │ │ │ │ │ │ ├── Ed448PrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── Ed448PublicKeyParameters.cs │ │ │ │ │ │ ├── Ed448PublicKeyParameters.cs.meta │ │ │ │ │ │ ├── ElGamalKeyGenerationParameters.cs │ │ │ │ │ │ ├── ElGamalKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── ElGamalKeyParameters.cs │ │ │ │ │ │ ├── ElGamalKeyParameters.cs.meta │ │ │ │ │ │ ├── ElGamalParameters.cs │ │ │ │ │ │ ├── ElGamalParameters.cs.meta │ │ │ │ │ │ ├── ElGamalPrivateKeyParameters.cs │ │ │ │ │ │ ├── ElGamalPrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── ElGamalPublicKeyParameters.cs │ │ │ │ │ │ ├── ElGamalPublicKeyParameters.cs.meta │ │ │ │ │ │ ├── FpeParameters.cs │ │ │ │ │ │ ├── FpeParameters.cs.meta │ │ │ │ │ │ ├── GOST3410KeyGenerationParameters.cs │ │ │ │ │ │ ├── GOST3410KeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── GOST3410KeyParameters.cs │ │ │ │ │ │ ├── GOST3410KeyParameters.cs.meta │ │ │ │ │ │ ├── GOST3410Parameters.cs │ │ │ │ │ │ ├── GOST3410Parameters.cs.meta │ │ │ │ │ │ ├── GOST3410PrivateKeyParameters.cs │ │ │ │ │ │ ├── GOST3410PrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── GOST3410PublicKeyParameters.cs │ │ │ │ │ │ ├── GOST3410PublicKeyParameters.cs.meta │ │ │ │ │ │ ├── GOST3410ValidationParameters.cs │ │ │ │ │ │ ├── GOST3410ValidationParameters.cs.meta │ │ │ │ │ │ ├── HKDFParameters.cs │ │ │ │ │ │ ├── HKDFParameters.cs.meta │ │ │ │ │ │ ├── ISO18033KDFParameters.cs │ │ │ │ │ │ ├── ISO18033KDFParameters.cs.meta │ │ │ │ │ │ ├── IesParameters.cs │ │ │ │ │ │ ├── IesParameters.cs.meta │ │ │ │ │ │ ├── IesWithCipherParameters.cs │ │ │ │ │ │ ├── IesWithCipherParameters.cs.meta │ │ │ │ │ │ ├── KDFCounterParameters.cs │ │ │ │ │ │ ├── KDFCounterParameters.cs.meta │ │ │ │ │ │ ├── KDFDoublePipelineIterationParameters.cs │ │ │ │ │ │ ├── KDFDoublePipelineIterationParameters.cs.meta │ │ │ │ │ │ ├── KDFFeedbackParameters.cs │ │ │ │ │ │ ├── KDFFeedbackParameters.cs.meta │ │ │ │ │ │ ├── KdfParameters.cs │ │ │ │ │ │ ├── KdfParameters.cs.meta │ │ │ │ │ │ ├── KeyParameter.cs │ │ │ │ │ │ ├── KeyParameter.cs.meta │ │ │ │ │ │ ├── MgfParameters.cs │ │ │ │ │ │ ├── MgfParameters.cs.meta │ │ │ │ │ │ ├── MqvPrivateParameters.cs │ │ │ │ │ │ ├── MqvPrivateParameters.cs.meta │ │ │ │ │ │ ├── MqvPublicParameters.cs │ │ │ │ │ │ ├── MqvPublicParameters.cs.meta │ │ │ │ │ │ ├── NaccacheSternKeyGenerationParameters.cs │ │ │ │ │ │ ├── NaccacheSternKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── NaccacheSternKeyParameters.cs │ │ │ │ │ │ ├── NaccacheSternKeyParameters.cs.meta │ │ │ │ │ │ ├── NaccacheSternPrivateKeyParameters.cs │ │ │ │ │ │ ├── NaccacheSternPrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── ParametersWithID.cs │ │ │ │ │ │ ├── ParametersWithID.cs.meta │ │ │ │ │ │ ├── ParametersWithIV.cs │ │ │ │ │ │ ├── ParametersWithIV.cs.meta │ │ │ │ │ │ ├── ParametersWithRandom.cs │ │ │ │ │ │ ├── ParametersWithRandom.cs.meta │ │ │ │ │ │ ├── ParametersWithSBox.cs │ │ │ │ │ │ ├── ParametersWithSBox.cs.meta │ │ │ │ │ │ ├── ParametersWithSalt.cs │ │ │ │ │ │ ├── ParametersWithSalt.cs.meta │ │ │ │ │ │ ├── RC2Parameters.cs │ │ │ │ │ │ ├── RC2Parameters.cs.meta │ │ │ │ │ │ ├── RC5Parameters.cs │ │ │ │ │ │ ├── RC5Parameters.cs.meta │ │ │ │ │ │ ├── RSABlindingParameters.cs │ │ │ │ │ │ ├── RSABlindingParameters.cs.meta │ │ │ │ │ │ ├── RsaKeyGenerationParameters.cs │ │ │ │ │ │ ├── RsaKeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── RsaKeyParameters.cs │ │ │ │ │ │ ├── RsaKeyParameters.cs.meta │ │ │ │ │ │ ├── RsaPrivateCrtKeyParameters.cs │ │ │ │ │ │ ├── RsaPrivateCrtKeyParameters.cs.meta │ │ │ │ │ │ ├── SM2KeyExchangePrivateParameters.cs │ │ │ │ │ │ ├── SM2KeyExchangePrivateParameters.cs.meta │ │ │ │ │ │ ├── SM2KeyExchangePublicParameters.cs │ │ │ │ │ │ ├── SM2KeyExchangePublicParameters.cs.meta │ │ │ │ │ │ ├── SkeinParameters.cs │ │ │ │ │ │ ├── SkeinParameters.cs.meta │ │ │ │ │ │ ├── Srp6GroupParameters.cs │ │ │ │ │ │ ├── Srp6GroupParameters.cs.meta │ │ │ │ │ │ ├── TweakableBlockCipherParameters.cs │ │ │ │ │ │ ├── TweakableBlockCipherParameters.cs.meta │ │ │ │ │ │ ├── X25519KeyGenerationParameters.cs │ │ │ │ │ │ ├── X25519KeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── X25519PrivateKeyParameters.cs │ │ │ │ │ │ ├── X25519PrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── X25519PublicKeyParameters.cs │ │ │ │ │ │ ├── X25519PublicKeyParameters.cs.meta │ │ │ │ │ │ ├── X448KeyGenerationParameters.cs │ │ │ │ │ │ ├── X448KeyGenerationParameters.cs.meta │ │ │ │ │ │ ├── X448PrivateKeyParameters.cs │ │ │ │ │ │ ├── X448PrivateKeyParameters.cs.meta │ │ │ │ │ │ ├── X448PublicKeyParameters.cs │ │ │ │ │ │ └── X448PublicKeyParameters.cs.meta │ │ │ │ │ ├── prng.meta │ │ │ │ │ ├── prng │ │ │ │ │ │ ├── BasicEntropySourceProvider.cs │ │ │ │ │ │ ├── BasicEntropySourceProvider.cs.meta │ │ │ │ │ │ ├── CryptoApiEntropySourceProvider.cs │ │ │ │ │ │ ├── CryptoApiEntropySourceProvider.cs.meta │ │ │ │ │ │ ├── CryptoApiRandomGenerator.cs │ │ │ │ │ │ ├── CryptoApiRandomGenerator.cs.meta │ │ │ │ │ │ ├── DigestRandomGenerator.cs │ │ │ │ │ │ ├── DigestRandomGenerator.cs.meta │ │ │ │ │ │ ├── EntropyUtilities.cs │ │ │ │ │ │ ├── EntropyUtilities.cs.meta │ │ │ │ │ │ ├── IDrbgProvider.cs │ │ │ │ │ │ ├── IDrbgProvider.cs.meta │ │ │ │ │ │ ├── IRandomGenerator.cs │ │ │ │ │ │ ├── IRandomGenerator.cs.meta │ │ │ │ │ │ ├── ReversedWindowGenerator.cs │ │ │ │ │ │ ├── ReversedWindowGenerator.cs.meta │ │ │ │ │ │ ├── SP800SecureRandom.cs │ │ │ │ │ │ ├── SP800SecureRandom.cs.meta │ │ │ │ │ │ ├── SP800SecureRandomBuilder.cs │ │ │ │ │ │ ├── SP800SecureRandomBuilder.cs.meta │ │ │ │ │ │ ├── ThreadedSeedGenerator.cs │ │ │ │ │ │ ├── ThreadedSeedGenerator.cs.meta │ │ │ │ │ │ ├── VMPCRandomGenerator.cs │ │ │ │ │ │ ├── VMPCRandomGenerator.cs.meta │ │ │ │ │ │ ├── X931Rng.cs │ │ │ │ │ │ ├── X931Rng.cs.meta │ │ │ │ │ │ ├── X931SecureRandom.cs │ │ │ │ │ │ ├── X931SecureRandom.cs.meta │ │ │ │ │ │ ├── X931SecureRandomBuilder.cs │ │ │ │ │ │ ├── X931SecureRandomBuilder.cs.meta │ │ │ │ │ │ ├── drbg.meta │ │ │ │ │ │ └── drbg │ │ │ │ │ │ │ ├── CtrSP800Drbg.cs │ │ │ │ │ │ │ ├── CtrSP800Drbg.cs.meta │ │ │ │ │ │ │ ├── DrbgUtilities.cs │ │ │ │ │ │ │ ├── DrbgUtilities.cs.meta │ │ │ │ │ │ │ ├── HMacSP800Drbg.cs │ │ │ │ │ │ │ ├── HMacSP800Drbg.cs.meta │ │ │ │ │ │ │ ├── HashSP800Drbg.cs │ │ │ │ │ │ │ ├── HashSP800Drbg.cs.meta │ │ │ │ │ │ │ ├── ISP80090Drbg.cs │ │ │ │ │ │ │ └── ISP80090Drbg.cs.meta │ │ │ │ │ ├── signers.meta │ │ │ │ │ ├── signers │ │ │ │ │ │ ├── DsaDigestSigner.cs │ │ │ │ │ │ ├── DsaDigestSigner.cs.meta │ │ │ │ │ │ ├── DsaSigner.cs │ │ │ │ │ │ ├── DsaSigner.cs.meta │ │ │ │ │ │ ├── ECDsaSigner.cs │ │ │ │ │ │ ├── ECDsaSigner.cs.meta │ │ │ │ │ │ ├── ECGOST3410Signer.cs │ │ │ │ │ │ ├── ECGOST3410Signer.cs.meta │ │ │ │ │ │ ├── ECNRSigner.cs │ │ │ │ │ │ ├── ECNRSigner.cs.meta │ │ │ │ │ │ ├── Ed25519Signer.cs │ │ │ │ │ │ ├── Ed25519Signer.cs.meta │ │ │ │ │ │ ├── Ed25519ctxSigner.cs │ │ │ │ │ │ ├── Ed25519ctxSigner.cs.meta │ │ │ │ │ │ ├── Ed25519phSigner.cs │ │ │ │ │ │ ├── Ed25519phSigner.cs.meta │ │ │ │ │ │ ├── Ed448Signer.cs │ │ │ │ │ │ ├── Ed448Signer.cs.meta │ │ │ │ │ │ ├── Ed448phSigner.cs │ │ │ │ │ │ ├── Ed448phSigner.cs.meta │ │ │ │ │ │ ├── GOST3410DigestSigner.cs │ │ │ │ │ │ ├── GOST3410DigestSigner.cs.meta │ │ │ │ │ │ ├── GOST3410Signer.cs │ │ │ │ │ │ ├── GOST3410Signer.cs.meta │ │ │ │ │ │ ├── GenericSigner.cs │ │ │ │ │ │ ├── GenericSigner.cs.meta │ │ │ │ │ │ ├── HMacDsaKCalculator.cs │ │ │ │ │ │ ├── HMacDsaKCalculator.cs.meta │ │ │ │ │ │ ├── IDsaEncoding.cs │ │ │ │ │ │ ├── IDsaEncoding.cs.meta │ │ │ │ │ │ ├── IDsaKCalculator.cs │ │ │ │ │ │ ├── IDsaKCalculator.cs.meta │ │ │ │ │ │ ├── Iso9796d2PssSigner.cs │ │ │ │ │ │ ├── Iso9796d2PssSigner.cs.meta │ │ │ │ │ │ ├── Iso9796d2Signer.cs │ │ │ │ │ │ ├── Iso9796d2Signer.cs.meta │ │ │ │ │ │ ├── IsoTrailers.cs │ │ │ │ │ │ ├── IsoTrailers.cs.meta │ │ │ │ │ │ ├── PlainDsaEncoding.cs │ │ │ │ │ │ ├── PlainDsaEncoding.cs.meta │ │ │ │ │ │ ├── PssSigner.cs │ │ │ │ │ │ ├── PssSigner.cs.meta │ │ │ │ │ │ ├── RandomDsaKCalculator.cs │ │ │ │ │ │ ├── RandomDsaKCalculator.cs.meta │ │ │ │ │ │ ├── RsaDigestSigner.cs │ │ │ │ │ │ ├── RsaDigestSigner.cs.meta │ │ │ │ │ │ ├── SM2Signer.cs │ │ │ │ │ │ ├── SM2Signer.cs.meta │ │ │ │ │ │ ├── StandardDsaEncoding.cs │ │ │ │ │ │ ├── StandardDsaEncoding.cs.meta │ │ │ │ │ │ ├── X931Signer.cs │ │ │ │ │ │ └── X931Signer.cs.meta │ │ │ │ │ ├── util.meta │ │ │ │ │ └── util │ │ │ │ │ │ ├── AlgorithmIdentifierFactory.cs │ │ │ │ │ │ ├── AlgorithmIdentifierFactory.cs.meta │ │ │ │ │ │ ├── BasicAlphabetMapper.cs │ │ │ │ │ │ ├── BasicAlphabetMapper.cs.meta │ │ │ │ │ │ ├── CipherFactory.cs │ │ │ │ │ │ ├── CipherFactory.cs.meta │ │ │ │ │ │ ├── CipherKeyGeneratorFactory.cs │ │ │ │ │ │ ├── CipherKeyGeneratorFactory.cs.meta │ │ │ │ │ │ ├── Pack.cs │ │ │ │ │ │ └── Pack.cs.meta │ │ │ │ ├── math.meta │ │ │ │ ├── math │ │ │ │ │ ├── BigInteger.cs │ │ │ │ │ ├── BigInteger.cs.meta │ │ │ │ │ ├── Primes.cs │ │ │ │ │ ├── Primes.cs.meta │ │ │ │ │ ├── ec.meta │ │ │ │ │ ├── ec │ │ │ │ │ │ ├── AbstractECLookupTable.cs │ │ │ │ │ │ ├── AbstractECLookupTable.cs.meta │ │ │ │ │ │ ├── ECAlgorithms.cs │ │ │ │ │ │ ├── ECAlgorithms.cs.meta │ │ │ │ │ │ ├── ECCurve.cs │ │ │ │ │ │ ├── ECCurve.cs.meta │ │ │ │ │ │ ├── ECFieldElement.cs │ │ │ │ │ │ ├── ECFieldElement.cs.meta │ │ │ │ │ │ ├── ECLookupTable.cs │ │ │ │ │ │ ├── ECLookupTable.cs.meta │ │ │ │ │ │ ├── ECPoint.cs │ │ │ │ │ │ ├── ECPoint.cs.meta │ │ │ │ │ │ ├── ECPointMap.cs │ │ │ │ │ │ ├── ECPointMap.cs.meta │ │ │ │ │ │ ├── LongArray.cs │ │ │ │ │ │ ├── LongArray.cs.meta │ │ │ │ │ │ ├── ScaleXNegateYPointMap.cs │ │ │ │ │ │ ├── ScaleXNegateYPointMap.cs.meta │ │ │ │ │ │ ├── ScaleXPointMap.cs │ │ │ │ │ │ ├── ScaleXPointMap.cs.meta │ │ │ │ │ │ ├── ScaleYNegateXPointMap.cs │ │ │ │ │ │ ├── ScaleYNegateXPointMap.cs.meta │ │ │ │ │ │ ├── ScaleYPointMap.cs │ │ │ │ │ │ ├── ScaleYPointMap.cs.meta │ │ │ │ │ │ ├── SimpleLookupTable.cs │ │ │ │ │ │ ├── SimpleLookupTable.cs.meta │ │ │ │ │ │ ├── abc.meta │ │ │ │ │ │ ├── abc │ │ │ │ │ │ │ ├── SimpleBigDecimal.cs │ │ │ │ │ │ │ ├── SimpleBigDecimal.cs.meta │ │ │ │ │ │ │ ├── Tnaf.cs │ │ │ │ │ │ │ ├── Tnaf.cs.meta │ │ │ │ │ │ │ ├── ZTauElement.cs │ │ │ │ │ │ │ └── ZTauElement.cs.meta │ │ │ │ │ │ ├── custom.meta │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── djb.meta │ │ │ │ │ │ │ ├── djb │ │ │ │ │ │ │ │ ├── Curve25519.cs │ │ │ │ │ │ │ │ ├── Curve25519.cs.meta │ │ │ │ │ │ │ │ ├── Curve25519Field.cs │ │ │ │ │ │ │ │ ├── Curve25519Field.cs.meta │ │ │ │ │ │ │ │ ├── Curve25519FieldElement.cs │ │ │ │ │ │ │ │ ├── Curve25519FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── Curve25519Point.cs │ │ │ │ │ │ │ │ └── Curve25519Point.cs.meta │ │ │ │ │ │ │ ├── gm.meta │ │ │ │ │ │ │ ├── gm │ │ │ │ │ │ │ │ ├── SM2P256V1Curve.cs │ │ │ │ │ │ │ │ ├── SM2P256V1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SM2P256V1Field.cs │ │ │ │ │ │ │ │ ├── SM2P256V1Field.cs.meta │ │ │ │ │ │ │ │ ├── SM2P256V1FieldElement.cs │ │ │ │ │ │ │ │ ├── SM2P256V1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SM2P256V1Point.cs │ │ │ │ │ │ │ │ └── SM2P256V1Point.cs.meta │ │ │ │ │ │ │ ├── sec.meta │ │ │ │ │ │ │ └── sec │ │ │ │ │ │ │ │ ├── SecP128R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP128R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP128R1Field.cs │ │ │ │ │ │ │ │ ├── SecP128R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP128R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP128R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP128R1Point.cs │ │ │ │ │ │ │ │ ├── SecP128R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP160K1Curve.cs │ │ │ │ │ │ │ │ ├── SecP160K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP160K1Point.cs │ │ │ │ │ │ │ │ ├── SecP160K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP160R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R1Field.cs │ │ │ │ │ │ │ │ ├── SecP160R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP160R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R1Point.cs │ │ │ │ │ │ │ │ ├── SecP160R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R2Curve.cs │ │ │ │ │ │ │ │ ├── SecP160R2Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R2Field.cs │ │ │ │ │ │ │ │ ├── SecP160R2Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R2FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP160R2FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP160R2Point.cs │ │ │ │ │ │ │ │ ├── SecP160R2Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP192K1Curve.cs │ │ │ │ │ │ │ │ ├── SecP192K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP192K1Field.cs │ │ │ │ │ │ │ │ ├── SecP192K1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP192K1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP192K1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP192K1Point.cs │ │ │ │ │ │ │ │ ├── SecP192K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP192R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP192R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP192R1Field.cs │ │ │ │ │ │ │ │ ├── SecP192R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP192R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP192R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP192R1Point.cs │ │ │ │ │ │ │ │ ├── SecP192R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP224K1Curve.cs │ │ │ │ │ │ │ │ ├── SecP224K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP224K1Field.cs │ │ │ │ │ │ │ │ ├── SecP224K1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP224K1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP224K1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP224K1Point.cs │ │ │ │ │ │ │ │ ├── SecP224K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP224R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP224R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP224R1Field.cs │ │ │ │ │ │ │ │ ├── SecP224R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP224R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP224R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP224R1Point.cs │ │ │ │ │ │ │ │ ├── SecP224R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP256K1Curve.cs │ │ │ │ │ │ │ │ ├── SecP256K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP256K1Field.cs │ │ │ │ │ │ │ │ ├── SecP256K1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP256K1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP256K1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP256K1Point.cs │ │ │ │ │ │ │ │ ├── SecP256K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP256R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP256R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP256R1Field.cs │ │ │ │ │ │ │ │ ├── SecP256R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP256R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP256R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP256R1Point.cs │ │ │ │ │ │ │ │ ├── SecP256R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP384R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP384R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP384R1Field.cs │ │ │ │ │ │ │ │ ├── SecP384R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP384R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP384R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP384R1Point.cs │ │ │ │ │ │ │ │ ├── SecP384R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecP521R1Curve.cs │ │ │ │ │ │ │ │ ├── SecP521R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecP521R1Field.cs │ │ │ │ │ │ │ │ ├── SecP521R1Field.cs.meta │ │ │ │ │ │ │ │ ├── SecP521R1FieldElement.cs │ │ │ │ │ │ │ │ ├── SecP521R1FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecP521R1Point.cs │ │ │ │ │ │ │ │ ├── SecP521R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT113Field.cs │ │ │ │ │ │ │ │ ├── SecT113Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT113FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT113FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT113R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT113R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT113R1Point.cs │ │ │ │ │ │ │ │ ├── SecT113R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT113R2Curve.cs │ │ │ │ │ │ │ │ ├── SecT113R2Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT113R2Point.cs │ │ │ │ │ │ │ │ ├── SecT113R2Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT131Field.cs │ │ │ │ │ │ │ │ ├── SecT131Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT131FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT131FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT131R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT131R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT131R1Point.cs │ │ │ │ │ │ │ │ ├── SecT131R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT131R2Curve.cs │ │ │ │ │ │ │ │ ├── SecT131R2Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT131R2Point.cs │ │ │ │ │ │ │ │ ├── SecT131R2Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT163Field.cs │ │ │ │ │ │ │ │ ├── SecT163Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT163FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT163FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT163K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT163K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT163K1Point.cs │ │ │ │ │ │ │ │ ├── SecT163K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT163R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT163R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT163R1Point.cs │ │ │ │ │ │ │ │ ├── SecT163R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT163R2Curve.cs │ │ │ │ │ │ │ │ ├── SecT163R2Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT163R2Point.cs │ │ │ │ │ │ │ │ ├── SecT163R2Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT193Field.cs │ │ │ │ │ │ │ │ ├── SecT193Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT193FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT193FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT193R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT193R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT193R1Point.cs │ │ │ │ │ │ │ │ ├── SecT193R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT193R2Curve.cs │ │ │ │ │ │ │ │ ├── SecT193R2Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT193R2Point.cs │ │ │ │ │ │ │ │ ├── SecT193R2Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT233Field.cs │ │ │ │ │ │ │ │ ├── SecT233Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT233FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT233FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT233K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT233K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT233K1Point.cs │ │ │ │ │ │ │ │ ├── SecT233K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT233R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT233R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT233R1Point.cs │ │ │ │ │ │ │ │ ├── SecT233R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT239Field.cs │ │ │ │ │ │ │ │ ├── SecT239Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT239FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT239FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT239K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT239K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT239K1Point.cs │ │ │ │ │ │ │ │ ├── SecT239K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT283Field.cs │ │ │ │ │ │ │ │ ├── SecT283Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT283FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT283FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT283K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT283K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT283K1Point.cs │ │ │ │ │ │ │ │ ├── SecT283K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT283R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT283R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT283R1Point.cs │ │ │ │ │ │ │ │ ├── SecT283R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT409Field.cs │ │ │ │ │ │ │ │ ├── SecT409Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT409FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT409FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT409K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT409K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT409K1Point.cs │ │ │ │ │ │ │ │ ├── SecT409K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT409R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT409R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT409R1Point.cs │ │ │ │ │ │ │ │ ├── SecT409R1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT571Field.cs │ │ │ │ │ │ │ │ ├── SecT571Field.cs.meta │ │ │ │ │ │ │ │ ├── SecT571FieldElement.cs │ │ │ │ │ │ │ │ ├── SecT571FieldElement.cs.meta │ │ │ │ │ │ │ │ ├── SecT571K1Curve.cs │ │ │ │ │ │ │ │ ├── SecT571K1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT571K1Point.cs │ │ │ │ │ │ │ │ ├── SecT571K1Point.cs.meta │ │ │ │ │ │ │ │ ├── SecT571R1Curve.cs │ │ │ │ │ │ │ │ ├── SecT571R1Curve.cs.meta │ │ │ │ │ │ │ │ ├── SecT571R1Point.cs │ │ │ │ │ │ │ │ └── SecT571R1Point.cs.meta │ │ │ │ │ │ ├── endo.meta │ │ │ │ │ │ ├── endo │ │ │ │ │ │ │ ├── ECEndomorphism.cs │ │ │ │ │ │ │ ├── ECEndomorphism.cs.meta │ │ │ │ │ │ │ ├── EndoPreCompInfo.cs │ │ │ │ │ │ │ ├── EndoPreCompInfo.cs.meta │ │ │ │ │ │ │ ├── EndoUtilities.cs │ │ │ │ │ │ │ ├── EndoUtilities.cs.meta │ │ │ │ │ │ │ ├── GlvEndomorphism.cs │ │ │ │ │ │ │ ├── GlvEndomorphism.cs.meta │ │ │ │ │ │ │ ├── GlvTypeAEndomorphism.cs │ │ │ │ │ │ │ ├── GlvTypeAEndomorphism.cs.meta │ │ │ │ │ │ │ ├── GlvTypeAParameters.cs │ │ │ │ │ │ │ ├── GlvTypeAParameters.cs.meta │ │ │ │ │ │ │ ├── GlvTypeBEndomorphism.cs │ │ │ │ │ │ │ ├── GlvTypeBEndomorphism.cs.meta │ │ │ │ │ │ │ ├── GlvTypeBParameters.cs │ │ │ │ │ │ │ ├── GlvTypeBParameters.cs.meta │ │ │ │ │ │ │ ├── ScalarSplitParameters.cs │ │ │ │ │ │ │ └── ScalarSplitParameters.cs.meta │ │ │ │ │ │ ├── multiplier.meta │ │ │ │ │ │ ├── multiplier │ │ │ │ │ │ │ ├── AbstractECMultiplier.cs │ │ │ │ │ │ │ ├── AbstractECMultiplier.cs.meta │ │ │ │ │ │ │ ├── DoubleAddMultiplier.cs │ │ │ │ │ │ │ ├── DoubleAddMultiplier.cs.meta │ │ │ │ │ │ │ ├── ECMultiplier.cs │ │ │ │ │ │ │ ├── ECMultiplier.cs.meta │ │ │ │ │ │ │ ├── FixedPointCombMultiplier.cs │ │ │ │ │ │ │ ├── FixedPointCombMultiplier.cs.meta │ │ │ │ │ │ │ ├── FixedPointPreCompInfo.cs │ │ │ │ │ │ │ ├── FixedPointPreCompInfo.cs.meta │ │ │ │ │ │ │ ├── FixedPointUtilities.cs │ │ │ │ │ │ │ ├── FixedPointUtilities.cs.meta │ │ │ │ │ │ │ ├── GlvMultiplier.cs │ │ │ │ │ │ │ ├── GlvMultiplier.cs.meta │ │ │ │ │ │ │ ├── IPreCompCallback.cs │ │ │ │ │ │ │ ├── IPreCompCallback.cs.meta │ │ │ │ │ │ │ ├── MixedNafR2LMultiplier.cs │ │ │ │ │ │ │ ├── MixedNafR2LMultiplier.cs.meta │ │ │ │ │ │ │ ├── MontgomeryLadderMultiplier.cs │ │ │ │ │ │ │ ├── MontgomeryLadderMultiplier.cs.meta │ │ │ │ │ │ │ ├── NafL2RMultiplier.cs │ │ │ │ │ │ │ ├── NafL2RMultiplier.cs.meta │ │ │ │ │ │ │ ├── NafR2LMultiplier.cs │ │ │ │ │ │ │ ├── NafR2LMultiplier.cs.meta │ │ │ │ │ │ │ ├── PreCompInfo.cs │ │ │ │ │ │ │ ├── PreCompInfo.cs.meta │ │ │ │ │ │ │ ├── ReferenceMultiplier.cs │ │ │ │ │ │ │ ├── ReferenceMultiplier.cs.meta │ │ │ │ │ │ │ ├── ValidityPreCompInfo.cs │ │ │ │ │ │ │ ├── ValidityPreCompInfo.cs.meta │ │ │ │ │ │ │ ├── WNafL2RMultiplier.cs │ │ │ │ │ │ │ ├── WNafL2RMultiplier.cs.meta │ │ │ │ │ │ │ ├── WNafPreCompInfo.cs │ │ │ │ │ │ │ ├── WNafPreCompInfo.cs.meta │ │ │ │ │ │ │ ├── WNafUtilities.cs │ │ │ │ │ │ │ ├── WNafUtilities.cs.meta │ │ │ │ │ │ │ ├── WTauNafMultiplier.cs │ │ │ │ │ │ │ ├── WTauNafMultiplier.cs.meta │ │ │ │ │ │ │ ├── WTauNafPreCompInfo.cs │ │ │ │ │ │ │ ├── WTauNafPreCompInfo.cs.meta │ │ │ │ │ │ │ ├── ZSignedDigitL2RMultiplier.cs │ │ │ │ │ │ │ ├── ZSignedDigitL2RMultiplier.cs.meta │ │ │ │ │ │ │ ├── ZSignedDigitR2LMultiplier.cs │ │ │ │ │ │ │ └── ZSignedDigitR2LMultiplier.cs.meta │ │ │ │ │ │ ├── rfc7748.meta │ │ │ │ │ │ ├── rfc7748 │ │ │ │ │ │ │ ├── X25519.cs │ │ │ │ │ │ │ ├── X25519.cs.meta │ │ │ │ │ │ │ ├── X25519Field.cs │ │ │ │ │ │ │ ├── X25519Field.cs.meta │ │ │ │ │ │ │ ├── X448.cs │ │ │ │ │ │ │ ├── X448.cs.meta │ │ │ │ │ │ │ ├── X448Field.cs │ │ │ │ │ │ │ └── X448Field.cs.meta │ │ │ │ │ │ ├── rfc8032.meta │ │ │ │ │ │ └── rfc8032 │ │ │ │ │ │ │ ├── Ed25519.cs │ │ │ │ │ │ │ ├── Ed25519.cs.meta │ │ │ │ │ │ │ ├── Ed448.cs │ │ │ │ │ │ │ └── Ed448.cs.meta │ │ │ │ │ ├── field.meta │ │ │ │ │ ├── field │ │ │ │ │ │ ├── FiniteFields.cs │ │ │ │ │ │ ├── FiniteFields.cs.meta │ │ │ │ │ │ ├── GF2Polynomial.cs │ │ │ │ │ │ ├── GF2Polynomial.cs.meta │ │ │ │ │ │ ├── GenericPolynomialExtensionField.cs │ │ │ │ │ │ ├── GenericPolynomialExtensionField.cs.meta │ │ │ │ │ │ ├── IExtensionField.cs │ │ │ │ │ │ ├── IExtensionField.cs.meta │ │ │ │ │ │ ├── IFiniteField.cs │ │ │ │ │ │ ├── IFiniteField.cs.meta │ │ │ │ │ │ ├── IPolynomial.cs │ │ │ │ │ │ ├── IPolynomial.cs.meta │ │ │ │ │ │ ├── IPolynomialExtensionField.cs │ │ │ │ │ │ ├── IPolynomialExtensionField.cs.meta │ │ │ │ │ │ ├── PrimeField.cs │ │ │ │ │ │ └── PrimeField.cs.meta │ │ │ │ │ ├── raw.meta │ │ │ │ │ └── raw │ │ │ │ │ │ ├── Bits.cs │ │ │ │ │ │ ├── Bits.cs.meta │ │ │ │ │ │ ├── Interleave.cs │ │ │ │ │ │ ├── Interleave.cs.meta │ │ │ │ │ │ ├── Mod.cs │ │ │ │ │ │ ├── Mod.cs.meta │ │ │ │ │ │ ├── Nat.cs │ │ │ │ │ │ ├── Nat.cs.meta │ │ │ │ │ │ ├── Nat128.cs │ │ │ │ │ │ ├── Nat128.cs.meta │ │ │ │ │ │ ├── Nat160.cs │ │ │ │ │ │ ├── Nat160.cs.meta │ │ │ │ │ │ ├── Nat192.cs │ │ │ │ │ │ ├── Nat192.cs.meta │ │ │ │ │ │ ├── Nat224.cs │ │ │ │ │ │ ├── Nat224.cs.meta │ │ │ │ │ │ ├── Nat256.cs │ │ │ │ │ │ ├── Nat256.cs.meta │ │ │ │ │ │ ├── Nat320.cs │ │ │ │ │ │ ├── Nat320.cs.meta │ │ │ │ │ │ ├── Nat384.cs │ │ │ │ │ │ ├── Nat384.cs.meta │ │ │ │ │ │ ├── Nat448.cs │ │ │ │ │ │ ├── Nat448.cs.meta │ │ │ │ │ │ ├── Nat512.cs │ │ │ │ │ │ ├── Nat512.cs.meta │ │ │ │ │ │ ├── Nat576.cs │ │ │ │ │ │ └── Nat576.cs.meta │ │ │ │ ├── ocsp.meta │ │ │ │ ├── ocsp │ │ │ │ │ ├── BasicOCSPResp.cs │ │ │ │ │ ├── BasicOCSPResp.cs.meta │ │ │ │ │ ├── BasicOCSPRespGenerator.cs │ │ │ │ │ ├── BasicOCSPRespGenerator.cs.meta │ │ │ │ │ ├── CertificateID.cs │ │ │ │ │ ├── CertificateID.cs.meta │ │ │ │ │ ├── CertificateStatus.cs │ │ │ │ │ ├── CertificateStatus.cs.meta │ │ │ │ │ ├── OCSPException.cs │ │ │ │ │ ├── OCSPException.cs.meta │ │ │ │ │ ├── OCSPReq.cs │ │ │ │ │ ├── OCSPReq.cs.meta │ │ │ │ │ ├── OCSPReqGenerator.cs │ │ │ │ │ ├── OCSPReqGenerator.cs.meta │ │ │ │ │ ├── OCSPResp.cs │ │ │ │ │ ├── OCSPResp.cs.meta │ │ │ │ │ ├── OCSPRespGenerator.cs │ │ │ │ │ ├── OCSPRespGenerator.cs.meta │ │ │ │ │ ├── OCSPRespStatus.cs │ │ │ │ │ ├── OCSPRespStatus.cs.meta │ │ │ │ │ ├── OCSPUtil.cs │ │ │ │ │ ├── OCSPUtil.cs.meta │ │ │ │ │ ├── Req.cs │ │ │ │ │ ├── Req.cs.meta │ │ │ │ │ ├── RespData.cs │ │ │ │ │ ├── RespData.cs.meta │ │ │ │ │ ├── RespID.cs │ │ │ │ │ ├── RespID.cs.meta │ │ │ │ │ ├── RevokedStatus.cs │ │ │ │ │ ├── RevokedStatus.cs.meta │ │ │ │ │ ├── SingleResp.cs │ │ │ │ │ ├── SingleResp.cs.meta │ │ │ │ │ ├── UnknownStatus.cs │ │ │ │ │ └── UnknownStatus.cs.meta │ │ │ │ ├── openssl.meta │ │ │ │ ├── openssl │ │ │ │ │ ├── EncryptionException.cs │ │ │ │ │ ├── EncryptionException.cs.meta │ │ │ │ │ ├── IPasswordFinder.cs │ │ │ │ │ ├── IPasswordFinder.cs.meta │ │ │ │ │ ├── MiscPemGenerator.cs │ │ │ │ │ ├── MiscPemGenerator.cs.meta │ │ │ │ │ ├── PEMException.cs │ │ │ │ │ ├── PEMException.cs.meta │ │ │ │ │ ├── PEMReader.cs │ │ │ │ │ ├── PEMReader.cs.meta │ │ │ │ │ ├── PEMUtilities.cs │ │ │ │ │ ├── PEMUtilities.cs.meta │ │ │ │ │ ├── PEMWriter.cs │ │ │ │ │ ├── PEMWriter.cs.meta │ │ │ │ │ ├── PasswordException.cs │ │ │ │ │ ├── PasswordException.cs.meta │ │ │ │ │ ├── Pkcs8Generator.cs │ │ │ │ │ └── Pkcs8Generator.cs.meta │ │ │ │ ├── pkcs.meta │ │ │ │ ├── pkcs │ │ │ │ │ ├── AsymmetricKeyEntry.cs │ │ │ │ │ ├── AsymmetricKeyEntry.cs.meta │ │ │ │ │ ├── EncryptedPrivateKeyInfoFactory.cs │ │ │ │ │ ├── EncryptedPrivateKeyInfoFactory.cs.meta │ │ │ │ │ ├── PKCS12StoreBuilder.cs │ │ │ │ │ ├── PKCS12StoreBuilder.cs.meta │ │ │ │ │ ├── Pkcs10CertificationRequest.cs │ │ │ │ │ ├── Pkcs10CertificationRequest.cs.meta │ │ │ │ │ ├── Pkcs10CertificationRequestDelaySigned.cs │ │ │ │ │ ├── Pkcs10CertificationRequestDelaySigned.cs.meta │ │ │ │ │ ├── Pkcs12Entry.cs │ │ │ │ │ ├── Pkcs12Entry.cs.meta │ │ │ │ │ ├── Pkcs12Store.cs │ │ │ │ │ ├── Pkcs12Store.cs.meta │ │ │ │ │ ├── Pkcs12Utilities.cs │ │ │ │ │ ├── Pkcs12Utilities.cs.meta │ │ │ │ │ ├── Pkcs8EncryptedPrivateKeyInfo.cs │ │ │ │ │ ├── Pkcs8EncryptedPrivateKeyInfo.cs.meta │ │ │ │ │ ├── Pkcs8EncryptedPrivateKeyInfoBuilder.cs │ │ │ │ │ ├── Pkcs8EncryptedPrivateKeyInfoBuilder.cs.meta │ │ │ │ │ ├── PkcsException.cs │ │ │ │ │ ├── PkcsException.cs.meta │ │ │ │ │ ├── PkcsIOException.cs │ │ │ │ │ ├── PkcsIOException.cs.meta │ │ │ │ │ ├── PrivateKeyInfoFactory.cs │ │ │ │ │ ├── PrivateKeyInfoFactory.cs.meta │ │ │ │ │ ├── X509CertificateEntry.cs │ │ │ │ │ └── X509CertificateEntry.cs.meta │ │ │ │ ├── pkix.meta │ │ │ │ ├── pkix │ │ │ │ │ ├── CertStatus.cs │ │ │ │ │ ├── CertStatus.cs.meta │ │ │ │ │ ├── PkixAttrCertChecker.cs │ │ │ │ │ ├── PkixAttrCertChecker.cs.meta │ │ │ │ │ ├── PkixAttrCertPathBuilder.cs │ │ │ │ │ ├── PkixAttrCertPathBuilder.cs.meta │ │ │ │ │ ├── PkixAttrCertPathValidator.cs │ │ │ │ │ ├── PkixAttrCertPathValidator.cs.meta │ │ │ │ │ ├── PkixBuilderParameters.cs │ │ │ │ │ ├── PkixBuilderParameters.cs.meta │ │ │ │ │ ├── PkixCertPath.cs │ │ │ │ │ ├── PkixCertPath.cs.meta │ │ │ │ │ ├── PkixCertPathBuilder.cs │ │ │ │ │ ├── PkixCertPathBuilder.cs.meta │ │ │ │ │ ├── PkixCertPathBuilderException.cs │ │ │ │ │ ├── PkixCertPathBuilderException.cs.meta │ │ │ │ │ ├── PkixCertPathBuilderResult.cs │ │ │ │ │ ├── PkixCertPathBuilderResult.cs.meta │ │ │ │ │ ├── PkixCertPathChecker.cs │ │ │ │ │ ├── PkixCertPathChecker.cs.meta │ │ │ │ │ ├── PkixCertPathValidator.cs │ │ │ │ │ ├── PkixCertPathValidator.cs.meta │ │ │ │ │ ├── PkixCertPathValidatorException.cs │ │ │ │ │ ├── PkixCertPathValidatorException.cs.meta │ │ │ │ │ ├── PkixCertPathValidatorResult.cs │ │ │ │ │ ├── PkixCertPathValidatorResult.cs.meta │ │ │ │ │ ├── PkixCertPathValidatorUtilities.cs │ │ │ │ │ ├── PkixCertPathValidatorUtilities.cs.meta │ │ │ │ │ ├── PkixCrlUtilities.cs │ │ │ │ │ ├── PkixCrlUtilities.cs.meta │ │ │ │ │ ├── PkixNameConstraintValidator.cs │ │ │ │ │ ├── PkixNameConstraintValidator.cs.meta │ │ │ │ │ ├── PkixNameConstraintValidatorException.cs │ │ │ │ │ ├── PkixNameConstraintValidatorException.cs.meta │ │ │ │ │ ├── PkixParameters.cs │ │ │ │ │ ├── PkixParameters.cs.meta │ │ │ │ │ ├── PkixPolicyNode.cs │ │ │ │ │ ├── PkixPolicyNode.cs.meta │ │ │ │ │ ├── ReasonsMask.cs │ │ │ │ │ ├── ReasonsMask.cs.meta │ │ │ │ │ ├── Rfc3280CertPathUtilities.cs │ │ │ │ │ ├── Rfc3280CertPathUtilities.cs.meta │ │ │ │ │ ├── Rfc3281CertPathUtilities.cs │ │ │ │ │ ├── Rfc3281CertPathUtilities.cs.meta │ │ │ │ │ ├── TrustAnchor.cs │ │ │ │ │ └── TrustAnchor.cs.meta │ │ │ │ ├── security.meta │ │ │ │ ├── security │ │ │ │ │ ├── AgreementUtilities.cs │ │ │ │ │ ├── AgreementUtilities.cs.meta │ │ │ │ │ ├── CipherUtilities.cs │ │ │ │ │ ├── CipherUtilities.cs.meta │ │ │ │ │ ├── DigestUtilities.cs │ │ │ │ │ ├── DigestUtilities.cs.meta │ │ │ │ │ ├── DotNetUtilities.cs │ │ │ │ │ ├── DotNetUtilities.cs.meta │ │ │ │ │ ├── GeneralSecurityException.cs │ │ │ │ │ ├── GeneralSecurityException.cs.meta │ │ │ │ │ ├── GeneratorUtilities.cs │ │ │ │ │ ├── GeneratorUtilities.cs.meta │ │ │ │ │ ├── InvalidKeyException.cs │ │ │ │ │ ├── InvalidKeyException.cs.meta │ │ │ │ │ ├── InvalidParameterException.cs │ │ │ │ │ ├── InvalidParameterException.cs.meta │ │ │ │ │ ├── JksStore.cs │ │ │ │ │ ├── JksStore.cs.meta │ │ │ │ │ ├── KeyException.cs │ │ │ │ │ ├── KeyException.cs.meta │ │ │ │ │ ├── MacUtilities.cs │ │ │ │ │ ├── MacUtilities.cs.meta │ │ │ │ │ ├── NoSuchAlgorithmException.cs │ │ │ │ │ ├── NoSuchAlgorithmException.cs.meta │ │ │ │ │ ├── ParameterUtilities.cs │ │ │ │ │ ├── ParameterUtilities.cs.meta │ │ │ │ │ ├── PbeUtilities.cs │ │ │ │ │ ├── PbeUtilities.cs.meta │ │ │ │ │ ├── PrivateKeyFactory.cs │ │ │ │ │ ├── PrivateKeyFactory.cs.meta │ │ │ │ │ ├── PublicKeyFactory.cs │ │ │ │ │ ├── PublicKeyFactory.cs.meta │ │ │ │ │ ├── SecureRandom.cs │ │ │ │ │ ├── SecureRandom.cs.meta │ │ │ │ │ ├── SecurityUtilityException.cs │ │ │ │ │ ├── SecurityUtilityException.cs.meta │ │ │ │ │ ├── SignatureException.cs │ │ │ │ │ ├── SignatureException.cs.meta │ │ │ │ │ ├── SignerUtilities.cs │ │ │ │ │ ├── SignerUtilities.cs.meta │ │ │ │ │ ├── WrapperUtilities.cs │ │ │ │ │ ├── WrapperUtilities.cs.meta │ │ │ │ │ ├── cert.meta │ │ │ │ │ └── cert │ │ │ │ │ │ ├── CertificateEncodingException.cs │ │ │ │ │ │ ├── CertificateEncodingException.cs.meta │ │ │ │ │ │ ├── CertificateException.cs │ │ │ │ │ │ ├── CertificateException.cs.meta │ │ │ │ │ │ ├── CertificateExpiredException.cs │ │ │ │ │ │ ├── CertificateExpiredException.cs.meta │ │ │ │ │ │ ├── CertificateNotYetValidException.cs │ │ │ │ │ │ ├── CertificateNotYetValidException.cs.meta │ │ │ │ │ │ ├── CertificateParsingException.cs │ │ │ │ │ │ ├── CertificateParsingException.cs.meta │ │ │ │ │ │ ├── CrlException.cs │ │ │ │ │ │ └── CrlException.cs.meta │ │ │ │ ├── tls.meta │ │ │ │ ├── tls │ │ │ │ │ ├── AbstractTlsClient.cs │ │ │ │ │ ├── AbstractTlsClient.cs.meta │ │ │ │ │ ├── AbstractTlsContext.cs │ │ │ │ │ ├── AbstractTlsContext.cs.meta │ │ │ │ │ ├── AbstractTlsKeyExchange.cs │ │ │ │ │ ├── AbstractTlsKeyExchange.cs.meta │ │ │ │ │ ├── AbstractTlsKeyExchangeFactory.cs │ │ │ │ │ ├── AbstractTlsKeyExchangeFactory.cs.meta │ │ │ │ │ ├── AbstractTlsPeer.cs │ │ │ │ │ ├── AbstractTlsPeer.cs.meta │ │ │ │ │ ├── AbstractTlsServer.cs │ │ │ │ │ ├── AbstractTlsServer.cs.meta │ │ │ │ │ ├── AlertDescription.cs │ │ │ │ │ ├── AlertDescription.cs.meta │ │ │ │ │ ├── AlertLevel.cs │ │ │ │ │ ├── AlertLevel.cs.meta │ │ │ │ │ ├── BasicTlsPskExternal.cs │ │ │ │ │ ├── BasicTlsPskExternal.cs.meta │ │ │ │ │ ├── BasicTlsPskIdentity.cs │ │ │ │ │ ├── BasicTlsPskIdentity.cs.meta │ │ │ │ │ ├── BasicTlsSrpIdentity.cs │ │ │ │ │ ├── BasicTlsSrpIdentity.cs.meta │ │ │ │ │ ├── ByteQueue.cs │ │ │ │ │ ├── ByteQueue.cs.meta │ │ │ │ │ ├── ByteQueueInputStream.cs │ │ │ │ │ ├── ByteQueueInputStream.cs.meta │ │ │ │ │ ├── ByteQueueOutputStream.cs │ │ │ │ │ ├── ByteQueueOutputStream.cs.meta │ │ │ │ │ ├── CachedInformationType.cs │ │ │ │ │ ├── CachedInformationType.cs.meta │ │ │ │ │ ├── CertChainType.cs │ │ │ │ │ ├── CertChainType.cs.meta │ │ │ │ │ ├── Certificate.cs │ │ │ │ │ ├── Certificate.cs.meta │ │ │ │ │ ├── CertificateCompressionAlgorithm.cs │ │ │ │ │ ├── CertificateCompressionAlgorithm.cs.meta │ │ │ │ │ ├── CertificateEntry.cs │ │ │ │ │ ├── CertificateEntry.cs.meta │ │ │ │ │ ├── CertificateRequest.cs │ │ │ │ │ ├── CertificateRequest.cs.meta │ │ │ │ │ ├── CertificateStatus.cs │ │ │ │ │ ├── CertificateStatus.cs.meta │ │ │ │ │ ├── CertificateStatusRequest.cs │ │ │ │ │ ├── CertificateStatusRequest.cs.meta │ │ │ │ │ ├── CertificateStatusRequestItemV2.cs │ │ │ │ │ ├── CertificateStatusRequestItemV2.cs.meta │ │ │ │ │ ├── CertificateStatusType.cs │ │ │ │ │ ├── CertificateStatusType.cs.meta │ │ │ │ │ ├── CertificateType.cs │ │ │ │ │ ├── CertificateType.cs.meta │ │ │ │ │ ├── CertificateUrl.cs │ │ │ │ │ ├── CertificateUrl.cs.meta │ │ │ │ │ ├── CertificateVerify.cs │ │ │ │ │ ├── CertificateVerify.cs.meta │ │ │ │ │ ├── ChangeCipherSpec.cs │ │ │ │ │ ├── ChangeCipherSpec.cs.meta │ │ │ │ │ ├── ChannelBinding.cs │ │ │ │ │ ├── ChannelBinding.cs.meta │ │ │ │ │ ├── CipherSuite.cs │ │ │ │ │ ├── CipherSuite.cs.meta │ │ │ │ │ ├── CipherType.cs │ │ │ │ │ ├── CipherType.cs.meta │ │ │ │ │ ├── ClientAuthenticationType.cs │ │ │ │ │ ├── ClientAuthenticationType.cs.meta │ │ │ │ │ ├── ClientCertificateType.cs │ │ │ │ │ ├── ClientCertificateType.cs.meta │ │ │ │ │ ├── ClientHello.cs │ │ │ │ │ ├── ClientHello.cs.meta │ │ │ │ │ ├── CombinedHash.cs │ │ │ │ │ ├── CombinedHash.cs.meta │ │ │ │ │ ├── CompressionMethod.cs │ │ │ │ │ ├── CompressionMethod.cs.meta │ │ │ │ │ ├── ConnectionEnd.cs │ │ │ │ │ ├── ConnectionEnd.cs.meta │ │ │ │ │ ├── ContentType.cs │ │ │ │ │ ├── ContentType.cs.meta │ │ │ │ │ ├── DatagramReceiver.cs │ │ │ │ │ ├── DatagramReceiver.cs.meta │ │ │ │ │ ├── DatagramSender.cs │ │ │ │ │ ├── DatagramSender.cs.meta │ │ │ │ │ ├── DatagramTransport.cs │ │ │ │ │ ├── DatagramTransport.cs.meta │ │ │ │ │ ├── DefaultTlsClient.cs │ │ │ │ │ ├── DefaultTlsClient.cs.meta │ │ │ │ │ ├── DefaultTlsCredentialedSigner.cs │ │ │ │ │ ├── DefaultTlsCredentialedSigner.cs.meta │ │ │ │ │ ├── DefaultTlsDHGroupVerifier.cs │ │ │ │ │ ├── DefaultTlsDHGroupVerifier.cs.meta │ │ │ │ │ ├── DefaultTlsHeartbeat.cs │ │ │ │ │ ├── DefaultTlsHeartbeat.cs.meta │ │ │ │ │ ├── DefaultTlsKeyExchangeFactory.cs │ │ │ │ │ ├── DefaultTlsKeyExchangeFactory.cs.meta │ │ │ │ │ ├── DefaultTlsServer.cs │ │ │ │ │ ├── DefaultTlsServer.cs.meta │ │ │ │ │ ├── DefaultTlsSrpConfigVerifier.cs │ │ │ │ │ ├── DefaultTlsSrpConfigVerifier.cs.meta │ │ │ │ │ ├── DeferredHash.cs │ │ │ │ │ ├── DeferredHash.cs.meta │ │ │ │ │ ├── DigestInputBuffer.cs │ │ │ │ │ ├── DigestInputBuffer.cs.meta │ │ │ │ │ ├── DigitallySigned.cs │ │ │ │ │ ├── DigitallySigned.cs.meta │ │ │ │ │ ├── DtlsClientProtocol.cs │ │ │ │ │ ├── DtlsClientProtocol.cs.meta │ │ │ │ │ ├── DtlsEpoch.cs │ │ │ │ │ ├── DtlsEpoch.cs.meta │ │ │ │ │ ├── DtlsHandshakeRetransmit.cs │ │ │ │ │ ├── DtlsHandshakeRetransmit.cs.meta │ │ │ │ │ ├── DtlsProtocol.cs │ │ │ │ │ ├── DtlsProtocol.cs.meta │ │ │ │ │ ├── DtlsReassembler.cs │ │ │ │ │ ├── DtlsReassembler.cs.meta │ │ │ │ │ ├── DtlsRecordLayer.cs │ │ │ │ │ ├── DtlsRecordLayer.cs.meta │ │ │ │ │ ├── DtlsReliableHandshake.cs │ │ │ │ │ ├── DtlsReliableHandshake.cs.meta │ │ │ │ │ ├── DtlsReplayWindow.cs │ │ │ │ │ ├── DtlsReplayWindow.cs.meta │ │ │ │ │ ├── DtlsRequest.cs │ │ │ │ │ ├── DtlsRequest.cs.meta │ │ │ │ │ ├── DtlsServerProtocol.cs │ │ │ │ │ ├── DtlsServerProtocol.cs.meta │ │ │ │ │ ├── DtlsTransport.cs │ │ │ │ │ ├── DtlsTransport.cs.meta │ │ │ │ │ ├── DtlsVerifier.cs │ │ │ │ │ ├── DtlsVerifier.cs.meta │ │ │ │ │ ├── ECCurveType.cs │ │ │ │ │ ├── ECCurveType.cs.meta │ │ │ │ │ ├── ECPointFormat.cs │ │ │ │ │ ├── ECPointFormat.cs.meta │ │ │ │ │ ├── EncryptionAlgorithm.cs │ │ │ │ │ ├── EncryptionAlgorithm.cs.meta │ │ │ │ │ ├── ExporterLabel.cs │ │ │ │ │ ├── ExporterLabel.cs.meta │ │ │ │ │ ├── ExtensionType.cs │ │ │ │ │ ├── ExtensionType.cs.meta │ │ │ │ │ ├── HandshakeMessageInput.cs │ │ │ │ │ ├── HandshakeMessageInput.cs.meta │ │ │ │ │ ├── HandshakeMessageOutput.cs │ │ │ │ │ ├── HandshakeMessageOutput.cs.meta │ │ │ │ │ ├── HandshakeType.cs │ │ │ │ │ ├── HandshakeType.cs.meta │ │ │ │ │ ├── HashAlgorithm.cs │ │ │ │ │ ├── HashAlgorithm.cs.meta │ │ │ │ │ ├── HeartbeatExtension.cs │ │ │ │ │ ├── HeartbeatExtension.cs.meta │ │ │ │ │ ├── HeartbeatMessage.cs │ │ │ │ │ ├── HeartbeatMessage.cs.meta │ │ │ │ │ ├── HeartbeatMessageType.cs │ │ │ │ │ ├── HeartbeatMessageType.cs.meta │ │ │ │ │ ├── HeartbeatMode.cs │ │ │ │ │ ├── HeartbeatMode.cs.meta │ │ │ │ │ ├── IdentifierType.cs │ │ │ │ │ ├── IdentifierType.cs.meta │ │ │ │ │ ├── KeyExchangeAlgorithm.cs │ │ │ │ │ ├── KeyExchangeAlgorithm.cs.meta │ │ │ │ │ ├── KeyShareEntry.cs │ │ │ │ │ ├── KeyShareEntry.cs.meta │ │ │ │ │ ├── KeyUpdateRequest.cs │ │ │ │ │ ├── KeyUpdateRequest.cs.meta │ │ │ │ │ ├── MacAlgorithm.cs │ │ │ │ │ ├── MacAlgorithm.cs.meta │ │ │ │ │ ├── MaxFragmentLength.cs │ │ │ │ │ ├── MaxFragmentLength.cs.meta │ │ │ │ │ ├── NameType.cs │ │ │ │ │ ├── NameType.cs.meta │ │ │ │ │ ├── NamedGroup.cs │ │ │ │ │ ├── NamedGroup.cs.meta │ │ │ │ │ ├── NamedGroupRole.cs │ │ │ │ │ ├── NamedGroupRole.cs.meta │ │ │ │ │ ├── NewSessionTicket.cs │ │ │ │ │ ├── NewSessionTicket.cs.meta │ │ │ │ │ ├── OcspStatusRequest.cs │ │ │ │ │ ├── OcspStatusRequest.cs.meta │ │ │ │ │ ├── OfferedPsks.cs │ │ │ │ │ ├── OfferedPsks.cs.meta │ │ │ │ │ ├── PrfAlgorithm.cs │ │ │ │ │ ├── PrfAlgorithm.cs.meta │ │ │ │ │ ├── ProtocolName.cs │ │ │ │ │ ├── ProtocolName.cs.meta │ │ │ │ │ ├── ProtocolVersion.cs │ │ │ │ │ ├── ProtocolVersion.cs.meta │ │ │ │ │ ├── PskIdentity.cs │ │ │ │ │ ├── PskIdentity.cs.meta │ │ │ │ │ ├── PskKeyExchangeMode.cs │ │ │ │ │ ├── PskKeyExchangeMode.cs.meta │ │ │ │ │ ├── PskTlsClient.cs │ │ │ │ │ ├── PskTlsClient.cs.meta │ │ │ │ │ ├── PskTlsServer.cs │ │ │ │ │ ├── PskTlsServer.cs.meta │ │ │ │ │ ├── RecordFormat.cs │ │ │ │ │ ├── RecordFormat.cs.meta │ │ │ │ │ ├── RecordPreview.cs │ │ │ │ │ ├── RecordPreview.cs.meta │ │ │ │ │ ├── RecordStream.cs │ │ │ │ │ ├── RecordStream.cs.meta │ │ │ │ │ ├── SecurityParameters.cs │ │ │ │ │ ├── SecurityParameters.cs.meta │ │ │ │ │ ├── ServerHello.cs │ │ │ │ │ ├── ServerHello.cs.meta │ │ │ │ │ ├── ServerName.cs │ │ │ │ │ ├── ServerName.cs.meta │ │ │ │ │ ├── ServerNameList.cs │ │ │ │ │ ├── ServerNameList.cs.meta │ │ │ │ │ ├── ServerOnlyTlsAuthentication.cs │ │ │ │ │ ├── ServerOnlyTlsAuthentication.cs.meta │ │ │ │ │ ├── ServerSrpParams.cs │ │ │ │ │ ├── ServerSrpParams.cs.meta │ │ │ │ │ ├── SessionParameters.cs │ │ │ │ │ ├── SessionParameters.cs.meta │ │ │ │ │ ├── SignatureAlgorithm.cs │ │ │ │ │ ├── SignatureAlgorithm.cs.meta │ │ │ │ │ ├── SignatureAndHashAlgorithm.cs │ │ │ │ │ ├── SignatureAndHashAlgorithm.cs.meta │ │ │ │ │ ├── SignatureScheme.cs │ │ │ │ │ ├── SignatureScheme.cs.meta │ │ │ │ │ ├── SimulatedTlsSrpIdentityManager.cs │ │ │ │ │ ├── SimulatedTlsSrpIdentityManager.cs.meta │ │ │ │ │ ├── SrpTlsClient.cs │ │ │ │ │ ├── SrpTlsClient.cs.meta │ │ │ │ │ ├── SrpTlsServer.cs │ │ │ │ │ ├── SrpTlsServer.cs.meta │ │ │ │ │ ├── SrtpProtectionProfile.cs │ │ │ │ │ ├── SrtpProtectionProfile.cs.meta │ │ │ │ │ ├── Ssl3Utilities.cs │ │ │ │ │ ├── Ssl3Utilities.cs.meta │ │ │ │ │ ├── SupplementalDataEntry.cs │ │ │ │ │ ├── SupplementalDataEntry.cs.meta │ │ │ │ │ ├── SupplementalDataType.cs │ │ │ │ │ ├── SupplementalDataType.cs.meta │ │ │ │ │ ├── Timeout.cs │ │ │ │ │ ├── Timeout.cs.meta │ │ │ │ │ ├── TlsAuthentication.cs │ │ │ │ │ ├── TlsAuthentication.cs.meta │ │ │ │ │ ├── TlsClient.cs │ │ │ │ │ ├── TlsClient.cs.meta │ │ │ │ │ ├── TlsClientContext.cs │ │ │ │ │ ├── TlsClientContext.cs.meta │ │ │ │ │ ├── TlsClientContextImpl.cs │ │ │ │ │ ├── TlsClientContextImpl.cs.meta │ │ │ │ │ ├── TlsClientProtocol.cs │ │ │ │ │ ├── TlsClientProtocol.cs.meta │ │ │ │ │ ├── TlsCloseable.cs │ │ │ │ │ ├── TlsCloseable.cs.meta │ │ │ │ │ ├── TlsContext.cs │ │ │ │ │ ├── TlsContext.cs.meta │ │ │ │ │ ├── TlsCredentialedAgreement.cs │ │ │ │ │ ├── TlsCredentialedAgreement.cs.meta │ │ │ │ │ ├── TlsCredentialedDecryptor.cs │ │ │ │ │ ├── TlsCredentialedDecryptor.cs.meta │ │ │ │ │ ├── TlsCredentialedSigner.cs │ │ │ │ │ ├── TlsCredentialedSigner.cs.meta │ │ │ │ │ ├── TlsCredentials.cs │ │ │ │ │ ├── TlsCredentials.cs.meta │ │ │ │ │ ├── TlsDHGroupVerifier.cs │ │ │ │ │ ├── TlsDHGroupVerifier.cs.meta │ │ │ │ │ ├── TlsDHKeyExchange.cs │ │ │ │ │ ├── TlsDHKeyExchange.cs.meta │ │ │ │ │ ├── TlsDHUtilities.cs │ │ │ │ │ ├── TlsDHUtilities.cs.meta │ │ │ │ │ ├── TlsDHanonKeyExchange.cs │ │ │ │ │ ├── TlsDHanonKeyExchange.cs.meta │ │ │ │ │ ├── TlsDheKeyExchange.cs │ │ │ │ │ ├── TlsDheKeyExchange.cs.meta │ │ │ │ │ ├── TlsECDHKeyExchange.cs │ │ │ │ │ ├── TlsECDHKeyExchange.cs.meta │ │ │ │ │ ├── TlsECDHanonKeyExchange.cs │ │ │ │ │ ├── TlsECDHanonKeyExchange.cs.meta │ │ │ │ │ ├── TlsECDheKeyExchange.cs │ │ │ │ │ ├── TlsECDheKeyExchange.cs.meta │ │ │ │ │ ├── TlsEccUtilities.cs │ │ │ │ │ ├── TlsEccUtilities.cs.meta │ │ │ │ │ ├── TlsException.cs │ │ │ │ │ ├── TlsException.cs.meta │ │ │ │ │ ├── TlsExtensionsUtilities.cs │ │ │ │ │ ├── TlsExtensionsUtilities.cs.meta │ │ │ │ │ ├── TlsFatalAlert.cs │ │ │ │ │ ├── TlsFatalAlert.cs.meta │ │ │ │ │ ├── TlsFatalAlertReceived.cs │ │ │ │ │ ├── TlsFatalAlertReceived.cs.meta │ │ │ │ │ ├── TlsHandshakeHash.cs │ │ │ │ │ ├── TlsHandshakeHash.cs.meta │ │ │ │ │ ├── TlsHeartbeat.cs │ │ │ │ │ ├── TlsHeartbeat.cs.meta │ │ │ │ │ ├── TlsKeyExchange.cs │ │ │ │ │ ├── TlsKeyExchange.cs.meta │ │ │ │ │ ├── TlsKeyExchangeFactory.cs │ │ │ │ │ ├── TlsKeyExchangeFactory.cs.meta │ │ │ │ │ ├── TlsNoCloseNotifyException.cs │ │ │ │ │ ├── TlsNoCloseNotifyException.cs.meta │ │ │ │ │ ├── TlsObjectIdentifiers.cs │ │ │ │ │ ├── TlsObjectIdentifiers.cs.meta │ │ │ │ │ ├── TlsPeer.cs │ │ │ │ │ ├── TlsPeer.cs.meta │ │ │ │ │ ├── TlsProtocol.cs │ │ │ │ │ ├── TlsProtocol.cs.meta │ │ │ │ │ ├── TlsPsk.cs │ │ │ │ │ ├── TlsPsk.cs.meta │ │ │ │ │ ├── TlsPskExternal.cs │ │ │ │ │ ├── TlsPskExternal.cs.meta │ │ │ │ │ ├── TlsPskIdentity.cs │ │ │ │ │ ├── TlsPskIdentity.cs.meta │ │ │ │ │ ├── TlsPskIdentityManager.cs │ │ │ │ │ ├── TlsPskIdentityManager.cs.meta │ │ │ │ │ ├── TlsPskKeyExchange.cs │ │ │ │ │ ├── TlsPskKeyExchange.cs.meta │ │ │ │ │ ├── TlsRsaKeyExchange.cs │ │ │ │ │ ├── TlsRsaKeyExchange.cs.meta │ │ │ │ │ ├── TlsServer.cs │ │ │ │ │ ├── TlsServer.cs.meta │ │ │ │ │ ├── TlsServerCertificate.cs │ │ │ │ │ ├── TlsServerCertificate.cs.meta │ │ │ │ │ ├── TlsServerCertificateImpl.cs │ │ │ │ │ ├── TlsServerCertificateImpl.cs.meta │ │ │ │ │ ├── TlsServerContext.cs │ │ │ │ │ ├── TlsServerContext.cs.meta │ │ │ │ │ ├── TlsServerContextImpl.cs │ │ │ │ │ ├── TlsServerContextImpl.cs.meta │ │ │ │ │ ├── TlsServerProtocol.cs │ │ │ │ │ ├── TlsServerProtocol.cs.meta │ │ │ │ │ ├── TlsSession.cs │ │ │ │ │ ├── TlsSession.cs.meta │ │ │ │ │ ├── TlsSessionImpl.cs │ │ │ │ │ ├── TlsSessionImpl.cs.meta │ │ │ │ │ ├── TlsSrpConfigVerifier.cs │ │ │ │ │ ├── TlsSrpConfigVerifier.cs.meta │ │ │ │ │ ├── TlsSrpIdentity.cs │ │ │ │ │ ├── TlsSrpIdentity.cs.meta │ │ │ │ │ ├── TlsSrpIdentityManager.cs │ │ │ │ │ ├── TlsSrpIdentityManager.cs.meta │ │ │ │ │ ├── TlsSrpKeyExchange.cs │ │ │ │ │ ├── TlsSrpKeyExchange.cs.meta │ │ │ │ │ ├── TlsSrpLoginParameters.cs │ │ │ │ │ ├── TlsSrpLoginParameters.cs.meta │ │ │ │ │ ├── TlsSrpUtilities.cs │ │ │ │ │ ├── TlsSrpUtilities.cs.meta │ │ │ │ │ ├── TlsSrtpUtilities.cs │ │ │ │ │ ├── TlsSrtpUtilities.cs.meta │ │ │ │ │ ├── TlsStream.cs │ │ │ │ │ ├── TlsStream.cs.meta │ │ │ │ │ ├── TlsTimeoutException.cs │ │ │ │ │ ├── TlsTimeoutException.cs.meta │ │ │ │ │ ├── TlsUtilities.cs │ │ │ │ │ ├── TlsUtilities.cs.meta │ │ │ │ │ ├── TrustedAuthority.cs │ │ │ │ │ ├── TrustedAuthority.cs.meta │ │ │ │ │ ├── UrlAndHash.cs │ │ │ │ │ ├── UrlAndHash.cs.meta │ │ │ │ │ ├── UseSrtpData.cs │ │ │ │ │ ├── UseSrtpData.cs.meta │ │ │ │ │ ├── UserMappingType.cs │ │ │ │ │ ├── UserMappingType.cs.meta │ │ │ │ │ ├── crypto.meta │ │ │ │ │ └── crypto │ │ │ │ │ │ ├── CryptoHashAlgorithm.cs │ │ │ │ │ │ ├── CryptoHashAlgorithm.cs.meta │ │ │ │ │ │ ├── CryptoSignatureAlgorithm.cs │ │ │ │ │ │ ├── CryptoSignatureAlgorithm.cs.meta │ │ │ │ │ │ ├── DHGroup.cs │ │ │ │ │ │ ├── DHGroup.cs.meta │ │ │ │ │ │ ├── DHStandardGroups.cs │ │ │ │ │ │ ├── DHStandardGroups.cs.meta │ │ │ │ │ │ ├── Srp6Group.cs │ │ │ │ │ │ ├── Srp6Group.cs.meta │ │ │ │ │ │ ├── Srp6StandardGroups.cs │ │ │ │ │ │ ├── Srp6StandardGroups.cs.meta │ │ │ │ │ │ ├── Tls13Verifier.cs │ │ │ │ │ │ ├── Tls13Verifier.cs.meta │ │ │ │ │ │ ├── TlsAgreement.cs │ │ │ │ │ │ ├── TlsAgreement.cs.meta │ │ │ │ │ │ ├── TlsCertificate.cs │ │ │ │ │ │ ├── TlsCertificate.cs.meta │ │ │ │ │ │ ├── TlsCertificateRole.cs │ │ │ │ │ │ ├── TlsCertificateRole.cs.meta │ │ │ │ │ │ ├── TlsCipher.cs │ │ │ │ │ │ ├── TlsCipher.cs.meta │ │ │ │ │ │ ├── TlsCrypto.cs │ │ │ │ │ │ ├── TlsCrypto.cs.meta │ │ │ │ │ │ ├── TlsCryptoException.cs │ │ │ │ │ │ ├── TlsCryptoException.cs.meta │ │ │ │ │ │ ├── TlsCryptoParameters.cs │ │ │ │ │ │ ├── TlsCryptoParameters.cs.meta │ │ │ │ │ │ ├── TlsCryptoUtilities.cs │ │ │ │ │ │ ├── TlsCryptoUtilities.cs.meta │ │ │ │ │ │ ├── TlsDHConfig.cs │ │ │ │ │ │ ├── TlsDHConfig.cs.meta │ │ │ │ │ │ ├── TlsDHDomain.cs │ │ │ │ │ │ ├── TlsDHDomain.cs.meta │ │ │ │ │ │ ├── TlsDecodeResult.cs │ │ │ │ │ │ ├── TlsDecodeResult.cs.meta │ │ │ │ │ │ ├── TlsECConfig.cs │ │ │ │ │ │ ├── TlsECConfig.cs.meta │ │ │ │ │ │ ├── TlsECDomain.cs │ │ │ │ │ │ ├── TlsECDomain.cs.meta │ │ │ │ │ │ ├── TlsEncodeResult.cs │ │ │ │ │ │ ├── TlsEncodeResult.cs.meta │ │ │ │ │ │ ├── TlsEncryptor.cs │ │ │ │ │ │ ├── TlsEncryptor.cs.meta │ │ │ │ │ │ ├── TlsHash.cs │ │ │ │ │ │ ├── TlsHash.cs.meta │ │ │ │ │ │ ├── TlsHashSink.cs │ │ │ │ │ │ ├── TlsHashSink.cs.meta │ │ │ │ │ │ ├── TlsHmac.cs │ │ │ │ │ │ ├── TlsHmac.cs.meta │ │ │ │ │ │ ├── TlsMac.cs │ │ │ │ │ │ ├── TlsMac.cs.meta │ │ │ │ │ │ ├── TlsMacSink.cs │ │ │ │ │ │ ├── TlsMacSink.cs.meta │ │ │ │ │ │ ├── TlsNonceGenerator.cs │ │ │ │ │ │ ├── TlsNonceGenerator.cs.meta │ │ │ │ │ │ ├── TlsNullNullCipher.cs │ │ │ │ │ │ ├── TlsNullNullCipher.cs.meta │ │ │ │ │ │ ├── TlsSecret.cs │ │ │ │ │ │ ├── TlsSecret.cs.meta │ │ │ │ │ │ ├── TlsSigner.cs │ │ │ │ │ │ ├── TlsSigner.cs.meta │ │ │ │ │ │ ├── TlsSrp6Client.cs │ │ │ │ │ │ ├── TlsSrp6Client.cs.meta │ │ │ │ │ │ ├── TlsSrp6Server.cs │ │ │ │ │ │ ├── TlsSrp6Server.cs.meta │ │ │ │ │ │ ├── TlsSrp6VerifierGenerator.cs │ │ │ │ │ │ ├── TlsSrp6VerifierGenerator.cs.meta │ │ │ │ │ │ ├── TlsSrpConfig.cs │ │ │ │ │ │ ├── TlsSrpConfig.cs.meta │ │ │ │ │ │ ├── TlsStreamSigner.cs │ │ │ │ │ │ ├── TlsStreamSigner.cs.meta │ │ │ │ │ │ ├── TlsStreamVerifier.cs │ │ │ │ │ │ ├── TlsStreamVerifier.cs.meta │ │ │ │ │ │ ├── TlsVerifier.cs │ │ │ │ │ │ ├── TlsVerifier.cs.meta │ │ │ │ │ │ ├── impl.meta │ │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AbstractTlsCrypto.cs │ │ │ │ │ │ ├── AbstractTlsCrypto.cs.meta │ │ │ │ │ │ ├── AbstractTlsSecret.cs │ │ │ │ │ │ ├── AbstractTlsSecret.cs.meta │ │ │ │ │ │ ├── LegacyTls13Verifier.cs │ │ │ │ │ │ ├── LegacyTls13Verifier.cs.meta │ │ │ │ │ │ ├── RsaUtilities.cs │ │ │ │ │ │ ├── RsaUtilities.cs.meta │ │ │ │ │ │ ├── TlsAeadCipher.cs │ │ │ │ │ │ ├── TlsAeadCipher.cs.meta │ │ │ │ │ │ ├── TlsAeadCipherImpl.cs │ │ │ │ │ │ ├── TlsAeadCipherImpl.cs.meta │ │ │ │ │ │ ├── TlsBlockCipher.cs │ │ │ │ │ │ ├── TlsBlockCipher.cs.meta │ │ │ │ │ │ ├── TlsBlockCipherImpl.cs │ │ │ │ │ │ ├── TlsBlockCipherImpl.cs.meta │ │ │ │ │ │ ├── TlsImplUtilities.cs │ │ │ │ │ │ ├── TlsImplUtilities.cs.meta │ │ │ │ │ │ ├── TlsNullCipher.cs │ │ │ │ │ │ ├── TlsNullCipher.cs.meta │ │ │ │ │ │ ├── TlsSuiteHmac.cs │ │ │ │ │ │ ├── TlsSuiteHmac.cs.meta │ │ │ │ │ │ ├── TlsSuiteMac.cs │ │ │ │ │ │ ├── TlsSuiteMac.cs.meta │ │ │ │ │ │ ├── bc.meta │ │ │ │ │ │ └── bc │ │ │ │ │ │ ├── BcChaCha20Poly1305.cs │ │ │ │ │ │ ├── BcChaCha20Poly1305.cs.meta │ │ │ │ │ │ ├── BcDefaultTlsCredentialedAgreement.cs │ │ │ │ │ │ ├── BcDefaultTlsCredentialedAgreement.cs.meta │ │ │ │ │ │ ├── BcDefaultTlsCredentialedDecryptor.cs │ │ │ │ │ │ ├── BcDefaultTlsCredentialedDecryptor.cs.meta │ │ │ │ │ │ ├── BcDefaultTlsCredentialedSigner.cs │ │ │ │ │ │ ├── BcDefaultTlsCredentialedSigner.cs.meta │ │ │ │ │ │ ├── BcSsl3Hmac.cs │ │ │ │ │ │ ├── BcSsl3Hmac.cs.meta │ │ │ │ │ │ ├── BcTls13Verifier.cs │ │ │ │ │ │ ├── BcTls13Verifier.cs.meta │ │ │ │ │ │ ├── BcTlsAeadCipherImpl.cs │ │ │ │ │ │ ├── BcTlsAeadCipherImpl.cs.meta │ │ │ │ │ │ ├── BcTlsBlockCipherImpl.cs │ │ │ │ │ │ ├── BcTlsBlockCipherImpl.cs.meta │ │ │ │ │ │ ├── BcTlsCertificate.cs │ │ │ │ │ │ ├── BcTlsCertificate.cs.meta │ │ │ │ │ │ ├── BcTlsCrypto.cs │ │ │ │ │ │ ├── BcTlsCrypto.cs.meta │ │ │ │ │ │ ├── BcTlsDH.cs │ │ │ │ │ │ ├── BcTlsDH.cs.meta │ │ │ │ │ │ ├── BcTlsDHDomain.cs │ │ │ │ │ │ ├── BcTlsDHDomain.cs.meta │ │ │ │ │ │ ├── BcTlsDsaSigner.cs │ │ │ │ │ │ ├── BcTlsDsaSigner.cs.meta │ │ │ │ │ │ ├── BcTlsDsaVerifier.cs │ │ │ │ │ │ ├── BcTlsDsaVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsDssSigner.cs │ │ │ │ │ │ ├── BcTlsDssSigner.cs.meta │ │ │ │ │ │ ├── BcTlsDssVerifier.cs │ │ │ │ │ │ ├── BcTlsDssVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsECDH.cs │ │ │ │ │ │ ├── BcTlsECDH.cs.meta │ │ │ │ │ │ ├── BcTlsECDomain.cs │ │ │ │ │ │ ├── BcTlsECDomain.cs.meta │ │ │ │ │ │ ├── BcTlsECDsa13Signer.cs │ │ │ │ │ │ ├── BcTlsECDsa13Signer.cs.meta │ │ │ │ │ │ ├── BcTlsECDsa13Verifier.cs │ │ │ │ │ │ ├── BcTlsECDsa13Verifier.cs.meta │ │ │ │ │ │ ├── BcTlsECDsaSigner.cs │ │ │ │ │ │ ├── BcTlsECDsaSigner.cs.meta │ │ │ │ │ │ ├── BcTlsECDsaVerifier.cs │ │ │ │ │ │ ├── BcTlsECDsaVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsEd25519Signer.cs │ │ │ │ │ │ ├── BcTlsEd25519Signer.cs.meta │ │ │ │ │ │ ├── BcTlsEd25519Verifier.cs │ │ │ │ │ │ ├── BcTlsEd25519Verifier.cs.meta │ │ │ │ │ │ ├── BcTlsEd448Signer.cs │ │ │ │ │ │ ├── BcTlsEd448Signer.cs.meta │ │ │ │ │ │ ├── BcTlsEd448Verifier.cs │ │ │ │ │ │ ├── BcTlsEd448Verifier.cs.meta │ │ │ │ │ │ ├── BcTlsHash.cs │ │ │ │ │ │ ├── BcTlsHash.cs.meta │ │ │ │ │ │ ├── BcTlsHmac.cs │ │ │ │ │ │ ├── BcTlsHmac.cs.meta │ │ │ │ │ │ ├── BcTlsNonceGenerator.cs │ │ │ │ │ │ ├── BcTlsNonceGenerator.cs.meta │ │ │ │ │ │ ├── BcTlsRawKeyCertificate.cs │ │ │ │ │ │ ├── BcTlsRawKeyCertificate.cs.meta │ │ │ │ │ │ ├── BcTlsRsaEncryptor.cs │ │ │ │ │ │ ├── BcTlsRsaEncryptor.cs.meta │ │ │ │ │ │ ├── BcTlsRsaPssSigner.cs │ │ │ │ │ │ ├── BcTlsRsaPssSigner.cs.meta │ │ │ │ │ │ ├── BcTlsRsaPssVerifier.cs │ │ │ │ │ │ ├── BcTlsRsaPssVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsRsaSigner.cs │ │ │ │ │ │ ├── BcTlsRsaSigner.cs.meta │ │ │ │ │ │ ├── BcTlsRsaVerifier.cs │ │ │ │ │ │ ├── BcTlsRsaVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsSecret.cs │ │ │ │ │ │ ├── BcTlsSecret.cs.meta │ │ │ │ │ │ ├── BcTlsSigner.cs │ │ │ │ │ │ ├── BcTlsSigner.cs.meta │ │ │ │ │ │ ├── BcTlsSrp6Client.cs │ │ │ │ │ │ ├── BcTlsSrp6Client.cs.meta │ │ │ │ │ │ ├── BcTlsSrp6Server.cs │ │ │ │ │ │ ├── BcTlsSrp6Server.cs.meta │ │ │ │ │ │ ├── BcTlsSrp6VerifierGenerator.cs │ │ │ │ │ │ ├── BcTlsSrp6VerifierGenerator.cs.meta │ │ │ │ │ │ ├── BcTlsStreamSigner.cs │ │ │ │ │ │ ├── BcTlsStreamSigner.cs.meta │ │ │ │ │ │ ├── BcTlsStreamVerifier.cs │ │ │ │ │ │ ├── BcTlsStreamVerifier.cs.meta │ │ │ │ │ │ ├── BcTlsVerifier.cs │ │ │ │ │ │ ├── BcTlsVerifier.cs.meta │ │ │ │ │ │ ├── BcVerifyingStreamSigner.cs │ │ │ │ │ │ ├── BcVerifyingStreamSigner.cs.meta │ │ │ │ │ │ ├── BcX25519.cs │ │ │ │ │ │ ├── BcX25519.cs.meta │ │ │ │ │ │ ├── BcX25519Domain.cs │ │ │ │ │ │ ├── BcX25519Domain.cs.meta │ │ │ │ │ │ ├── BcX448.cs │ │ │ │ │ │ ├── BcX448.cs.meta │ │ │ │ │ │ ├── BcX448Domain.cs │ │ │ │ │ │ └── BcX448Domain.cs.meta │ │ │ │ ├── tsp.meta │ │ │ │ ├── tsp │ │ │ │ │ ├── GenTimeAccuracy.cs │ │ │ │ │ ├── GenTimeAccuracy.cs.meta │ │ │ │ │ ├── TSPAlgorithms.cs │ │ │ │ │ ├── TSPAlgorithms.cs.meta │ │ │ │ │ ├── TSPException.cs │ │ │ │ │ ├── TSPException.cs.meta │ │ │ │ │ ├── TSPUtil.cs │ │ │ │ │ ├── TSPUtil.cs.meta │ │ │ │ │ ├── TSPValidationException.cs │ │ │ │ │ ├── TSPValidationException.cs.meta │ │ │ │ │ ├── TimeStampRequest.cs │ │ │ │ │ ├── TimeStampRequest.cs.meta │ │ │ │ │ ├── TimeStampRequestGenerator.cs │ │ │ │ │ ├── TimeStampRequestGenerator.cs.meta │ │ │ │ │ ├── TimeStampResponse.cs │ │ │ │ │ ├── TimeStampResponse.cs.meta │ │ │ │ │ ├── TimeStampResponseGenerator.cs │ │ │ │ │ ├── TimeStampResponseGenerator.cs.meta │ │ │ │ │ ├── TimeStampToken.cs │ │ │ │ │ ├── TimeStampToken.cs.meta │ │ │ │ │ ├── TimeStampTokenGenerator.cs │ │ │ │ │ ├── TimeStampTokenGenerator.cs.meta │ │ │ │ │ ├── TimeStampTokenInfo.cs │ │ │ │ │ └── TimeStampTokenInfo.cs.meta │ │ │ │ ├── util.meta │ │ │ │ ├── util │ │ │ │ │ ├── Arrays.cs │ │ │ │ │ ├── Arrays.cs.meta │ │ │ │ │ ├── BigIntegers.cs │ │ │ │ │ ├── BigIntegers.cs.meta │ │ │ │ │ ├── Bytes.cs │ │ │ │ │ ├── Bytes.cs.meta │ │ │ │ │ ├── Enums.cs │ │ │ │ │ ├── Enums.cs.meta │ │ │ │ │ ├── IEncodable.cs │ │ │ │ │ ├── IEncodable.cs.meta │ │ │ │ │ ├── IMemoable.cs │ │ │ │ │ ├── IMemoable.cs.meta │ │ │ │ │ ├── Integers.cs │ │ │ │ │ ├── Integers.cs.meta │ │ │ │ │ ├── Longs.cs │ │ │ │ │ ├── Longs.cs.meta │ │ │ │ │ ├── MemoableResetException.cs │ │ │ │ │ ├── MemoableResetException.cs.meta │ │ │ │ │ ├── Objects.cs │ │ │ │ │ ├── Objects.cs.meta │ │ │ │ │ ├── Platform.cs │ │ │ │ │ ├── Platform.cs.meta │ │ │ │ │ ├── Shorts.cs │ │ │ │ │ ├── Shorts.cs.meta │ │ │ │ │ ├── Spans.cs │ │ │ │ │ ├── Spans.cs.meta │ │ │ │ │ ├── Strings.cs │ │ │ │ │ ├── Strings.cs.meta │ │ │ │ │ ├── Times.cs │ │ │ │ │ ├── Times.cs.meta │ │ │ │ │ ├── TypeExtensions.cs │ │ │ │ │ ├── TypeExtensions.cs.meta │ │ │ │ │ ├── bzip2.meta │ │ │ │ │ ├── bzip2 │ │ │ │ │ │ ├── BZip2Constants.cs │ │ │ │ │ │ ├── BZip2Constants.cs.meta │ │ │ │ │ │ ├── CBZip2InputStream.cs │ │ │ │ │ │ ├── CBZip2InputStream.cs.meta │ │ │ │ │ │ ├── CBZip2OutputStream.cs │ │ │ │ │ │ ├── CBZip2OutputStream.cs.meta │ │ │ │ │ │ ├── CRC.cs │ │ │ │ │ │ └── CRC.cs.meta │ │ │ │ │ ├── collections.meta │ │ │ │ │ ├── collections │ │ │ │ │ │ ├── CollectionUtilities.cs │ │ │ │ │ │ ├── CollectionUtilities.cs.meta │ │ │ │ │ │ ├── EmptyEnumerable.cs │ │ │ │ │ │ ├── EmptyEnumerable.cs.meta │ │ │ │ │ │ ├── EnumerableProxy.cs │ │ │ │ │ │ ├── EnumerableProxy.cs.meta │ │ │ │ │ │ ├── HashSet.cs │ │ │ │ │ │ ├── HashSet.cs.meta │ │ │ │ │ │ ├── ISelector.cs │ │ │ │ │ │ ├── ISelector.cs.meta │ │ │ │ │ │ ├── ISet.cs │ │ │ │ │ │ ├── ISet.cs.meta │ │ │ │ │ │ ├── IStore.cs │ │ │ │ │ │ ├── IStore.cs.meta │ │ │ │ │ │ ├── LinkedDictionary.cs │ │ │ │ │ │ ├── LinkedDictionary.cs.meta │ │ │ │ │ │ ├── ReadOnlyCollection.cs │ │ │ │ │ │ ├── ReadOnlyCollection.cs.meta │ │ │ │ │ │ ├── ReadOnlyDictionary.cs │ │ │ │ │ │ ├── ReadOnlyDictionary.cs.meta │ │ │ │ │ │ ├── ReadOnlyList.cs │ │ │ │ │ │ ├── ReadOnlyList.cs.meta │ │ │ │ │ │ ├── ReadOnlySet.cs │ │ │ │ │ │ ├── ReadOnlySet.cs.meta │ │ │ │ │ │ ├── StoreImpl.cs │ │ │ │ │ │ ├── StoreImpl.cs.meta │ │ │ │ │ │ ├── UnmodifiableDictionary.cs │ │ │ │ │ │ ├── UnmodifiableDictionary.cs.meta │ │ │ │ │ │ ├── UnmodifiableDictionaryProxy.cs │ │ │ │ │ │ ├── UnmodifiableDictionaryProxy.cs.meta │ │ │ │ │ │ ├── UnmodifiableList.cs │ │ │ │ │ │ ├── UnmodifiableList.cs.meta │ │ │ │ │ │ ├── UnmodifiableListProxy.cs │ │ │ │ │ │ ├── UnmodifiableListProxy.cs.meta │ │ │ │ │ │ ├── UnmodifiableSet.cs │ │ │ │ │ │ ├── UnmodifiableSet.cs.meta │ │ │ │ │ │ ├── UnmodifiableSetProxy.cs │ │ │ │ │ │ └── UnmodifiableSetProxy.cs.meta │ │ │ │ │ ├── date.meta │ │ │ │ │ ├── date │ │ │ │ │ │ ├── DateTimeObject.cs │ │ │ │ │ │ ├── DateTimeObject.cs.meta │ │ │ │ │ │ ├── DateTimeUtilities.cs │ │ │ │ │ │ └── DateTimeUtilities.cs.meta │ │ │ │ │ ├── encoders.meta │ │ │ │ │ ├── encoders │ │ │ │ │ │ ├── Base64.cs │ │ │ │ │ │ ├── Base64.cs.meta │ │ │ │ │ │ ├── Base64Encoder.cs │ │ │ │ │ │ ├── Base64Encoder.cs.meta │ │ │ │ │ │ ├── BufferedDecoder.cs │ │ │ │ │ │ ├── BufferedDecoder.cs.meta │ │ │ │ │ │ ├── BufferedEncoder.cs │ │ │ │ │ │ ├── BufferedEncoder.cs.meta │ │ │ │ │ │ ├── Hex.cs │ │ │ │ │ │ ├── Hex.cs.meta │ │ │ │ │ │ ├── HexEncoder.cs │ │ │ │ │ │ ├── HexEncoder.cs.meta │ │ │ │ │ │ ├── HexTranslator.cs │ │ │ │ │ │ ├── HexTranslator.cs.meta │ │ │ │ │ │ ├── IEncoder.cs │ │ │ │ │ │ ├── IEncoder.cs.meta │ │ │ │ │ │ ├── Translator.cs │ │ │ │ │ │ ├── Translator.cs.meta │ │ │ │ │ │ ├── UrlBase64.cs │ │ │ │ │ │ ├── UrlBase64.cs.meta │ │ │ │ │ │ ├── UrlBase64Encoder.cs │ │ │ │ │ │ └── UrlBase64Encoder.cs.meta │ │ │ │ │ ├── io.meta │ │ │ │ │ ├── io │ │ │ │ │ │ ├── BaseInputStream.cs │ │ │ │ │ │ ├── BaseInputStream.cs.meta │ │ │ │ │ │ ├── BaseOutputStream.cs │ │ │ │ │ │ ├── BaseOutputStream.cs.meta │ │ │ │ │ │ ├── BinaryReaders.cs │ │ │ │ │ │ ├── BinaryReaders.cs.meta │ │ │ │ │ │ ├── BinaryWriters.cs │ │ │ │ │ │ ├── BinaryWriters.cs.meta │ │ │ │ │ │ ├── FilterStream.cs │ │ │ │ │ │ ├── FilterStream.cs.meta │ │ │ │ │ │ ├── LimitedInputStream.cs │ │ │ │ │ │ ├── LimitedInputStream.cs.meta │ │ │ │ │ │ ├── MemoryInputStream.cs │ │ │ │ │ │ ├── MemoryInputStream.cs.meta │ │ │ │ │ │ ├── MemoryOutputStream.cs │ │ │ │ │ │ ├── MemoryOutputStream.cs.meta │ │ │ │ │ │ ├── NullOutputStream.cs │ │ │ │ │ │ ├── NullOutputStream.cs.meta │ │ │ │ │ │ ├── PushbackStream.cs │ │ │ │ │ │ ├── PushbackStream.cs.meta │ │ │ │ │ │ ├── StreamOverflowException.cs │ │ │ │ │ │ ├── StreamOverflowException.cs.meta │ │ │ │ │ │ ├── Streams.cs │ │ │ │ │ │ ├── Streams.cs.meta │ │ │ │ │ │ ├── TeeInputStream.cs │ │ │ │ │ │ ├── TeeInputStream.cs.meta │ │ │ │ │ │ ├── TeeOutputStream.cs │ │ │ │ │ │ ├── TeeOutputStream.cs.meta │ │ │ │ │ │ ├── compression.meta │ │ │ │ │ │ ├── compression │ │ │ │ │ │ │ ├── Bzip2.cs │ │ │ │ │ │ │ ├── Bzip2.cs.meta │ │ │ │ │ │ │ ├── ZLib.cs │ │ │ │ │ │ │ ├── ZLib.cs.meta │ │ │ │ │ │ │ ├── Zip.cs │ │ │ │ │ │ │ └── Zip.cs.meta │ │ │ │ │ │ ├── pem.meta │ │ │ │ │ │ └── pem │ │ │ │ │ │ │ ├── PemGenerationException.cs │ │ │ │ │ │ │ ├── PemGenerationException.cs.meta │ │ │ │ │ │ │ ├── PemHeader.cs │ │ │ │ │ │ │ ├── PemHeader.cs.meta │ │ │ │ │ │ │ ├── PemObject.cs │ │ │ │ │ │ │ ├── PemObject.cs.meta │ │ │ │ │ │ │ ├── PemObjectGenerator.cs │ │ │ │ │ │ │ ├── PemObjectGenerator.cs.meta │ │ │ │ │ │ │ ├── PemObjectParser.cs │ │ │ │ │ │ │ ├── PemObjectParser.cs.meta │ │ │ │ │ │ │ ├── PemReader.cs │ │ │ │ │ │ │ ├── PemReader.cs.meta │ │ │ │ │ │ │ ├── PemWriter.cs │ │ │ │ │ │ │ └── PemWriter.cs.meta │ │ │ │ │ ├── net.meta │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IPAddress.cs │ │ │ │ │ │ └── IPAddress.cs.meta │ │ │ │ │ ├── zlib.meta │ │ │ │ │ └── zlib │ │ │ │ │ │ ├── Adler32.cs │ │ │ │ │ │ ├── Adler32.cs.meta │ │ │ │ │ │ ├── Deflate.cs │ │ │ │ │ │ ├── Deflate.cs.meta │ │ │ │ │ │ ├── InfBlocks.cs │ │ │ │ │ │ ├── InfBlocks.cs.meta │ │ │ │ │ │ ├── InfCodes.cs │ │ │ │ │ │ ├── InfCodes.cs.meta │ │ │ │ │ │ ├── InfTree.cs │ │ │ │ │ │ ├── InfTree.cs.meta │ │ │ │ │ │ ├── Inflate.cs │ │ │ │ │ │ ├── Inflate.cs.meta │ │ │ │ │ │ ├── JZlib.cs │ │ │ │ │ │ ├── JZlib.cs.meta │ │ │ │ │ │ ├── StaticTree.cs │ │ │ │ │ │ ├── StaticTree.cs.meta │ │ │ │ │ │ ├── ZDeflaterOutputStream.cs │ │ │ │ │ │ ├── ZDeflaterOutputStream.cs.meta │ │ │ │ │ │ ├── ZInflaterInputStream.cs │ │ │ │ │ │ ├── ZInflaterInputStream.cs.meta │ │ │ │ │ │ ├── ZInputStream.cs │ │ │ │ │ │ ├── ZInputStream.cs.meta │ │ │ │ │ │ ├── ZOutputStream.cs │ │ │ │ │ │ ├── ZOutputStream.cs.meta │ │ │ │ │ │ ├── ZStream.cs │ │ │ │ │ │ ├── ZStream.cs.meta │ │ │ │ │ │ ├── ZTree.cs │ │ │ │ │ │ └── ZTree.cs.meta │ │ │ │ ├── x509.meta │ │ │ │ └── x509 │ │ │ │ │ ├── AttributeCertificateHolder.cs │ │ │ │ │ ├── AttributeCertificateHolder.cs.meta │ │ │ │ │ ├── AttributeCertificateIssuer.cs │ │ │ │ │ ├── AttributeCertificateIssuer.cs.meta │ │ │ │ │ ├── IX509AttributeCertificate.cs │ │ │ │ │ ├── IX509AttributeCertificate.cs.meta │ │ │ │ │ ├── IX509Extension.cs │ │ │ │ │ ├── IX509Extension.cs.meta │ │ │ │ │ ├── PEMParser.cs │ │ │ │ │ ├── PEMParser.cs.meta │ │ │ │ │ ├── PrincipalUtil.cs │ │ │ │ │ ├── PrincipalUtil.cs.meta │ │ │ │ │ ├── SubjectPublicKeyInfoFactory.cs │ │ │ │ │ ├── SubjectPublicKeyInfoFactory.cs.meta │ │ │ │ │ ├── X509AttrCertParser.cs │ │ │ │ │ ├── X509AttrCertParser.cs.meta │ │ │ │ │ ├── X509Attribute.cs │ │ │ │ │ ├── X509Attribute.cs.meta │ │ │ │ │ ├── X509CertPairParser.cs │ │ │ │ │ ├── X509CertPairParser.cs.meta │ │ │ │ │ ├── X509Certificate.cs │ │ │ │ │ ├── X509Certificate.cs.meta │ │ │ │ │ ├── X509CertificatePair.cs │ │ │ │ │ ├── X509CertificatePair.cs.meta │ │ │ │ │ ├── X509CertificateParser.cs │ │ │ │ │ ├── X509CertificateParser.cs.meta │ │ │ │ │ ├── X509Crl.cs │ │ │ │ │ ├── X509Crl.cs.meta │ │ │ │ │ ├── X509CrlEntry.cs │ │ │ │ │ ├── X509CrlEntry.cs.meta │ │ │ │ │ ├── X509CrlParser.cs │ │ │ │ │ ├── X509CrlParser.cs.meta │ │ │ │ │ ├── X509ExtensionBase.cs │ │ │ │ │ ├── X509ExtensionBase.cs.meta │ │ │ │ │ ├── X509KeyUsage.cs │ │ │ │ │ ├── X509KeyUsage.cs.meta │ │ │ │ │ ├── X509SignatureUtil.cs │ │ │ │ │ ├── X509SignatureUtil.cs.meta │ │ │ │ │ ├── X509Utilities.cs │ │ │ │ │ ├── X509Utilities.cs.meta │ │ │ │ │ ├── X509V1CertificateGenerator.cs │ │ │ │ │ ├── X509V1CertificateGenerator.cs.meta │ │ │ │ │ ├── X509V2AttributeCertificate.cs │ │ │ │ │ ├── X509V2AttributeCertificate.cs.meta │ │ │ │ │ ├── X509V2AttributeCertificateGenerator.cs │ │ │ │ │ ├── X509V2AttributeCertificateGenerator.cs.meta │ │ │ │ │ ├── X509V2CRLGenerator.cs │ │ │ │ │ ├── X509V2CRLGenerator.cs.meta │ │ │ │ │ ├── X509V3CertificateGenerator.cs │ │ │ │ │ ├── X509V3CertificateGenerator.cs.meta │ │ │ │ │ ├── extension.meta │ │ │ │ │ ├── extension │ │ │ │ │ ├── AuthorityKeyIdentifierStructure.cs │ │ │ │ │ ├── AuthorityKeyIdentifierStructure.cs.meta │ │ │ │ │ ├── SubjectKeyIdentifierStructure.cs │ │ │ │ │ ├── SubjectKeyIdentifierStructure.cs.meta │ │ │ │ │ ├── X509ExtensionUtil.cs │ │ │ │ │ └── X509ExtensionUtil.cs.meta │ │ │ │ │ ├── store.meta │ │ │ │ │ └── store │ │ │ │ │ ├── IX509Selector.cs │ │ │ │ │ ├── IX509Selector.cs.meta │ │ │ │ │ ├── IX509Store.cs │ │ │ │ │ ├── IX509Store.cs.meta │ │ │ │ │ ├── IX509StoreParameters.cs │ │ │ │ │ ├── IX509StoreParameters.cs.meta │ │ │ │ │ ├── NoSuchStoreException.cs │ │ │ │ │ ├── NoSuchStoreException.cs.meta │ │ │ │ │ ├── X509AttrCertStoreSelector.cs │ │ │ │ │ ├── X509AttrCertStoreSelector.cs.meta │ │ │ │ │ ├── X509CertPairStoreSelector.cs │ │ │ │ │ ├── X509CertPairStoreSelector.cs.meta │ │ │ │ │ ├── X509CertStoreSelector.cs │ │ │ │ │ ├── X509CertStoreSelector.cs.meta │ │ │ │ │ ├── X509CollectionStore.cs │ │ │ │ │ ├── X509CollectionStore.cs.meta │ │ │ │ │ ├── X509CollectionStoreParameters.cs │ │ │ │ │ ├── X509CollectionStoreParameters.cs.meta │ │ │ │ │ ├── X509CrlStoreSelector.cs │ │ │ │ │ ├── X509CrlStoreSelector.cs.meta │ │ │ │ │ ├── X509StoreException.cs │ │ │ │ │ ├── X509StoreException.cs.meta │ │ │ │ │ ├── X509StoreFactory.cs │ │ │ │ │ └── X509StoreFactory.cs.meta │ │ │ ├── ServerSentEvents.meta │ │ │ ├── ServerSentEvents │ │ │ │ ├── EventSource.cs │ │ │ │ ├── EventSource.cs.meta │ │ │ │ ├── Message.cs │ │ │ │ └── Message.cs.meta │ │ │ ├── SignalR.meta │ │ │ ├── SignalR │ │ │ │ ├── Authentication.meta │ │ │ │ ├── Authentication │ │ │ │ │ ├── IAuthenticationProvider.cs │ │ │ │ │ └── IAuthenticationProvider.cs.meta │ │ │ │ ├── Connection.cs │ │ │ │ ├── Connection.cs.meta │ │ │ │ ├── Enums.cs │ │ │ │ ├── Enums.cs.meta │ │ │ │ ├── Hubs.meta │ │ │ │ ├── Hubs │ │ │ │ │ ├── Hub.cs │ │ │ │ │ ├── Hub.cs.meta │ │ │ │ │ ├── IHub.cs │ │ │ │ │ └── IHub.cs.meta │ │ │ │ ├── JsonEncoders.meta │ │ │ │ ├── JsonEncoders │ │ │ │ │ ├── DefaultJsonEncoder.cs │ │ │ │ │ ├── DefaultJsonEncoder.cs.meta │ │ │ │ │ ├── IJsonEncoder.cs │ │ │ │ │ └── IJsonEncoder.cs.meta │ │ │ │ ├── Messages.meta │ │ │ │ ├── Messages │ │ │ │ │ ├── ClientMessage.cs │ │ │ │ │ ├── ClientMessage.cs.meta │ │ │ │ │ ├── IServerMessage.cs │ │ │ │ │ ├── IServerMessage.cs.meta │ │ │ │ │ ├── ServerMessages.cs │ │ │ │ │ └── ServerMessages.cs.meta │ │ │ │ ├── NegotiationData.cs │ │ │ │ ├── NegotiationData.cs.meta │ │ │ │ ├── Transports.meta │ │ │ │ └── Transports │ │ │ │ │ ├── PollingTransport.cs │ │ │ │ │ ├── PollingTransport.cs.meta │ │ │ │ │ ├── PostSendTransportBase.cs │ │ │ │ │ ├── PostSendTransportBase.cs.meta │ │ │ │ │ ├── ServerSentEventsTransport.cs │ │ │ │ │ ├── ServerSentEventsTransport.cs.meta │ │ │ │ │ ├── TransportBase.cs │ │ │ │ │ ├── TransportBase.cs.meta │ │ │ │ │ ├── WebSocketTransport.cs │ │ │ │ │ └── WebSocketTransport.cs.meta │ │ │ ├── SignalRCore.meta │ │ │ ├── SignalRCore │ │ │ │ ├── Authentication.meta │ │ │ │ ├── Authentication │ │ │ │ │ ├── DefaultAccessTokenAuthenticator.cs │ │ │ │ │ └── DefaultAccessTokenAuthenticator.cs.meta │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Extensions.cs.meta │ │ │ │ ├── HelperClasses.cs │ │ │ │ ├── HelperClasses.cs.meta │ │ │ │ ├── HubConnection.cs │ │ │ │ ├── HubConnection.cs.meta │ │ │ │ ├── IAuthenticationProvider.cs │ │ │ │ ├── IAuthenticationProvider.cs.meta │ │ │ │ ├── JsonProtocol.cs │ │ │ │ ├── JsonProtocol.cs.meta │ │ │ │ ├── Messages.meta │ │ │ │ ├── Messages │ │ │ │ │ ├── Invocation.cs │ │ │ │ │ ├── Invocation.cs.meta │ │ │ │ │ ├── Message.cs │ │ │ │ │ ├── Message.cs.meta │ │ │ │ │ ├── NegotiationResult.cs │ │ │ │ │ └── NegotiationResult.cs.meta │ │ │ │ ├── Transports.meta │ │ │ │ ├── Transports │ │ │ │ │ ├── LongPollingTransport.cs │ │ │ │ │ ├── LongPollingTransport.cs.meta │ │ │ │ │ ├── TransportBase.cs │ │ │ │ │ ├── TransportBase.cs.meta │ │ │ │ │ ├── WebsocketTransport.cs │ │ │ │ │ └── WebsocketTransport.cs.meta │ │ │ │ ├── UploadItemController.cs │ │ │ │ └── UploadItemController.cs.meta │ │ │ ├── SocketIO.3.meta │ │ │ ├── SocketIO.3 │ │ │ │ ├── Enums.cs │ │ │ │ ├── Enums.cs.meta │ │ │ │ ├── Error.cs │ │ │ │ ├── Error.cs.meta │ │ │ │ ├── Events.meta │ │ │ │ ├── Events │ │ │ │ │ ├── EventNames.cs │ │ │ │ │ ├── EventNames.cs.meta │ │ │ │ │ ├── TypedEventTable.cs │ │ │ │ │ └── TypedEventTable.cs.meta │ │ │ │ ├── HandshakeData.cs │ │ │ │ ├── HandshakeData.cs.meta │ │ │ │ ├── IncomingPacket.cs │ │ │ │ ├── IncomingPacket.cs.meta │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ ├── Parsers.meta │ │ │ │ ├── Parsers │ │ │ │ │ ├── DefaultJsonParser.cs │ │ │ │ │ ├── DefaultJsonParser.cs.meta │ │ │ │ │ ├── IParser.cs │ │ │ │ │ └── IParser.cs.meta │ │ │ │ ├── Socket.cs │ │ │ │ ├── Socket.cs.meta │ │ │ │ ├── SocketManager.cs │ │ │ │ ├── SocketManager.cs.meta │ │ │ │ ├── SocketOptions.cs │ │ │ │ ├── SocketOptions.cs.meta │ │ │ │ ├── Transports.meta │ │ │ │ └── Transports │ │ │ │ │ ├── ITransport.cs │ │ │ │ │ ├── ITransport.cs.meta │ │ │ │ │ ├── PollingTransport.cs │ │ │ │ │ ├── PollingTransport.cs.meta │ │ │ │ │ ├── WebSocketTransport.cs │ │ │ │ │ └── WebSocketTransport.cs.meta │ │ │ ├── SocketIO.meta │ │ │ ├── SocketIO │ │ │ │ ├── Enums.cs │ │ │ │ ├── Enums.cs.meta │ │ │ │ ├── Error.cs │ │ │ │ ├── Error.cs.meta │ │ │ │ ├── Events.meta │ │ │ │ ├── Events │ │ │ │ │ ├── EventDescriptor.cs │ │ │ │ │ ├── EventDescriptor.cs.meta │ │ │ │ │ ├── EventNames.cs │ │ │ │ │ ├── EventNames.cs.meta │ │ │ │ │ ├── EventTable.cs │ │ │ │ │ └── EventTable.cs.meta │ │ │ │ ├── HandshakeData.cs │ │ │ │ ├── HandshakeData.cs.meta │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── Interfaces.cs.meta │ │ │ │ ├── JsonEncoders.meta │ │ │ │ ├── JsonEncoders │ │ │ │ │ ├── DefaultJSonEncoder.cs │ │ │ │ │ ├── DefaultJSonEncoder.cs.meta │ │ │ │ │ ├── IJSonEncoder.cs │ │ │ │ │ └── IJSonEncoder.cs.meta │ │ │ │ ├── Packet.cs │ │ │ │ ├── Packet.cs.meta │ │ │ │ ├── Socket.cs │ │ │ │ ├── Socket.cs.meta │ │ │ │ ├── SocketManager.cs │ │ │ │ ├── SocketManager.cs.meta │ │ │ │ ├── SocketOptions.cs │ │ │ │ ├── SocketOptions.cs.meta │ │ │ │ ├── Transports.meta │ │ │ │ └── Transports │ │ │ │ │ ├── ITransport.cs │ │ │ │ │ ├── ITransport.cs.meta │ │ │ │ │ ├── PollingTransport.cs │ │ │ │ │ ├── PollingTransport.cs.meta │ │ │ │ │ ├── WebSocketTransport.cs │ │ │ │ │ └── WebSocketTransport.cs.meta │ │ │ ├── Timings.meta │ │ │ ├── Timings │ │ │ │ ├── TimingCollector.cs │ │ │ │ ├── TimingCollector.cs.meta │ │ │ │ ├── TimingEvent.cs │ │ │ │ ├── TimingEvent.cs.meta │ │ │ │ ├── TimingEventNames.cs │ │ │ │ └── TimingEventNames.cs.meta │ │ │ ├── WebSocket.meta │ │ │ └── WebSocket │ │ │ │ ├── Extensions.meta │ │ │ │ ├── Extensions │ │ │ │ ├── IExtension.cs │ │ │ │ ├── IExtension.cs.meta │ │ │ │ ├── PerMessageCompression.cs │ │ │ │ └── PerMessageCompression.cs.meta │ │ │ │ ├── Frames.meta │ │ │ │ ├── Frames │ │ │ │ ├── WebSocketFrame.cs │ │ │ │ ├── WebSocketFrame.cs.meta │ │ │ │ ├── WebSocketFrameReader.cs │ │ │ │ ├── WebSocketFrameReader.cs.meta │ │ │ │ ├── WebSocketFrameTypes.cs │ │ │ │ └── WebSocketFrameTypes.cs.meta │ │ │ │ ├── Implementations.meta │ │ │ │ ├── Implementations │ │ │ │ ├── OverHTTP1.cs │ │ │ │ ├── OverHTTP1.cs.meta │ │ │ │ ├── OverHTTP2.cs │ │ │ │ ├── OverHTTP2.cs.meta │ │ │ │ ├── Utils.meta │ │ │ │ ├── Utils │ │ │ │ │ ├── LockedBufferSegmenStream.cs │ │ │ │ │ └── LockedBufferSegmenStream.cs.meta │ │ │ │ ├── WebGLBrowser.cs │ │ │ │ ├── WebGLBrowser.cs.meta │ │ │ │ ├── WebSocketBaseImplementation.cs │ │ │ │ └── WebSocketBaseImplementation.cs.meta │ │ │ │ ├── WebSocket.cs │ │ │ │ ├── WebSocket.cs.meta │ │ │ │ ├── WebSocketResponse.cs │ │ │ │ ├── WebSocketResponse.cs.meta │ │ │ │ ├── WebSocketStatusCodes.cs │ │ │ │ └── WebSocketStatusCodes.cs.meta │ │ ├── Third-Party Notices.txt │ │ ├── Third-Party Notices.txt.meta │ │ ├── license.txt │ │ ├── license.txt.meta │ │ ├── link.xml │ │ ├── link.xml.meta │ │ ├── link_android_subset.xml │ │ └── link_android_subset.xml.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.dll.meta │ ├── SemanticVersioning.meta │ ├── SemanticVersioning │ │ ├── Comparator.cs │ │ ├── Comparator.cs.meta │ │ ├── ComparatorSet.cs │ │ ├── ComparatorSet.cs.meta │ │ ├── Desugarer.cs │ │ ├── Desugarer.cs.meta │ │ ├── PartialVersion.cs │ │ ├── PartialVersion.cs.meta │ │ ├── PreReleaseVersion.cs │ │ ├── PreReleaseVersion.cs.meta │ │ ├── Range.cs │ │ ├── Range.cs.meta │ │ ├── SemanticVersion.cs │ │ ├── SemanticVersion.cs.meta │ │ ├── Tuple.cs │ │ └── Tuple.cs.meta │ ├── Setting.meta │ ├── Setting │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── urs_runtime_setting.txt │ │ │ └── urs_runtime_setting.txt.meta │ │ ├── URSRuntimeSetting.cs │ │ └── URSRuntimeSetting.cs.meta │ ├── SmartLibrary.meta │ ├── SmartLibrary │ │ ├── Changelog.pdf │ │ ├── Changelog.pdf.meta │ │ ├── Credits.pdf │ │ ├── Credits.pdf.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── AssetGUIDHashSet.cs │ │ │ │ ├── AssetGUIDHashSet.cs.meta │ │ │ │ ├── Collections.meta │ │ │ │ ├── Collections │ │ │ │ │ ├── CompoundCollection.cs │ │ │ │ │ ├── CompoundCollection.cs.meta │ │ │ │ │ ├── ILibrarySet.cs │ │ │ │ │ ├── ILibrarySet.cs.meta │ │ │ │ │ ├── LibraryCollection.cs │ │ │ │ │ ├── LibraryCollection.cs.meta │ │ │ │ │ ├── RootLibraryCollection.cs │ │ │ │ │ ├── RootLibraryCollection.cs.meta │ │ │ │ │ ├── SmartCollection.cs │ │ │ │ │ ├── SmartCollection.cs.meta │ │ │ │ │ ├── StandardCollection.cs │ │ │ │ │ └── StandardCollection.cs.meta │ │ │ │ ├── FolderReference.cs │ │ │ │ ├── FolderReference.cs.meta │ │ │ │ ├── LibraryData.cs │ │ │ │ ├── LibraryData.cs.meta │ │ │ │ ├── LibraryDatabase.cs │ │ │ │ ├── LibraryDatabase.cs.meta │ │ │ │ ├── LibraryHierarchyChangedEventArgs.cs │ │ │ │ ├── LibraryHierarchyChangedEventArgs.cs.meta │ │ │ │ ├── LibraryItem.cs │ │ │ │ ├── LibraryItem.cs.meta │ │ │ │ ├── LibraryItemsChangedEventArgs.cs │ │ │ │ ├── LibraryItemsChangedEventArgs.cs.meta │ │ │ │ ├── SerializableDictionary.cs │ │ │ │ ├── SerializableDictionary.cs.meta │ │ │ │ ├── TypeReference.cs │ │ │ │ ├── TypeReference.cs.meta │ │ │ │ ├── UStack.cs │ │ │ │ └── UStack.cs.meta │ │ │ ├── DefaultParentManager.cs │ │ │ ├── DefaultParentManager.cs.meta │ │ │ ├── Draggers.meta │ │ │ ├── Draggers │ │ │ │ ├── CollectionsTreeViewDragger.cs │ │ │ │ ├── CollectionsTreeViewDragger.cs.meta │ │ │ │ ├── ListViewDragger.cs │ │ │ │ ├── ListViewDragger.cs.meta │ │ │ │ ├── ReorderListManipulator.cs │ │ │ │ ├── ReorderListManipulator.cs.meta │ │ │ │ ├── TreeViewDragger.cs │ │ │ │ └── TreeViewDragger.cs.meta │ │ │ ├── EditorAssetsFolderLocator.cs │ │ │ ├── EditorAssetsFolderLocator.cs.meta │ │ │ ├── Editors.meta │ │ │ ├── Editors │ │ │ │ ├── CompoundCollectionEditor.cs │ │ │ │ ├── CompoundCollectionEditor.cs.meta │ │ │ │ ├── DefaultParentLinkEditor.cs │ │ │ │ ├── DefaultParentLinkEditor.cs.meta │ │ │ │ ├── LibraryCollectionEditor.cs │ │ │ │ ├── LibraryCollectionEditor.cs.meta │ │ │ │ ├── SmartCollectionEditor.cs │ │ │ │ └── SmartCollectionEditor.cs.meta │ │ │ ├── Extensions.meta │ │ │ ├── Extensions │ │ │ │ ├── ElementExtensions.cs │ │ │ │ ├── ElementExtensions.cs.meta │ │ │ │ ├── GenericMenuExtensions.cs │ │ │ │ └── GenericMenuExtensions.cs.meta │ │ │ ├── LibraryAssetPostProcessor.cs │ │ │ ├── LibraryAssetPostProcessor.cs.meta │ │ │ ├── LibraryPreferences.cs │ │ │ ├── LibraryPreferences.cs.meta │ │ │ ├── LibrarySetManipulator.cs │ │ │ ├── LibrarySetManipulator.cs.meta │ │ │ ├── Previews.meta │ │ │ ├── Previews │ │ │ │ ├── AssetPreviewManager.cs │ │ │ │ ├── AssetPreviewManager.cs.meta │ │ │ │ ├── Cache.meta │ │ │ │ ├── Cache │ │ │ │ │ ├── PreviewCache.cs │ │ │ │ │ ├── PreviewCache.cs.meta │ │ │ │ │ ├── PreviewCacheManager.cs │ │ │ │ │ ├── PreviewCacheManager.cs.meta │ │ │ │ │ ├── PreviewPriorityQueue.cs │ │ │ │ │ └── PreviewPriorityQueue.cs.meta │ │ │ │ ├── Generators.meta │ │ │ │ ├── Generators │ │ │ │ │ ├── AudioPreviewGenerator.cs │ │ │ │ │ ├── AudioPreviewGenerator.cs.meta │ │ │ │ │ ├── MaterialPreviewGenerator.cs │ │ │ │ │ ├── MaterialPreviewGenerator.cs.meta │ │ │ │ │ ├── MeshPreviewGenerator.cs │ │ │ │ │ ├── MeshPreviewGenerator.cs.meta │ │ │ │ │ ├── PrefabPreviewGenerator.cs │ │ │ │ │ ├── PrefabPreviewGenerator.cs.meta │ │ │ │ │ ├── PreviewGeneratorBase.cs │ │ │ │ │ └── PreviewGeneratorBase.cs.meta │ │ │ │ ├── PreviewEditorUtility.cs │ │ │ │ ├── PreviewEditorUtility.cs.meta │ │ │ │ ├── PreviewRenderer.cs │ │ │ │ ├── PreviewRenderer.cs.meta │ │ │ │ ├── PreviewStage.cs │ │ │ │ ├── PreviewStage.cs.meta │ │ │ │ ├── Previewer.cs │ │ │ │ └── Previewer.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ │ ├── ComponentRulePropertyDrawer.cs │ │ │ │ ├── ComponentRulePropertyDrawer.cs.meta │ │ │ │ ├── ExtensionRulePropertyDrawer.cs │ │ │ │ ├── ExtensionRulePropertyDrawer.cs.meta │ │ │ │ ├── FolderReferencePropertyDrawer.cs │ │ │ │ ├── FolderReferencePropertyDrawer.cs.meta │ │ │ │ ├── LabelRulePropertyDrawer.cs │ │ │ │ ├── LabelRulePropertyDrawer.cs.meta │ │ │ │ ├── LibraryCollectionPropertyDrawer.cs │ │ │ │ ├── LibraryCollectionPropertyDrawer.cs.meta │ │ │ │ ├── LibraryRuleBasePropertyDrawer.cs │ │ │ │ ├── LibraryRuleBasePropertyDrawer.cs.meta │ │ │ │ ├── NameRulePropertyDrawer.cs │ │ │ │ ├── NameRulePropertyDrawer.cs.meta │ │ │ │ ├── PrefabRulePropertyDrawer.cs │ │ │ │ ├── PrefabRulePropertyDrawer.cs.meta │ │ │ │ ├── RuleSetPropertyDrawer.cs │ │ │ │ ├── RuleSetPropertyDrawer.cs.meta │ │ │ │ ├── TypeRulePropertyDrawer.cs │ │ │ │ └── TypeRulePropertyDrawer.cs.meta │ │ │ ├── Rules.meta │ │ │ ├── Rules │ │ │ │ ├── ComponentRule.cs │ │ │ │ ├── ComponentRule.cs.meta │ │ │ │ ├── ExtensionRule.cs │ │ │ │ ├── ExtensionRule.cs.meta │ │ │ │ ├── LabelRule.cs │ │ │ │ ├── LabelRule.cs.meta │ │ │ │ ├── LibraryRuleBase.cs │ │ │ │ ├── LibraryRuleBase.cs.meta │ │ │ │ ├── NameRule.cs │ │ │ │ ├── NameRule.cs.meta │ │ │ │ ├── PrefabRule.cs │ │ │ │ ├── PrefabRule.cs.meta │ │ │ │ ├── RuleSet.cs │ │ │ │ ├── RuleSet.cs.meta │ │ │ │ ├── TypeRule.cs │ │ │ │ └── TypeRule.cs.meta │ │ │ ├── SessionData.cs │ │ │ ├── SessionData.cs.meta │ │ │ ├── SmartLibraryWindow.cs │ │ │ ├── SmartLibraryWindow.cs.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ │ ├── Common.uss │ │ │ │ ├── Common.uss.meta │ │ │ │ ├── CommonDark.uss │ │ │ │ ├── CommonDark.uss.meta │ │ │ │ ├── CommonLight.uss │ │ │ │ ├── CommonLight.uss.meta │ │ │ │ ├── DropdownWindow.uss │ │ │ │ ├── DropdownWindow.uss.meta │ │ │ │ ├── FolderSelector.uss │ │ │ │ ├── FolderSelector.uss.meta │ │ │ │ ├── Icons.meta │ │ │ │ ├── Icons │ │ │ │ │ ├── collection-view-linked.png │ │ │ │ │ ├── collection-view-linked.png.meta │ │ │ │ │ ├── collection-view-unlinked.png │ │ │ │ │ ├── collection-view-unlinked.png.meta │ │ │ │ │ ├── compound_collection.png │ │ │ │ │ ├── compound_collection.png.meta │ │ │ │ │ ├── d_collection-view-linked.png │ │ │ │ │ ├── d_collection-view-linked.png.meta │ │ │ │ │ ├── d_collection-view-unlinked.png │ │ │ │ │ ├── d_collection-view-unlinked.png.meta │ │ │ │ │ ├── d_compound_collection.png │ │ │ │ │ ├── d_compound_collection.png.meta │ │ │ │ │ ├── d_default_parent.png │ │ │ │ │ ├── d_default_parent.png.meta │ │ │ │ │ ├── d_grid_display_mode.png │ │ │ │ │ ├── d_grid_display_mode.png.meta │ │ │ │ │ ├── d_list_add.png │ │ │ │ │ ├── d_list_add.png.meta │ │ │ │ │ ├── d_list_add_dropdown.png │ │ │ │ │ ├── d_list_add_dropdown.png.meta │ │ │ │ │ ├── d_list_display_mode.png │ │ │ │ │ ├── d_list_display_mode.png.meta │ │ │ │ │ ├── d_list_remove.png │ │ │ │ │ ├── d_list_remove.png.meta │ │ │ │ │ ├── d_options.png │ │ │ │ │ ├── d_options.png.meta │ │ │ │ │ ├── d_smart_collection.png │ │ │ │ │ ├── d_smart_collection.png.meta │ │ │ │ │ ├── d_smart_library_icon.png │ │ │ │ │ ├── d_smart_library_icon.png.meta │ │ │ │ │ ├── d_standard-collection.png │ │ │ │ │ ├── d_standard-collection.png.meta │ │ │ │ │ ├── default_parent.png │ │ │ │ │ ├── default_parent.png.meta │ │ │ │ │ ├── grid_display_mode.png │ │ │ │ │ ├── grid_display_mode.png.meta │ │ │ │ │ ├── list_add.png │ │ │ │ │ ├── list_add.png.meta │ │ │ │ │ ├── list_add_dropdown.png │ │ │ │ │ ├── list_add_dropdown.png.meta │ │ │ │ │ ├── list_display_mode.png │ │ │ │ │ ├── list_display_mode.png.meta │ │ │ │ │ ├── list_remove.png │ │ │ │ │ ├── list_remove.png.meta │ │ │ │ │ ├── options.png │ │ │ │ │ ├── options.png.meta │ │ │ │ │ ├── smart_collection.png │ │ │ │ │ ├── smart_collection.png.meta │ │ │ │ │ ├── smart_library_icon.png │ │ │ │ │ ├── smart_library_icon.png.meta │ │ │ │ │ ├── standard-collection.png │ │ │ │ │ └── standard-collection.png.meta │ │ │ │ ├── LibraryCollection.uss │ │ │ │ ├── LibraryCollection.uss.meta │ │ │ │ ├── LibraryCollectionDark.uss │ │ │ │ ├── LibraryCollectionDark.uss.meta │ │ │ │ ├── LibraryCollectionLight.uss │ │ │ │ ├── LibraryCollectionLight.uss.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ │ ├── PremultipliedAlphaBlend.shader │ │ │ │ │ ├── PremultipliedAlphaBlend.shader.meta │ │ │ │ │ ├── PremultipliedAlphaBlendSRP.shader │ │ │ │ │ ├── PremultipliedAlphaBlendSRP.shader.meta │ │ │ │ │ ├── PreviewGUIMaterial.mat │ │ │ │ │ ├── PreviewGUIMaterial.mat.meta │ │ │ │ │ ├── PreviewGUIMaterialSRP.mat │ │ │ │ │ └── PreviewGUIMaterialSRP.mat.meta │ │ │ │ ├── ReorderableList.uxml │ │ │ │ ├── ReorderableList.uxml.meta │ │ │ │ ├── SmartLibraryWindow.uss │ │ │ │ ├── SmartLibraryWindow.uss.meta │ │ │ │ ├── SmartLibraryWindow.uxml │ │ │ │ ├── SmartLibraryWindow.uxml.meta │ │ │ │ ├── SmartLibraryWindowDark.uss │ │ │ │ ├── SmartLibraryWindowDark.uss.meta │ │ │ │ ├── SmartLibraryWindowLight.uss │ │ │ │ └── SmartLibraryWindowLight.uss.meta │ │ │ ├── Undo.meta │ │ │ ├── Undo │ │ │ │ ├── CollectionUndoManager.cs │ │ │ │ ├── CollectionUndoManager.cs.meta │ │ │ │ ├── CollectionUndoRecord.cs │ │ │ │ ├── CollectionUndoRecord.cs.meta │ │ │ │ ├── CollectionsUndoState.cs │ │ │ │ └── CollectionsUndoState.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ │ ├── AssetPreviewRef.cs │ │ │ │ ├── AssetPreviewRef.cs.meta │ │ │ │ ├── AssetSelection.cs │ │ │ │ ├── AssetSelection.cs.meta │ │ │ │ ├── AssetUtility.cs │ │ │ │ ├── AssetUtility.cs.meta │ │ │ │ ├── CollectionSaveSync.cs │ │ │ │ ├── CollectionSaveSync.cs.meta │ │ │ │ ├── FilteredSet.cs │ │ │ │ ├── FilteredSet.cs.meta │ │ │ │ ├── LibraryConstants.cs │ │ │ │ ├── LibraryConstants.cs.meta │ │ │ │ ├── LibraryItemEntryComparer.cs │ │ │ │ ├── LibraryItemEntryComparer.cs.meta │ │ │ │ ├── LibraryUtility.cs │ │ │ │ ├── LibraryUtility.cs.meta │ │ │ │ ├── TypeAccessor.cs │ │ │ │ └── TypeAccessor.cs.meta │ │ │ ├── View.meta │ │ │ └── View │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ ├── BTreeView.cs │ │ │ │ ├── BTreeView.cs.meta │ │ │ │ ├── BTreeViewItem.cs │ │ │ │ ├── BTreeViewItem.cs.meta │ │ │ │ ├── ComponentTypeField.cs │ │ │ │ ├── ComponentTypeField.cs.meta │ │ │ │ ├── DragAutoScroller.cs │ │ │ │ ├── DragAutoScroller.cs.meta │ │ │ │ ├── FolderField.cs │ │ │ │ ├── FolderField.cs.meta │ │ │ │ ├── FolderSelector.cs │ │ │ │ ├── FolderSelector.cs.meta │ │ │ │ ├── IMGUI.meta │ │ │ │ ├── IMGUI │ │ │ │ │ ├── GridViewControl.cs │ │ │ │ │ ├── GridViewControl.cs.meta │ │ │ │ │ ├── ItemsViewControl.cs │ │ │ │ │ ├── ItemsViewControl.cs.meta │ │ │ │ │ ├── ListViewControl.cs │ │ │ │ │ └── ListViewControl.cs.meta │ │ │ │ ├── IconButton.cs │ │ │ │ ├── IconButton.cs.meta │ │ │ │ ├── ListViewDragManipulator.cs │ │ │ │ ├── ListViewDragManipulator.cs.meta │ │ │ │ ├── ProcessSpinner.cs │ │ │ │ ├── ProcessSpinner.cs.meta │ │ │ │ ├── RenamableLabel.cs │ │ │ │ ├── RenamableLabel.cs.meta │ │ │ │ ├── ReorderableList.cs │ │ │ │ ├── ReorderableList.cs.meta │ │ │ │ ├── SplitView.cs │ │ │ │ ├── SplitView.cs.meta │ │ │ │ ├── TypeField.cs │ │ │ │ ├── TypeField.cs.meta │ │ │ │ ├── UnityTypeDropdown.cs │ │ │ │ └── UnityTypeDropdown.cs.meta │ │ │ │ ├── CollectionField.cs │ │ │ │ ├── CollectionField.cs.meta │ │ │ │ ├── CollectionSelector.cs │ │ │ │ ├── CollectionSelector.cs.meta │ │ │ │ ├── CollectionTreeItem.cs │ │ │ │ ├── CollectionTreeItem.cs.meta │ │ │ │ ├── CollectionTreeViewItems.cs │ │ │ │ ├── CollectionTreeViewItems.cs.meta │ │ │ │ ├── ComponentTypeDropdown.cs │ │ │ │ ├── ComponentTypeDropdown.cs.meta │ │ │ │ ├── LibraryCollectionsView.cs │ │ │ │ ├── LibraryCollectionsView.cs.meta │ │ │ │ ├── LibraryDataEditor.cs │ │ │ │ ├── LibraryDataEditor.cs.meta │ │ │ │ ├── LibraryItemsView.cs │ │ │ │ ├── LibraryItemsView.cs.meta │ │ │ │ ├── RulesView.cs │ │ │ │ └── RulesView.cs.meta │ │ ├── Manual.pdf │ │ ├── Manual.pdf.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── CollectionDefaultParent.cs │ │ │ ├── CollectionDefaultParent.cs.meta │ │ │ ├── UniqueID.cs │ │ │ └── UniqueID.cs.meta │ ├── SocoShaderVariant.meta │ ├── SocoShaderVariant │ │ ├── ..Associate │ │ │ ├── README.md │ │ │ └── SocoVariantStripAssociate.cs │ │ ├── SocoShaderVariantsCollection.meta │ │ └── SocoShaderVariantsCollection │ │ │ ├── ..Images │ │ │ ├── 1.开启界面.png │ │ │ ├── 2.功能选择.png │ │ │ ├── 3.快速浏览.png │ │ │ ├── 4.材质收集器列表.png │ │ │ ├── 5.变体过滤器列表.png │ │ │ ├── 6.合并文件.png │ │ │ ├── 7.执行器列表.png │ │ │ ├── 8.变体声明组合.png │ │ │ └── 9.分割文件.png │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ ├── Default ShaderVariantCollection Tool Config.asset │ │ │ ├── Default ShaderVariantCollection Tool Config.asset.meta │ │ │ ├── Executable.meta │ │ │ ├── Executable │ │ │ │ ├── IExecutable.cs │ │ │ │ ├── IExecutable.cs.meta │ │ │ │ ├── InvalidVariantStrip.cs │ │ │ │ ├── InvalidVariantStrip.cs.meta │ │ │ │ ├── VariantKeywordCombination.cs │ │ │ │ └── VariantKeywordCombination.cs.meta │ │ │ ├── MaterialCollection.meta │ │ │ ├── MaterialCollection │ │ │ │ ├── IMaterialCollection.cs │ │ │ │ ├── IMaterialCollection.cs.meta │ │ │ │ ├── MaterialCollection_AssignMaterial.cs │ │ │ │ ├── MaterialCollection_AssignMaterial.cs.meta │ │ │ │ ├── MaterialCollection_SceneDependency.cs │ │ │ │ ├── MaterialCollection_SceneDependency.cs.meta │ │ │ │ ├── MaterialCollection_TotalMaterial.cs │ │ │ │ └── MaterialCollection_TotalMaterial.cs.meta │ │ │ ├── MaterialFilter.meta │ │ │ ├── MaterialFilter │ │ │ │ ├── IMaterialFilter.cs │ │ │ │ ├── IMaterialFilter.cs.meta │ │ │ │ ├── TestMaterialFilter.cs │ │ │ │ └── TestMaterialFilter.cs.meta │ │ │ ├── SerializableShaderVariant.cs │ │ │ ├── SerializableShaderVariant.cs.meta │ │ │ ├── ShaderVariantCollectionAddVariantWindow.cs │ │ │ ├── ShaderVariantCollectionAddVariantWindow.cs.meta │ │ │ ├── ShaderVariantCollectionMapper.cs │ │ │ ├── ShaderVariantCollectionMapper.cs.meta │ │ │ ├── ShaderVariantCollectionMaterialVariantConverter.cs │ │ │ ├── ShaderVariantCollectionMaterialVariantConverter.cs.meta │ │ │ ├── ShaderVariantCollectionToolConfig.cs │ │ │ ├── ShaderVariantCollectionToolConfig.cs.meta │ │ │ ├── ShaderVariantCollectionToolWindow.cs │ │ │ ├── ShaderVariantCollectionToolWindow.cs.meta │ │ │ ├── VariantFilter.meta │ │ │ └── VariantFilter │ │ │ │ ├── IVariantFilter.cs │ │ │ │ ├── IVariantFilter.cs.meta │ │ │ │ ├── VariantFilter_PassStrip.cs │ │ │ │ ├── VariantFilter_PassStrip.cs.meta │ │ │ │ ├── VariantFilter_Shader.cs │ │ │ │ └── VariantFilter_Shader.cs.meta │ │ │ ├── README.md │ │ │ └── README.md.meta │ ├── UnityShaderStripper.meta │ ├── UnityShaderStripper │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ShaderStripperEditor.cs │ │ │ └── ShaderStripperEditor.cs.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── ShaderForceKeywords.asset │ │ ├── ShaderForceKeywords.asset.meta │ │ ├── ShaderForceKeywords.cs │ │ ├── ShaderForceKeywords.cs.meta │ │ ├── ShaderStripperBase.cs │ │ ├── ShaderStripperBase.cs.meta │ │ ├── ShaderStripperBlackShaderVariantCollection.asset │ │ ├── ShaderStripperBlackShaderVariantCollection.asset.meta │ │ ├── ShaderStripperBlackShaderVariantCollection.cs │ │ ├── ShaderStripperBlackShaderVariantCollection.cs.meta │ │ ├── ShaderStripperPath.cs │ │ ├── ShaderStripperPath.cs.meta │ │ ├── ShaderStripperPlatform.cs │ │ ├── ShaderStripperPlatform.cs.meta │ │ ├── ShaderStripperSimple.asset │ │ ├── ShaderStripperSimple.asset.meta │ │ ├── ShaderStripperSimple.cs │ │ ├── ShaderStripperSimple.cs.meta │ │ ├── ShaderStripperTier.cs │ │ ├── ShaderStripperTier.cs.meta │ │ ├── ShaderStripperVariantCollection.cs │ │ └── ShaderStripperVariantCollection.cs.meta │ ├── Utils.meta │ ├── Utils │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── EditorUtils.Reflection.cs │ │ │ ├── EditorUtils.Reflection.cs.meta │ │ │ ├── EditorUtils.Scope.cs │ │ │ ├── EditorUtils.Scope.cs.meta │ │ │ ├── EditorUtils.Style.cs │ │ │ ├── EditorUtils.Style.cs.meta │ │ │ ├── EditorUtils.cs │ │ │ ├── EditorUtils.cs.meta │ │ │ ├── FixedArrayPool.cs │ │ │ ├── FixedArrayPool.cs.meta │ │ │ ├── FpsHelper.cs │ │ │ ├── FpsHelper.cs.meta │ │ │ ├── GameSettings.cs │ │ │ ├── GameSettings.cs.meta │ │ │ ├── PoolExtension.cs │ │ │ ├── PoolExtension.cs.meta │ │ │ ├── ReflectionHelper.meta │ │ │ ├── ReflectionHelper │ │ │ │ ├── GenHookTool.cs │ │ │ │ ├── GenHookTool.cs.meta │ │ │ │ ├── GenWrapTool.cs │ │ │ │ ├── GenWrapTool.cs.meta │ │ │ │ ├── Generated.meta │ │ │ │ ├── Generated │ │ │ │ │ ├── Hook_UnityEditor_AnimationClipInfoProperties.cs │ │ │ │ │ ├── Hook_UnityEditor_AnimationClipInfoProperties.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_AnimationWindowEventInspector.cs │ │ │ │ │ ├── Hook_UnityEditor_AnimationWindowEventInspector.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_ConsoleWindow.cs │ │ │ │ │ ├── Hook_UnityEditor_ConsoleWindow.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_EditorGUIExt.cs │ │ │ │ │ ├── Hook_UnityEditor_EditorGUIExt.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_EditorGUIUtility.cs │ │ │ │ │ ├── Hook_UnityEditor_EditorGUIUtility.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_EditorUtility.cs │ │ │ │ │ ├── Hook_UnityEditor_EditorUtility.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_EventManipulationHandler.cs │ │ │ │ │ ├── Hook_UnityEditor_EventManipulationHandler.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_LogEntries.cs │ │ │ │ │ ├── Hook_UnityEditor_LogEntries.cs.meta │ │ │ │ │ ├── Hook_UnityEditor_ModelImporterClipEditor.cs │ │ │ │ │ ├── Hook_UnityEditor_ModelImporterClipEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_AnimationClipEditor.cs │ │ │ │ │ ├── Wrap_UnityEditor_AnimationClipEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_AnimationClipInfoProperties.cs │ │ │ │ │ ├── Wrap_UnityEditor_AnimationClipInfoProperties.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_AnimationWindowEvent.cs │ │ │ │ │ ├── Wrap_UnityEditor_AnimationWindowEvent.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_BaseAssetImporterTabUI.cs │ │ │ │ │ ├── Wrap_UnityEditor_BaseAssetImporterTabUI.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_BaseTextureImportPlatformSettings.cs │ │ │ │ │ ├── Wrap_UnityEditor_BaseTextureImportPlatformSettings.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_Build_BuildPlatform.cs │ │ │ │ │ ├── Wrap_UnityEditor_Build_BuildPlatform.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_Build_BuildPlatforms.cs │ │ │ │ │ ├── Wrap_UnityEditor_Build_BuildPlatforms.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_Editor.cs │ │ │ │ │ ├── Wrap_UnityEditor_Editor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUI.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUI.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUILayout.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUILayout.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUIUtility.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUIUtility.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUI_RecycledTextEditor.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorGUI_RecycledTextEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorStyles.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorStyles.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EditorWindow.cs │ │ │ │ │ ├── Wrap_UnityEditor_EditorWindow.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_EventManipulationHandler.cs │ │ │ │ │ ├── Wrap_UnityEditor_EventManipulationHandler.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_GUISlideGroup.cs │ │ │ │ │ ├── Wrap_UnityEditor_GUISlideGroup.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_LogEntries.cs │ │ │ │ │ ├── Wrap_UnityEditor_LogEntries.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_LogEntry.cs │ │ │ │ │ ├── Wrap_UnityEditor_LogEntry.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_MaterialEditor.cs │ │ │ │ │ ├── Wrap_UnityEditor_MaterialEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_ModelImporterClipEditor.cs │ │ │ │ │ ├── Wrap_UnityEditor_ModelImporterClipEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_ModelImporterClipEditor_ClipInformation.cs │ │ │ │ │ ├── Wrap_UnityEditor_ModelImporterClipEditor_ClipInformation.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_PropertyEditor.cs │ │ │ │ │ ├── Wrap_UnityEditor_PropertyEditor.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_TextCore_LowLevel_FontEngineEditorUtilities.cs │ │ │ │ │ ├── Wrap_UnityEditor_TextCore_LowLevel_FontEngineEditorUtilities.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_TextureImportPlatformSettings.cs │ │ │ │ │ ├── Wrap_UnityEditor_TextureImportPlatformSettings.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_TextureImportPlatformSettingsData.cs │ │ │ │ │ ├── Wrap_UnityEditor_TextureImportPlatformSettingsData.cs.meta │ │ │ │ │ ├── Wrap_UnityEditor_TextureImporterInspector.cs │ │ │ │ │ ├── Wrap_UnityEditor_TextureImporterInspector.cs.meta │ │ │ │ │ ├── Wrap_UnityEngine_GUISkin.cs │ │ │ │ │ ├── Wrap_UnityEngine_GUISkin.cs.meta │ │ │ │ │ ├── Wrap_UnityEngine_GUIUtility.cs │ │ │ │ │ ├── Wrap_UnityEngine_GUIUtility.cs.meta │ │ │ │ │ ├── Wrap_UnityEngine_TextCore_LowLevel_FontEngine.cs │ │ │ │ │ ├── Wrap_UnityEngine_TextCore_LowLevel_FontEngine.cs.meta │ │ │ │ │ ├── Wrap_UnityEngine_TextEditor.cs │ │ │ │ │ └── Wrap_UnityEngine_TextEditor.cs.meta │ │ │ │ ├── MonoHook.meta │ │ │ │ ├── MonoHook │ │ │ │ │ ├── HookPool.cs │ │ │ │ │ ├── HookPool.cs.meta │ │ │ │ │ ├── IL2CPPHelper.cs │ │ │ │ │ ├── IL2CPPHelper.cs.meta │ │ │ │ │ ├── LDasm.cs │ │ │ │ │ ├── LDasm.cs.meta │ │ │ │ │ ├── MethodHook.cs │ │ │ │ │ ├── MethodHook.cs.meta │ │ │ │ │ ├── MonoHookInstaller.cs │ │ │ │ │ └── MonoHookInstaller.cs.meta │ │ │ │ ├── ReflectionTool.cs │ │ │ │ └── ReflectionTool.cs.meta │ │ │ ├── SharedObjectPool.cs │ │ │ ├── SharedObjectPool.cs.meta │ │ │ ├── UnityMacro.cs │ │ │ ├── UnityMacro.cs.meta │ │ │ ├── Utils.Collection.cs │ │ │ ├── Utils.Collection.cs.meta │ │ │ ├── Utils.Misc.cs │ │ │ ├── Utils.Misc.cs.meta │ │ │ ├── Utils.Reflection.cs │ │ │ ├── Utils.Reflection.cs.meta │ │ │ ├── Utils.String.cs │ │ │ └── Utils.String.cs.meta │ │ ├── urs.utils.editor.asmdef │ │ └── urs.utils.editor.asmdef.meta │ ├── YooAsset.meta │ ├── YooAsset │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AssetBundleDebugger.meta │ │ │ ├── AssetBundleDebugger │ │ │ │ ├── AssetBundleDebuggerWindow.cs │ │ │ │ ├── AssetBundleDebuggerWindow.cs.meta │ │ │ │ ├── AssetBundleDebuggerWindow.uxml │ │ │ │ ├── AssetBundleDebuggerWindow.uxml.meta │ │ │ │ ├── VisualViewers.meta │ │ │ │ └── VisualViewers │ │ │ │ │ ├── AssetListDebuggerViewer.cs │ │ │ │ │ ├── AssetListDebuggerViewer.cs.meta │ │ │ │ │ ├── AssetListDebuggerViewer.uxml │ │ │ │ │ ├── AssetListDebuggerViewer.uxml.meta │ │ │ │ │ ├── BundleListDebuggerViewer.cs │ │ │ │ │ ├── BundleListDebuggerViewer.cs.meta │ │ │ │ │ ├── BundleListDebuggerViewer.uxml │ │ │ │ │ └── BundleListDebuggerViewer.uxml.meta │ │ │ ├── AssetDependencyTree.cs │ │ │ ├── AssetDependencyTree.cs.meta │ │ │ ├── AssetbundleUtilities.cs │ │ │ ├── AssetbundleUtilities.cs.meta │ │ │ ├── Build.cs │ │ │ ├── Build.cs.meta │ │ │ ├── BuildTask.meta │ │ │ ├── BuildTask │ │ │ │ ├── BuidTaskBuildPatch.cs │ │ │ │ ├── BuidTaskBuildPatch.cs.meta │ │ │ │ ├── BuilTaskRecoverAssetDatabaseAutoSave.cs │ │ │ │ ├── BuilTaskRecoverAssetDatabaseAutoSave.cs.meta │ │ │ │ ├── BuildTask.cs │ │ │ │ ├── BuildTask.cs.meta │ │ │ │ ├── BuildTaskAfterShaderComplier.cs │ │ │ │ ├── BuildTaskAfterShaderComplier.cs.meta │ │ │ │ ├── BuildTaskAppId.cs │ │ │ │ ├── BuildTaskAppId.cs.meta │ │ │ │ ├── BuildTaskBeforeShaderComplier.cs │ │ │ │ ├── BuildTaskBeforeShaderComplier.cs.meta │ │ │ │ ├── BuildTaskBuidBundle.cs │ │ │ │ ├── BuildTaskBuidBundle.cs.meta │ │ │ │ ├── BuildTaskBuildPlayer.cs │ │ │ │ ├── BuildTaskBuildPlayer.cs.meta │ │ │ │ ├── BuildTaskBuildRaw.cs │ │ │ │ ├── BuildTaskBuildRaw.cs.meta │ │ │ │ ├── BuildTaskChannelRouter.cs │ │ │ │ ├── BuildTaskChannelRouter.cs.meta │ │ │ │ ├── BuildTaskClearTargetVersion.cs │ │ │ │ ├── BuildTaskClearTargetVersion.cs.meta │ │ │ │ ├── BuildTaskCollectAsset.cs │ │ │ │ ├── BuildTaskCollectAsset.cs.meta │ │ │ │ ├── BuildTaskCopyAsssetBundle.cs │ │ │ │ ├── BuildTaskCopyAsssetBundle.cs.meta │ │ │ │ ├── BuildTaskCopyLatestResourceToStreamAsset.cs │ │ │ │ ├── BuildTaskCopyLatestResourceToStreamAsset.cs.meta │ │ │ │ ├── BuildTaskDiableAssetDatabaseAutoSave.cs │ │ │ │ ├── BuildTaskDiableAssetDatabaseAutoSave.cs.meta │ │ │ │ ├── BuildTaskExportShaderVariantCollection.cs │ │ │ │ ├── BuildTaskExportShaderVariantCollection.cs.meta │ │ │ │ ├── BuildTaskGenerateBundleLayout.cs │ │ │ │ ├── BuildTaskGenerateBundleLayout.cs.meta │ │ │ │ ├── BuildTaskGenerateVersion.cs │ │ │ │ ├── BuildTaskGenerateVersion.cs.meta │ │ │ │ ├── BuildTaskOptimizeShareAssetBundleName.cs │ │ │ │ ├── BuildTaskOptimizeShareAssetBundleName.cs.meta │ │ │ │ ├── BuildTaskReBuildAssetBundle.cs │ │ │ │ ├── BuildTaskReBuildAssetBundle.cs.meta │ │ │ │ ├── BuildTaskRegenerateAssetBundleName.cs │ │ │ │ ├── BuildTaskRegenerateAssetBundleName.cs.meta │ │ │ │ ├── BuildTaskShowAssetBundleBrowser.cs │ │ │ │ ├── BuildTaskShowAssetBundleBrowser.cs.meta │ │ │ │ ├── BuildTaskStripSpriteInAtlas.cs │ │ │ │ ├── BuildTaskStripSpriteInAtlas.cs.meta │ │ │ │ ├── BuildTaskUpdateCollection.cs │ │ │ │ ├── BuildTaskUpdateCollection.cs.meta │ │ │ │ ├── BuildTaskValidateAnimation.cs │ │ │ │ ├── BuildTaskValidateAnimation.cs.meta │ │ │ │ ├── BuildTaskValidateMaterial.cs │ │ │ │ ├── BuildTaskValidateMaterial.cs.meta │ │ │ │ ├── BuildTaskValidateModel.cs │ │ │ │ ├── BuildTaskValidateModel.cs.meta │ │ │ │ ├── BuildTaskValidateParticleSystem.cs │ │ │ │ ├── BuildTaskValidateParticleSystem.cs.meta │ │ │ │ ├── BuildTaskWorkSpace.cs │ │ │ │ ├── BuildTaskWorkSpace.cs.meta │ │ │ │ ├── SBPTask.meta │ │ │ │ ├── SBPTask │ │ │ │ │ ├── BuidTaskCheckBundleHash.cs │ │ │ │ │ ├── BuidTaskCheckBundleHash.cs.meta │ │ │ │ │ ├── BuildLayout.cs │ │ │ │ │ ├── BuildLayout.cs.meta │ │ │ │ │ ├── BuildLayoutGenerationTask.cs │ │ │ │ │ ├── BuildLayoutGenerationTask.cs.meta │ │ │ │ │ ├── BuildLayoutPrinter.cs │ │ │ │ │ ├── BuildLayoutPrinter.cs.meta │ │ │ │ │ ├── ExtractDataTask.cs │ │ │ │ │ └── ExtractDataTask.cs.meta │ │ │ │ ├── bundle_circle.html.template │ │ │ │ ├── bundle_circle.html.template.meta │ │ │ │ ├── bundle_size.html.template │ │ │ │ └── bundle_size.html.template.meta │ │ │ ├── BuildTaskAwaitable.cs │ │ │ ├── BuildTaskAwaitable.cs.meta │ │ │ ├── BuildTaskProcess.cs │ │ │ ├── BuildTaskProcess.cs.meta │ │ │ ├── BuildTaskUploadCDN.cs │ │ │ ├── BuildTaskUploadCDN.cs.meta │ │ │ ├── CommandLine.Build.cs │ │ │ ├── CommandLine.Build.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ │ ├── URSCore.meta │ │ │ │ └── URSCore │ │ │ │ │ ├── VersionBuilder.cs │ │ │ │ │ └── VersionBuilder.cs.meta │ │ │ ├── EditorDefine.cs │ │ │ ├── EditorDefine.cs.meta │ │ │ ├── Menu.meta │ │ │ ├── Menu │ │ │ │ ├── BuildResourceAndIL2CPPAndroidProject.cs │ │ │ │ ├── BuildResourceAndIL2CPPAndroidProject.cs.meta │ │ │ │ ├── BuildResourceAndIL2CPPPlayer.cs │ │ │ │ ├── BuildResourceAndIL2CPPPlayer.cs.meta │ │ │ │ ├── BuildResourceAndMonoAndroidProject.cs │ │ │ │ ├── BuildResourceAndMonoAndroidProject.cs.meta │ │ │ │ ├── BuildResourceAndMonoPlayer.cs │ │ │ │ ├── BuildResourceAndMonoPlayer.cs.meta │ │ │ │ ├── ExportRuntimeSetting.cs │ │ │ │ ├── ExportRuntimeSetting.cs.meta │ │ │ │ ├── HybridBuild.cs │ │ │ │ ├── HybridBuild.cs.meta │ │ │ │ ├── ValidateAasset.cs │ │ │ │ ├── ValidateAasset.cs.meta │ │ │ │ ├── VersionAndCDN.cs │ │ │ │ └── VersionAndCDN.cs.meta │ │ │ ├── PlatformMappingService.cs │ │ │ ├── PlatformMappingService.cs.meta │ │ │ ├── SimpleExec.meta │ │ │ ├── SimpleExec │ │ │ │ ├── Command.cs │ │ │ │ ├── Command.cs.meta │ │ │ │ ├── ExitCodeException.cs │ │ │ │ ├── ExitCodeException.cs.meta │ │ │ │ ├── ExitCodeReadException.cs │ │ │ │ ├── ExitCodeReadException.cs.meta │ │ │ │ ├── ProcessExtensions.cs │ │ │ │ ├── ProcessExtensions.cs.meta │ │ │ │ ├── ProcessStartInfo.cs │ │ │ │ └── ProcessStartInfo.cs.meta │ │ │ ├── TagRule.cs │ │ │ ├── TagRule.cs.meta │ │ │ ├── TagRulePropertyDrawer.cs │ │ │ ├── TagRulePropertyDrawer.cs.meta │ │ │ ├── UnityIO.meta │ │ │ └── UnityIO │ │ │ │ ├── AssetDatabase.cs │ │ │ │ ├── AssetDatabase.cs.meta │ │ │ │ ├── Directory.cs │ │ │ │ ├── Directory.cs.meta │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── ContextMenus.cs │ │ │ │ ├── ContextMenus.cs.meta │ │ │ │ ├── Unit Tests.meta │ │ │ │ └── Unit Tests │ │ │ │ │ ├── ConditionalProgressTests.cs │ │ │ │ │ ├── ConditionalProgressTests.cs.meta │ │ │ │ │ ├── ConvertPathTests.cs │ │ │ │ │ ├── ConvertPathTests.cs.meta │ │ │ │ │ ├── CreatingDirectoryTests.cs │ │ │ │ │ ├── CreatingDirectoryTests.cs.meta │ │ │ │ │ ├── DirectoryChangesTests.cs │ │ │ │ │ ├── DirectoryChangesTests.cs.meta │ │ │ │ │ ├── Documention.cs │ │ │ │ │ ├── Documention.cs.meta │ │ │ │ │ ├── EnumerationTests.cs │ │ │ │ │ ├── EnumerationTests.cs.meta │ │ │ │ │ ├── FileChangesTests.cs │ │ │ │ │ ├── FileChangesTests.cs.meta │ │ │ │ │ ├── GetFilesTests.cs │ │ │ │ │ ├── GetFilesTests.cs.meta │ │ │ │ │ ├── Loading Assets.meta │ │ │ │ │ ├── Loading Assets │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ │ ├── Died.anim │ │ │ │ │ │ ├── Died.anim.meta │ │ │ │ │ │ ├── Hit.anim │ │ │ │ │ │ ├── Hit.anim.meta │ │ │ │ │ │ ├── Player Attack.anim │ │ │ │ │ │ └── Player Attack.anim.meta │ │ │ │ │ ├── GUISkins.meta │ │ │ │ │ ├── GUISkins │ │ │ │ │ │ ├── Dark Skin.guiskin │ │ │ │ │ │ ├── Dark Skin.guiskin.meta │ │ │ │ │ │ ├── Light Skin.guiskin │ │ │ │ │ │ └── Light Skin.guiskin.meta │ │ │ │ │ ├── Misc Animation.anim │ │ │ │ │ ├── Misc Animation.anim.meta │ │ │ │ │ ├── Misc Prefab.prefab │ │ │ │ │ ├── Misc Prefab.prefab.meta │ │ │ │ │ ├── Misc Skin.guiskin │ │ │ │ │ ├── Misc Skin.guiskin.meta │ │ │ │ │ ├── Prefabs.meta │ │ │ │ │ └── Prefabs │ │ │ │ │ │ ├── Player Character.prefab │ │ │ │ │ │ ├── Player Character.prefab.meta │ │ │ │ │ │ ├── Weapon.prefab │ │ │ │ │ │ └── Weapon.prefab.meta │ │ │ │ │ ├── PathValidationTests.cs │ │ │ │ │ ├── PathValidationTests.cs.meta │ │ │ │ │ ├── UnityIOTestBase.cs │ │ │ │ │ └── UnityIOTestBase.cs.meta │ │ │ │ ├── Exceptions.cs │ │ │ │ ├── Exceptions.cs.meta │ │ │ │ ├── File.cs │ │ │ │ ├── File.cs.meta │ │ │ │ ├── Files.cs │ │ │ │ ├── Files.cs.meta │ │ │ │ ├── Interfaces.meta │ │ │ │ ├── Interfaces │ │ │ │ ├── IDirectory.cs │ │ │ │ ├── IDirectory.cs.meta │ │ │ │ ├── IFile.cs │ │ │ │ ├── IFile.cs.meta │ │ │ │ ├── IFiles.cs │ │ │ │ └── IFiles.cs.meta │ │ │ │ ├── NullFile.cs │ │ │ │ ├── NullFile.cs.meta │ │ │ │ ├── UnityIO.cs │ │ │ │ └── UnityIO.cs.meta │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── YooAssetSetting.asset │ │ │ └── YooAssetSetting.asset.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── AssetSystem.meta │ │ │ ├── AssetSystem │ │ │ ├── AppVersionRouter.cs │ │ │ ├── AppVersionRouter.cs.meta │ │ │ ├── AssetPathHelper.cs │ │ │ ├── AssetPathHelper.cs.meta │ │ │ ├── AssetSystem.cs │ │ │ ├── AssetSystem.cs.meta │ │ │ ├── BundleInfo.cs │ │ │ ├── BundleInfo.cs.meta │ │ │ ├── EDecryptMethod.cs │ │ │ ├── EDecryptMethod.cs.meta │ │ │ ├── Handles.meta │ │ │ ├── Handles │ │ │ │ ├── AssetOperationHandle.cs │ │ │ │ ├── AssetOperationHandle.cs.meta │ │ │ │ ├── OperationHandleBase.cs │ │ │ │ ├── OperationHandleBase.cs.meta │ │ │ │ ├── SceneOperationHandle.cs │ │ │ │ ├── SceneOperationHandle.cs.meta │ │ │ │ ├── SubAssetsOperationHandle.cs │ │ │ │ └── SubAssetsOperationHandle.cs.meta │ │ │ ├── IBundleServices.cs │ │ │ ├── IBundleServices.cs.meta │ │ │ ├── IDecryptServices.cs │ │ │ ├── IDecryptServices.cs.meta │ │ │ ├── Instance.meta │ │ │ ├── Loader.meta │ │ │ ├── Loader │ │ │ │ ├── AssetBundleLoader.cs │ │ │ │ ├── AssetBundleLoader.cs.meta │ │ │ │ ├── AssetBundleOccupyPersistentFileTraceManager.cs │ │ │ │ ├── AssetBundleOccupyPersistentFileTraceManager.cs.meta │ │ │ │ ├── DependAssetBundleGrouper.cs │ │ │ │ └── DependAssetBundleGrouper.cs.meta │ │ │ ├── LocalFileInfo.cs │ │ │ ├── LocalFileInfo.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── Operations │ │ │ │ ├── InstantiateOperation.cs │ │ │ │ ├── InstantiateOperation.cs.meta │ │ │ │ ├── UnloadSceneOperation.cs │ │ │ │ └── UnloadSceneOperation.cs.meta │ │ │ ├── Provider.meta │ │ │ └── Provider │ │ │ │ ├── BundledAssetProvider.cs │ │ │ │ ├── BundledAssetProvider.cs.meta │ │ │ │ ├── BundledProvider.cs │ │ │ │ ├── BundledProvider.cs.meta │ │ │ │ ├── BundledSceneProvider.cs │ │ │ │ ├── BundledSceneProvider.cs.meta │ │ │ │ ├── BundledSubAssetsProvider.cs │ │ │ │ ├── BundledSubAssetsProvider.cs.meta │ │ │ │ ├── DatabaseAssetProvider.cs │ │ │ │ ├── DatabaseAssetProvider.cs.meta │ │ │ │ ├── DatabaseSceneProvider.cs │ │ │ │ ├── DatabaseSceneProvider.cs.meta │ │ │ │ ├── DatabaseSubAssetsProvider.cs │ │ │ │ ├── DatabaseSubAssetsProvider.cs.meta │ │ │ │ ├── ProviderBase.cs │ │ │ │ └── ProviderBase.cs.meta │ │ │ ├── Core.meta │ │ │ ├── Core │ │ │ ├── IO.meta │ │ │ ├── IO │ │ │ │ ├── DirectoriesManager.cs │ │ │ │ ├── DirectoriesManager.cs.meta │ │ │ │ ├── FilePath.cs │ │ │ │ ├── FilePath.cs.meta │ │ │ │ ├── FileSystem.cs │ │ │ │ ├── FileSystem.cs.meta │ │ │ │ ├── FilesManager.cs │ │ │ │ ├── FilesManager.cs.meta │ │ │ │ ├── IFileSystem.cs │ │ │ │ ├── IFileSystem.cs.meta │ │ │ │ ├── LocalFileInfo.cs │ │ │ │ ├── LocalFileInfo.cs.meta │ │ │ │ ├── PathsManager.cs │ │ │ │ └── PathsManager.cs.meta │ │ │ ├── Octodiff.meta │ │ │ ├── Octodiff │ │ │ │ ├── Adler32RollingChecksum.cs │ │ │ │ ├── Adler32RollingChecksum.cs.meta │ │ │ │ ├── AggregateCopyOperationsDecorator.cs │ │ │ │ ├── AggregateCopyOperationsDecorator.cs.meta │ │ │ │ ├── BinaryComparer.cs │ │ │ │ ├── BinaryComparer.cs.meta │ │ │ │ ├── BinaryDeltaReader.cs │ │ │ │ ├── BinaryDeltaReader.cs.meta │ │ │ │ ├── BinaryDeltaWriter.cs │ │ │ │ ├── BinaryDeltaWriter.cs.meta │ │ │ │ ├── BinaryFormat.cs │ │ │ │ ├── BinaryFormat.cs.meta │ │ │ │ ├── ChunkSignature.cs │ │ │ │ ├── ChunkSignature.cs.meta │ │ │ │ ├── ChunkSignatureChecksumComparer.cs │ │ │ │ ├── ChunkSignatureChecksumComparer.cs.meta │ │ │ │ ├── CompatibilityException.cs │ │ │ │ ├── CompatibilityException.cs.meta │ │ │ │ ├── ConsoleProgressReporter.cs │ │ │ │ ├── ConsoleProgressReporter.cs.meta │ │ │ │ ├── CorruptFileFormatException.cs │ │ │ │ ├── CorruptFileFormatException.cs.meta │ │ │ │ ├── DataRange.cs │ │ │ │ ├── DataRange.cs.meta │ │ │ │ ├── DeltaApplier.cs │ │ │ │ ├── DeltaApplier.cs.meta │ │ │ │ ├── DeltaBuilder.cs │ │ │ │ ├── DeltaBuilder.cs.meta │ │ │ │ ├── DeltaFileApplier.cs │ │ │ │ ├── DeltaFileApplier.cs.meta │ │ │ │ ├── DeltaFileBuilder.cs │ │ │ │ ├── DeltaFileBuilder.cs.meta │ │ │ │ ├── DeltaStatistics.cs │ │ │ │ ├── DeltaStatistics.cs.meta │ │ │ │ ├── HashAlgorithmWrapper.cs │ │ │ │ ├── HashAlgorithmWrapper.cs.meta │ │ │ │ ├── IDeltaReader.cs │ │ │ │ ├── IDeltaReader.cs.meta │ │ │ │ ├── IDeltaWriter.cs │ │ │ │ ├── IDeltaWriter.cs.meta │ │ │ │ ├── IHashAlgorithm.cs │ │ │ │ ├── IHashAlgorithm.cs.meta │ │ │ │ ├── IProgressReporter.cs │ │ │ │ ├── IProgressReporter.cs.meta │ │ │ │ ├── IRollingChecksum.cs │ │ │ │ ├── IRollingChecksum.cs.meta │ │ │ │ ├── ISignatureReader.cs │ │ │ │ ├── ISignatureReader.cs.meta │ │ │ │ ├── ISignatureWriter.cs │ │ │ │ ├── ISignatureWriter.cs.meta │ │ │ │ ├── NullProgressReporter.cs │ │ │ │ ├── NullProgressReporter.cs.meta │ │ │ │ ├── Signature.cs │ │ │ │ ├── Signature.cs.meta │ │ │ │ ├── SignatureBuilder.cs │ │ │ │ ├── SignatureBuilder.cs.meta │ │ │ │ ├── SignatureReader.cs │ │ │ │ ├── SignatureReader.cs.meta │ │ │ │ ├── SupportedAlgorithms.cs │ │ │ │ ├── SupportedAlgorithms.cs.meta │ │ │ │ ├── UsageException.cs │ │ │ │ └── UsageException.cs.meta │ │ │ ├── URSCore.meta │ │ │ ├── URSCore │ │ │ │ ├── BuidVersion.cs │ │ │ │ ├── BuidVersion.cs.meta │ │ │ │ ├── DownloadInfo.cs │ │ │ │ └── DownloadInfo.cs.meta │ │ │ ├── Utilities.meta │ │ │ └── Utilities │ │ │ │ ├── FormatUtility.cs │ │ │ │ ├── FormatUtility.cs.meta │ │ │ │ ├── Hashing.cs │ │ │ │ ├── Hashing.cs.meta │ │ │ │ ├── Rijndael.cs │ │ │ │ └── Rijndael.cs.meta │ │ │ ├── Debugger.meta │ │ │ ├── Debugger │ │ │ ├── DebugBundleInfo.cs │ │ │ ├── DebugBundleInfo.cs.meta │ │ │ ├── DebugProviderInfo.cs │ │ │ ├── DebugProviderInfo.cs.meta │ │ │ ├── DebugReport.cs │ │ │ └── DebugReport.cs.meta │ │ │ ├── Logger.meta │ │ │ ├── Logger │ │ │ ├── Logger.cs │ │ │ └── Logger.cs.meta │ │ │ ├── OperationSystem.meta │ │ │ ├── OperationSystem │ │ │ ├── AsyncOperationBase.cs │ │ │ ├── AsyncOperationBase.cs.meta │ │ │ ├── EOperationStatus.cs │ │ │ ├── EOperationStatus.cs.meta │ │ │ ├── OperationSystem.cs │ │ │ └── OperationSystem.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── PatchSystem.meta │ │ │ ├── PatchSystem │ │ │ ├── AppFootPrint.cs │ │ │ ├── AppFootPrint.cs.meta │ │ │ ├── BundleMeta.cs │ │ │ ├── BundleMeta.cs.meta │ │ │ ├── Download.meta │ │ │ ├── Download │ │ │ │ ├── HttpDownloader.cs │ │ │ │ ├── HttpDownloader.cs.meta │ │ │ │ ├── RemoteDownloadSystem.cs │ │ │ │ ├── RemoteDownloadSystem.cs.meta │ │ │ │ ├── RemoteDownloader.cs │ │ │ │ ├── RemoteDownloader.cs.meta │ │ │ │ ├── ThreadSyncContext.cs │ │ │ │ ├── ThreadSyncContext.cs.meta │ │ │ │ ├── UnityWebRequester.cs │ │ │ │ ├── UnityWebRequester.cs.meta │ │ │ │ ├── UnzipSystem.cs │ │ │ │ ├── UnzipSystem.cs.meta │ │ │ │ ├── Unziper.cs │ │ │ │ └── Unziper.cs.meta │ │ │ ├── FileMeta.cs │ │ │ ├── FileMeta.cs.meta │ │ │ ├── Operations.meta │ │ │ ├── Operations │ │ │ │ ├── InitializationOperation.cs │ │ │ │ ├── InitializationOperation.cs.meta │ │ │ │ ├── RemoteUpdateOperation.cs │ │ │ │ ├── RemoteUpdateOperation.cs.meta │ │ │ │ ├── UnzipOperation.cs │ │ │ │ ├── UnzipOperation.cs.meta │ │ │ │ ├── UpdateManifestOperation.cs │ │ │ │ └── UpdateManifestOperation.cs.meta │ │ │ ├── PatchAsset.cs │ │ │ ├── PatchAsset.cs.meta │ │ │ ├── PatchBundle.cs │ │ │ ├── PatchBundle.cs.meta │ │ │ ├── PatchHelper.cs │ │ │ ├── PatchHelper.cs.meta │ │ │ ├── PatchManifest.cs │ │ │ ├── PatchManifest.cs.meta │ │ │ ├── PlayMode.meta │ │ │ ├── PlayMode │ │ │ │ ├── EditorPlayModeImpl.cs │ │ │ │ ├── EditorPlayModeImpl.cs.meta │ │ │ │ ├── HostPlayModeImpl.cs │ │ │ │ ├── HostPlayModeImpl.cs.meta │ │ │ │ ├── OfflinePlayModeImpl.cs │ │ │ │ ├── OfflinePlayModeImpl.cs.meta │ │ │ │ ├── ShareUtil.cs │ │ │ │ └── ShareUtil.cs.meta │ │ │ ├── URSFileSystem.cs │ │ │ └── URSFileSystem.cs.meta │ │ │ ├── ResourceSetting.meta │ │ │ ├── ResourceSetting │ │ │ ├── ResourceSetting.cs │ │ │ ├── ResourceSetting.cs.meta │ │ │ ├── ResourceSettingData.cs │ │ │ └── ResourceSettingData.cs.meta │ │ │ ├── ShaderVariantCollection.cs │ │ │ ├── ShaderVariantCollection.cs.meta │ │ │ ├── Utility.meta │ │ │ ├── Utility │ │ │ ├── AssemblyUtility.cs │ │ │ ├── AssemblyUtility.cs.meta │ │ │ ├── FileUtility.cs │ │ │ ├── FileUtility.cs.meta │ │ │ ├── HashUtility.cs │ │ │ ├── HashUtility.cs.meta │ │ │ ├── Misc.meta │ │ │ ├── Misc │ │ │ │ ├── BitMask32.cs │ │ │ │ ├── BitMask32.cs.meta │ │ │ │ ├── BitMask64.cs │ │ │ │ ├── BitMask64.cs.meta │ │ │ │ ├── CRC32Algorithm.cs │ │ │ │ └── CRC32Algorithm.cs.meta │ │ │ ├── PlatformMappingService.cs │ │ │ ├── PlatformMappingService.cs.meta │ │ │ ├── StringUtility.cs │ │ │ └── StringUtility.cs.meta │ │ │ ├── YooAssetDriver.cs │ │ │ ├── YooAssetDriver.cs.meta │ │ │ ├── YooAssets.cs │ │ │ └── YooAssets.cs.meta │ ├── xxHash.meta │ └── xxHash │ │ ├── Utils.cs │ │ ├── Utils.cs.meta │ │ ├── __inline__xxHash32.cs │ │ ├── __inline__xxHash32.cs.meta │ │ ├── __inline__xxHash64.cs │ │ ├── __inline__xxHash64.cs.meta │ │ ├── xxHash128.XXH.cs │ │ ├── xxHash128.XXH.cs.meta │ │ ├── xxHash128.XXH3.cs │ │ ├── xxHash128.XXH3.cs.meta │ │ ├── xxHash128.XXH64.cs │ │ ├── xxHash128.XXH64.cs.meta │ │ ├── xxHash128.cs │ │ ├── xxHash128.cs.meta │ │ ├── xxHash3.XXH.cs │ │ ├── xxHash3.XXH.cs.meta │ │ ├── xxHash3.XXH3.cs │ │ ├── xxHash3.XXH3.cs.meta │ │ ├── xxHash3.XXH64.cs │ │ ├── xxHash3.XXH64.cs.meta │ │ ├── xxHash3.cs │ │ ├── xxHash3.cs.meta │ │ ├── xxHash32.XXH.cs │ │ ├── xxHash32.XXH.cs.meta │ │ ├── xxHash32.XXH32.cs │ │ ├── xxHash32.XXH32.cs.meta │ │ ├── xxHash32.cs │ │ ├── xxHash32.cs.meta │ │ ├── xxHash64.XXH.cs │ │ ├── xxHash64.XXH.cs.meta │ │ ├── xxHash64.XXH64.cs │ │ ├── xxHash64.XXH64.cs.meta │ │ ├── xxHash64.cs │ │ └── xxHash64.cs.meta ├── Untitle.unity └── Untitle.unity.meta ├── Packages ├── com.unity.scriptablebuildpipeline@1.20.2 │ ├── .signature │ ├── CHANGELOG.md │ ├── CHANGELOG.md.meta │ ├── Documentation~ │ │ ├── BuildLogger.md │ │ ├── BuildLogger.md.meta │ │ ├── CacheServerClient.md │ │ ├── CacheServerClient.md.meta │ │ ├── GettingStarted.md │ │ ├── GettingStarted.md.meta │ │ ├── TableofContents.md │ │ ├── TableofContents.md.meta │ │ ├── Terminology.md │ │ ├── Terminology.md.meta │ │ ├── UpgradeGuide.md │ │ ├── UpgradeGuide.md.meta │ │ ├── UsageExamples.md │ │ ├── UsageExamples.md.meta │ │ ├── index.md │ │ └── index.md.meta │ ├── Editor.meta │ ├── Editor │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── CacheServer.meta │ │ ├── CacheServer │ │ │ ├── CacheServerUploader.cs │ │ │ ├── CacheServerUploader.cs.meta │ │ │ ├── CacheServerUploaderWindow.cs │ │ │ ├── CacheServerUploaderWindow.cs.meta │ │ │ ├── Client.cs │ │ │ ├── Client.cs.meta │ │ │ ├── FileDownloadItem.cs │ │ │ ├── FileDownloadItem.cs.meta │ │ │ ├── IDownloadItem.cs │ │ │ ├── IDownloadItem.cs.meta │ │ │ ├── UnityEditor.CacheServer.asmdef │ │ │ ├── UnityEditor.CacheServer.asmdef.meta │ │ │ ├── Util.cs │ │ │ └── Util.cs.meta │ │ ├── CompatibilityBuildPipeline.cs │ │ ├── CompatibilityBuildPipeline.cs.meta │ │ ├── ContentPipeline.cs │ │ ├── ContentPipeline.cs.meta │ │ ├── Injector.meta │ │ ├── Injector │ │ │ ├── ContextInjector.cs │ │ │ └── ContextInjector.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IAssetRepresentationData.cs │ │ │ ├── IAssetRepresentationData.cs.meta │ │ │ ├── IBuildCache.cs │ │ │ ├── IBuildCache.cs.meta │ │ │ ├── IBuildContent.cs │ │ │ ├── IBuildContent.cs.meta │ │ │ ├── IBuildContext.cs │ │ │ ├── IBuildContext.cs.meta │ │ │ ├── IBuildLog.cs │ │ │ ├── IBuildLog.cs.meta │ │ │ ├── IBuildParameters.cs │ │ │ ├── IBuildParameters.cs.meta │ │ │ ├── IBuildResults.cs │ │ │ ├── IBuildResults.cs.meta │ │ │ ├── IBuildSpriteData.cs │ │ │ ├── IBuildSpriteData.cs.meta │ │ │ ├── IBuildTasks.cs │ │ │ ├── IBuildTasks.cs.meta │ │ │ ├── IBundleExplictObjectLayout.cs │ │ │ ├── IBundleExplictObjectLayout.cs.meta │ │ │ ├── IDependencyData.cs │ │ │ ├── IDependencyData.cs.meta │ │ │ ├── IDeterministicIdentifiers.cs │ │ │ ├── IDeterministicIdentifiers.cs.meta │ │ │ ├── IProgressTracker.cs │ │ │ ├── IProgressTracker.cs.meta │ │ │ ├── IWriteData.cs │ │ │ ├── IWriteData.cs.meta │ │ │ ├── IWriteOperation.cs │ │ │ └── IWriteOperation.cs.meta │ │ ├── Profiler.meta │ │ ├── Profiler │ │ │ ├── BuildProfiler.cs │ │ │ └── BuildProfiler.cs.meta │ │ ├── ReturnCode.cs │ │ ├── ReturnCode.cs.meta │ │ ├── Shared.meta │ │ ├── Shared │ │ │ ├── BuildCallbacks.cs │ │ │ ├── BuildCallbacks.cs.meta │ │ │ ├── BuildContent.cs │ │ │ ├── BuildContent.cs.meta │ │ │ ├── BuildContext.cs │ │ │ ├── BuildContext.cs.meta │ │ │ ├── BuildDependencyData.cs │ │ │ ├── BuildDependencyData.cs.meta │ │ │ ├── BuildExtendedAssetData.cs │ │ │ ├── BuildExtendedAssetData.cs.meta │ │ │ ├── BuildParameters.cs │ │ │ ├── BuildParameters.cs.meta │ │ │ ├── BuildResults.cs │ │ │ ├── BuildResults.cs.meta │ │ │ ├── BuildSpriteData.cs │ │ │ ├── BuildSpriteData.cs.meta │ │ │ ├── BuildTasksRunner.cs │ │ │ ├── BuildTasksRunner.cs.meta │ │ │ ├── BuildWriteData.cs │ │ │ ├── BuildWriteData.cs.meta │ │ │ ├── BundleExplictObjectLayout.cs │ │ │ ├── BundleExplictObjectLayout.cs.meta │ │ │ ├── DefaultBuildTasks.cs │ │ │ ├── DefaultBuildTasks.cs.meta │ │ │ ├── LinearPackedIdentifiers.cs │ │ │ ├── LinearPackedIdentifiers.cs.meta │ │ │ ├── PrefabPackedIdentifiers.cs │ │ │ ├── PrefabPackedIdentifiers.cs.meta │ │ │ ├── Unity5PackedIdentifiers.cs │ │ │ └── Unity5PackedIdentifiers.cs.meta │ │ ├── Tasks.meta │ │ ├── Tasks │ │ │ ├── AppendBundleHash.cs │ │ │ ├── AppendBundleHash.cs.meta │ │ │ ├── ArchiveAndCompressBundles.cs │ │ │ ├── ArchiveAndCompressBundles.cs.meta │ │ │ ├── BuildPlayerScripts.cs │ │ │ ├── BuildPlayerScripts.cs.meta │ │ │ ├── CalculateAssetDependencyData.cs │ │ │ ├── CalculateAssetDependencyData.cs.meta │ │ │ ├── CalculateCustomDependencyData.cs │ │ │ ├── CalculateCustomDependencyData.cs.meta │ │ │ ├── CalculateSceneDependencyData.cs │ │ │ ├── CalculateSceneDependencyData.cs.meta │ │ │ ├── ClusterBuildLayout.cs │ │ │ ├── ClusterBuildLayout.cs.meta │ │ │ ├── CreateBuiltInShadersBundle.cs │ │ │ ├── CreateBuiltInShadersBundle.cs.meta │ │ │ ├── CreateMonoScriptBundle.cs │ │ │ ├── CreateMonoScriptBundle.cs.meta │ │ │ ├── GenerateBundleCommands.cs │ │ │ ├── GenerateBundleCommands.cs.meta │ │ │ ├── GenerateBundleMaps.cs │ │ │ ├── GenerateBundleMaps.cs.meta │ │ │ ├── GenerateBundlePacking.cs │ │ │ ├── GenerateBundlePacking.cs.meta │ │ │ ├── GenerateLinkXml.cs │ │ │ ├── GenerateLinkXml.cs.meta │ │ │ ├── GenerateSubAssetPathMaps.cs │ │ │ ├── GenerateSubAssetPathMaps.cs.meta │ │ │ ├── PostDependencyCallback.cs │ │ │ ├── PostDependencyCallback.cs.meta │ │ │ ├── PostPackingCallback.cs │ │ │ ├── PostPackingCallback.cs.meta │ │ │ ├── PostScriptsCallback.cs │ │ │ ├── PostScriptsCallback.cs.meta │ │ │ ├── PostWritingCallback.cs │ │ │ ├── PostWritingCallback.cs.meta │ │ │ ├── PreviewSceneDependencyData.cs │ │ │ ├── PreviewSceneDependencyData.cs.meta │ │ │ ├── RebuildSpriteAtlasCache.cs │ │ │ ├── RebuildSpriteAtlasCache.cs.meta │ │ │ ├── StripUnusedSpriteSources.cs │ │ │ ├── StripUnusedSpriteSources.cs.meta │ │ │ ├── SwitchToBuildPlatform.cs │ │ │ ├── SwitchToBuildPlatform.cs.meta │ │ │ ├── UpdateBundleObjectLayout.cs │ │ │ ├── UpdateBundleObjectLayout.cs.meta │ │ │ ├── WriteSerializedFiles.cs │ │ │ └── WriteSerializedFiles.cs.meta │ │ ├── Unity.ScriptableBuildPipeline.Editor.asmdef │ │ ├── Unity.ScriptableBuildPipeline.Editor.asmdef.meta │ │ ├── Utilities.meta │ │ ├── Utilities │ │ │ ├── BuildCache.cs │ │ │ ├── BuildCache.cs.meta │ │ │ ├── BuildCacheUtility.cs │ │ │ ├── BuildCacheUtility.cs.meta │ │ │ ├── BuildInterfacesWrapper.cs │ │ │ ├── BuildInterfacesWrapper.cs.meta │ │ │ ├── BuildLog.cs │ │ │ ├── BuildLog.cs.meta │ │ │ ├── BuildLogger.cs │ │ │ ├── BuildLogger.cs.meta │ │ │ ├── CacheEntry.cs │ │ │ ├── CacheEntry.cs.meta │ │ │ ├── CacheServerDownloader.cs │ │ │ ├── CacheServerDownloader.cs.meta │ │ │ ├── CacheServerUploader.cs │ │ │ ├── CacheServerUploader.cs.meta │ │ │ ├── CommonStrings.cs │ │ │ ├── CommonStrings.cs.meta │ │ │ ├── ContentFileIdentifiers.cs │ │ │ ├── ContentFileIdentifiers.cs.meta │ │ │ ├── ExtensionMethods.cs │ │ │ ├── ExtensionMethods.cs.meta │ │ │ ├── FileCompressor.cs │ │ │ ├── FileCompressor.cs.meta │ │ │ ├── GraphicsSettingsApi.cs │ │ │ ├── GraphicsSettingsApi.cs.meta │ │ │ ├── HashStream.cs │ │ │ ├── HashStream.cs.meta │ │ │ ├── HashingHelpers.cs │ │ │ ├── HashingHelpers.cs.meta │ │ │ ├── HashingMethods.cs │ │ │ ├── HashingMethods.cs.meta │ │ │ ├── LinkXMLGenerator.cs │ │ │ ├── LinkXMLGenerator.cs.meta │ │ │ ├── MD4.cs │ │ │ ├── MD4.cs.meta │ │ │ ├── PlayerSettingsApi.cs │ │ │ ├── PlayerSettingsApi.cs.meta │ │ │ ├── Preferences.cs │ │ │ ├── Preferences.cs.meta │ │ │ ├── ProgressLoggingTracker.cs │ │ │ ├── ProgressLoggingTracker.cs.meta │ │ │ ├── ProgressTracker.cs │ │ │ ├── ProgressTracker.cs.meta │ │ │ ├── QualitySettingsApi.cs │ │ │ ├── QualitySettingsApi.cs.meta │ │ │ ├── ReflectionExtensions.cs │ │ │ ├── ReflectionExtensions.cs.meta │ │ │ ├── SceneStateCleanup.cs │ │ │ ├── SceneStateCleanup.cs.meta │ │ │ ├── SpookyHash.cs │ │ │ ├── SpookyHash.cs.meta │ │ │ ├── TaskCachingUtility.cs │ │ │ ├── TaskCachingUtility.cs.meta │ │ │ ├── ThreadingManager.cs │ │ │ ├── ThreadingManager.cs.meta │ │ │ ├── TrackerExtensions.cs │ │ │ ├── TrackerExtensions.cs.meta │ │ │ ├── USerialize.meta │ │ │ ├── USerialize │ │ │ │ ├── DeSerializer.cs │ │ │ │ ├── DeSerializer.cs.meta │ │ │ │ ├── Serializer.cs │ │ │ │ ├── Serializer.cs.meta │ │ │ │ ├── USerialize.cs │ │ │ │ └── USerialize.cs.meta │ │ │ ├── USerializeTools.meta │ │ │ ├── USerializeTools │ │ │ │ ├── DumpToText.cs │ │ │ │ └── DumpToText.cs.meta │ │ │ ├── ValidationMethods.cs │ │ │ ├── ValidationMethods.cs.meta │ │ │ ├── VersionedCallbackAttribute.cs │ │ │ └── VersionedCallbackAttribute.cs.meta │ │ ├── WriteTypes.meta │ │ └── WriteTypes │ │ │ ├── AssetBundleWriteOperation.cs │ │ │ ├── AssetBundleWriteOperation.cs.meta │ │ │ ├── RawWriteOperation.cs │ │ │ ├── RawWriteOperation.cs.meta │ │ │ ├── SceneBundleWriteOperation.cs │ │ │ ├── SceneBundleWriteOperation.cs.meta │ │ │ ├── SceneDataWriteOperation.cs │ │ │ ├── SceneDataWriteOperation.cs.meta │ │ │ ├── SceneRawWriteOperation.cs │ │ │ └── SceneRawWriteOperation.cs.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.md │ ├── README.md.meta │ ├── Runtime.meta │ ├── Runtime │ │ ├── CompatibilityAssetBundleManifest.cs │ │ ├── CompatibilityAssetBundleManifest.cs.meta │ │ ├── Shared.meta │ │ ├── Shared │ │ │ ├── BundleDetails.cs │ │ │ └── BundleDetails.cs.meta │ │ ├── Unity.ScriptableBuildPipeline.asmdef │ │ └── Unity.ScriptableBuildPipeline.asmdef.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Catalog.cs │ │ ├── Catalog.cs.meta │ │ ├── ContentLoadFixture.cs │ │ ├── ContentLoadFixture.cs.meta │ │ ├── ContentLoadScenesTest.cs │ │ ├── ContentLoadScenesTest.cs.meta │ │ ├── ContentLoadTests.cs │ │ ├── ContentLoadTests.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── ArchiveAndCompressTestFixture.cs │ │ │ ├── ArchiveAndCompressTestFixture.cs.meta │ │ │ ├── ArchiveAndCompressTests.cs │ │ │ ├── ArchiveAndCompressTests.cs.meta │ │ │ ├── AssemblyInfo.cs │ │ │ ├── AssemblyInfo.cs.meta │ │ │ ├── AssetLoadInfoSortingTests.cs │ │ │ ├── AssetLoadInfoSortingTests.cs.meta │ │ │ ├── BuildCacheTestBase.cs │ │ │ ├── BuildCacheTestBase.cs.meta │ │ │ ├── BuildContextTests.cs │ │ │ ├── BuildContextTests.cs.meta │ │ │ ├── BuildLogTests.cs │ │ │ ├── BuildLogTests.cs.meta │ │ │ ├── CacheServer.meta │ │ │ ├── CacheServer │ │ │ │ ├── ByteArrayStream.cs │ │ │ │ ├── ByteArrayStream.cs.meta │ │ │ │ ├── LocalCacheServer.cs │ │ │ │ ├── LocalCacheServer.cs.meta │ │ │ │ ├── TestDownloadItem.cs │ │ │ │ ├── TestDownloadItem.cs.meta │ │ │ │ ├── Tests.cs │ │ │ │ ├── Tests.cs.meta │ │ │ │ ├── UnityEditor.CacheServerTests.asmdef │ │ │ │ ├── UnityEditor.CacheServerTests.asmdef.meta │ │ │ │ ├── Utils.cs │ │ │ │ └── Utils.cs.meta │ │ │ ├── CacheServerBuildCacheTests.cs │ │ │ ├── CacheServerBuildCacheTests.cs.meta │ │ │ ├── CalculateAssetDependencyTests.cs │ │ │ ├── CalculateAssetDependencyTests.cs.meta │ │ │ ├── CalculateCustomDependencyTests.cs │ │ │ ├── CalculateCustomDependencyTests.cs.meta │ │ │ ├── CalculateSceneDependencyTests.cs │ │ │ ├── CalculateSceneDependencyTests.cs.meta │ │ │ ├── ContextInjectionTests.cs │ │ │ ├── ContextInjectionTests.cs.meta │ │ │ ├── ContextObjectSerializationTests.cs │ │ │ ├── ContextObjectSerializationTests.cs.meta │ │ │ ├── FileCompressorTests.cs │ │ │ ├── FileCompressorTests.cs.meta │ │ │ ├── GenerateBundlePackingTests.cs │ │ │ ├── GenerateBundlePackingTests.cs.meta │ │ │ ├── HashingHelpersTests.cs │ │ │ ├── HashingHelpersTests.cs.meta │ │ │ ├── HashingMethodsTests.cs │ │ │ ├── HashingMethodsTests.cs.meta │ │ │ ├── LinkXMLGeneratorTests.cs │ │ │ ├── LinkXMLGeneratorTests.cs.meta │ │ │ ├── LocalBuildCacheTests.cs │ │ │ ├── LocalBuildCacheTests.cs.meta │ │ │ ├── LocalCacheServer.cs │ │ │ ├── LocalCacheServer.cs.meta │ │ │ ├── ObjectExtractionTaskTests.cs │ │ │ ├── ObjectExtractionTaskTests.cs.meta │ │ │ ├── PrefabPackedStressTest.cs │ │ │ ├── PrefabPackedStressTest.cs.meta │ │ │ ├── ReflectionExtentions.cs │ │ │ ├── ReflectionExtentions.cs.meta │ │ │ ├── ScriptableBuildPipelineTests.cs │ │ │ ├── ScriptableBuildPipelineTests.cs.meta │ │ │ ├── TaskCachingUtilityTests.cs │ │ │ ├── TaskCachingUtilityTests.cs.meta │ │ │ ├── TestInterfaceImplementations.cs │ │ │ ├── TestInterfaceImplementations.cs.meta │ │ │ ├── ThreadingManagerTasks.cs │ │ │ ├── ThreadingManagerTasks.cs.meta │ │ │ ├── USerializeTests.cs │ │ │ ├── USerializeTests.cs.meta │ │ │ ├── Unity.ScriptableBuildPipeline.Editor.Tests.asmdef │ │ │ ├── Unity.ScriptableBuildPipeline.Editor.Tests.asmdef.meta │ │ │ ├── WriteSerializedFileTests.cs │ │ │ ├── WriteSerializedFileTests.cs.meta │ │ │ ├── WriteTypesTests.cs │ │ │ └── WriteTypesTests.cs.meta │ │ ├── Unity.ScriptableBuildPipeline.Tests.asmdef │ │ └── Unity.ScriptableBuildPipeline.Tests.asmdef.meta │ ├── ValidationExceptions.json │ ├── ValidationExceptions.json.meta │ ├── package.json │ └── package.json.meta ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset ├── XRSettings.asset └── boot.config ├── README.md └── SmartLibrarySettings └── Collections └── ROOT_60185989-9e00-4ab9-9ec8-d703ac133509.collect /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/AssetPipelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Editor/AssetPipelineSettings.asset -------------------------------------------------------------------------------- /Assets/Editor/AssetPipelineSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Editor/AssetPipelineSettings.asset.meta -------------------------------------------------------------------------------- /Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Settings.meta -------------------------------------------------------------------------------- /Assets/Settings/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Settings/Resources.meta -------------------------------------------------------------------------------- /Assets/Settings/Resources/URSRuntimeSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Settings/Resources/URSRuntimeSetting.asset -------------------------------------------------------------------------------- /Assets/Settings/Resources/URSRuntimeSetting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Settings/Resources/URSRuntimeSetting.asset.meta -------------------------------------------------------------------------------- /Assets/URS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS.meta -------------------------------------------------------------------------------- /Assets/URS/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Animation.meta -------------------------------------------------------------------------------- /Assets/URS/Animation/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Animation/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/Animation/Editor/AnimationClipUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Animation/Editor/AnimationClipUtil.cs -------------------------------------------------------------------------------- /Assets/URS/Animation/Editor/AnimationClipUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Animation/Editor/AnimationClipUtil.cs.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/.gitignore -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/.npmignore -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/CHANGELOG.md -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Documentation.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Documentation/images.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Documentation/images.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/AssetBundleTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/AssetBundleTree.cs -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/AssetListTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/AssetListTree.cs -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/BundleDetailList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/BundleDetailList.cs -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/Icons.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/InspectTab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/InspectTab.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/MessageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/MessageList.cs -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/MessageList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/MessageList.cs.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/Editor/MessageSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/Editor/MessageSystem.cs -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/QAReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/QAReport.md -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/QAReport.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/QAReport.md.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/README.md -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/README.md.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/license.md -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/license.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/license.md.meta -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/package.json -------------------------------------------------------------------------------- /Assets/URS/AssetBundlesBrowser/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetBundlesBrowser/package.json.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/.gitignore -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Assets.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Assets/GUIIcon.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Assets/GUIIcon.shader -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Config.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Config/AssetPipelineSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f780564f37454ff78ed14f6648c0379e 3 | timeCreated: 1615307033 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Config/AssetPipelineSettingsProvider.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f919f9b96ee247a79d1e89e86bcb862d 3 | timeCreated: 1615489663 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Config/AssetTypeFileExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24e1b1fd1e1d441c9d6138fe871b4cfc 3 | timeCreated: 1615489668 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Dependencies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Dependencies.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Dependencies/ReflectionMagic/DynamicField.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68dbb5f54eb14253806da5a36a5af101 3 | timeCreated: 1614412669 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Dependencies/ReflectionMagic/DynamicProperty.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5faf10d9dcb4edebb2b42b18bd6cd20 3 | timeCreated: 1614412580 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Dependencies/ReflectionMagic/IDynamicMember.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d7038a4fc7d4cb4a6b7b0c7d55e4915 3 | timeCreated: 1614412434 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Dependencies/ReflectionMagic/LICENSE.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3d673404955490faca307606d7654c7 3 | timeCreated: 1617184685 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Filters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e955c6ff334c57a1e3671e32b7f701 3 | timeCreated: 1618158505 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Filters/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Filters/PathFilter.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Interface.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/Colors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 314f30297d154cda9077530892ddcd0f 3 | timeCreated: 1617183332 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/Colors/ColorPalette.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5dad3b922b414aab829cf17fcba2fd03 3 | timeCreated: 1617183338 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/Colors/SkinnedColor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f304d676db94a8886c241a1adb49e38 3 | timeCreated: 1617185622 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/DaiGUIStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Interface/DaiGUIStyles.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/DaiGUIStyles.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4394526e40b7400498fd48b8b476139b 3 | timeCreated: 1617185252 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/DaiGUIUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e0e39cd0c644b6b9856ce63356ddf92 3 | timeCreated: 1617183591 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/EditorTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b995df06b0804b89b165c29f0e84fe8d 3 | timeCreated: 1617443618 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/EditorTexture/EditorTexture.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3f6cc70b9ae482f9c52949fa19ae538 3 | timeCreated: 1617443624 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/EditorTexture/EditorTextures.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: acd92934309a434bb0a89cb5b3c69e4e 3 | timeCreated: 1617446936 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 863ce9a551fa4a9fbb0c55f036d4ecf3 3 | timeCreated: 1617184259 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/PropertyDrawers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3896a7c7815f40b5813d25794fa12a29 3 | timeCreated: 1615614037 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/TreeViews.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e3997ac330e475bb8cb2b1cf12501d0 3 | timeCreated: 1617184237 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/TreeViews/ImportProfileTableItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3e5feaf71ce4a46af10b5065915d852 3 | timeCreated: 1616084957 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Interface/TreeViews/ImportProfileTableView.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c39b828c4b6c476aba87c4c08fb71522 3 | timeCreated: 1616084925 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/PathConvention.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/PathConvention/Anchor.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/Anchor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78946748c4524f5a8a909c2579597464 3 | timeCreated: 1616436725 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/GenericResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f8a24e4155f4e6e86532beef2145b12 3 | timeCreated: 1616436716 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/ITemplateResolver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c849845e49b24a5aa5d74f5279c93266 3 | timeCreated: 1616418611 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/NamingConventionRule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 852dabe8d45540d3908d61fc2ab3aeb2 3 | timeCreated: 1616693690 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/ResolveException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9f1a5ed88cc14c1a8daba653d2781c90 3 | timeCreated: 1616436729 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/PathConvention/Template.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4708374c98c048a6b17335115696f011 3 | timeCreated: 1616436279 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Postprocessors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Postprocessors.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Postprocessors/AssetImportPostprocessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ec9464932754f08ba356c654d7422db 3 | timeCreated: 1615035188 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Processors.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/AddToSpriteAtlas.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a87ab1fb8e3346d59931ee8b71822f6c 3 | timeCreated: 1616231539 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/ApplyPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Processors/ApplyPreset.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/ApplyPreset.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac655ef70114397af4946274b0afd78 3 | timeCreated: 1615028083 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/CreatePrefab.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8cf615fc668e4330a43eea8107d3b91e 3 | timeCreated: 1615028647 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/ExtractMaterials.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ff3abca03d143b0a6593c83cf04061f 3 | timeCreated: 1615316084 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 394ba7a4311243519a74d56585c8f78d 3 | timeCreated: 1615190426 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/AddToSpriteAtlasInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43adedbd9a3d47b4916ae236d18023a2 3 | timeCreated: 1616234410 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/ApplyPresetInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae819641f1424a9ab4c112f95924f754 3 | timeCreated: 1615190416 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/AssetProcessorInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46f9f96e46e2450a86d8e3838635278d 3 | timeCreated: 1616930534 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/CreatePrefabInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb09168db41e4861abc1349cc8f1f7ea 3 | timeCreated: 1615191622 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/ExtractMaterialsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d45cd76307f34ebdbd8031af16bfd16e 3 | timeCreated: 1615318094 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/PackTexture2DInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7df496528a6b49aea9233a89e26324af 3 | timeCreated: 1616245680 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/SetAssetBundleInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc870b4bbd4d47ca988f5f991f53b92b 3 | timeCreated: 1615191812 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/SetAssetLabelsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 78c4de3bf5824fc483ffd759629382ca 3 | timeCreated: 1615191860 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/SetupMaterialsInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: adb83e4c654b40a9b22a34cf19783ae7 3 | timeCreated: 1615402808 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/Inspectors/StripMeshDataInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cdf7570570f4783af576b744d05382d 3 | timeCreated: 1616251725 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/PackTexture2D.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dba5970f2e674607b90753051722c5fb 3 | timeCreated: 1616239179 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/SetAssetBundle.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08513f42c23d40348750ab4cf9867586 3 | timeCreated: 1615027951 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/SetAssetLabels.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6686c1fa1408445db3d8c8e9aa9cb50a 3 | timeCreated: 1615027867 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/SetupMaterials.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1b41e7dba22416390aaebee904d4551 3 | timeCreated: 1615392585 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Processors/StripMeshData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26be12f6d9c4026814d13b079fa7b95 3 | timeCreated: 1616249653 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Profiles.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles/Import.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Profiles/Import.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles/Import/AssetFilter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2833c50f97654ad2b8034ab06a4dee5a 3 | timeCreated: 1615036240 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles/Import/AssetImportProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c962c1226e043caa066ec79a5193cc0 3 | timeCreated: 1615040537 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles/Import/ImportAssetType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bb15bb990b76430a92af99814407930a 3 | timeCreated: 1615036220 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Profiles/Import/ImportProfileUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f866ff3e8a984a469dea8d7b0e984dd5 3 | timeCreated: 1617730786 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Reflection.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0dd5ffcda6624e36ab13c42f5e3ec3d6 3 | timeCreated: 1617182411 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Resources.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Resources/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Resources/Icons.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/AssetDatabaseUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a715c71c455410db68950f1e9713faa 3 | timeCreated: 1617182692 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/AssetProcessorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca6057f7b13d4abc909c4d6e1ba36a7a 3 | timeCreated: 1615190037 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/AssetReferenceUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8fe5a618b604025a15ecd189da29ccc 3 | timeCreated: 1616586854 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ColorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/ColorUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ColorUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77d49c4b780c49bbb8987b964db9f672 3 | timeCreated: 1617183159 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/EditorWindowUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4dfbbe52ba2c4728b941c1e677b4a5f5 3 | timeCreated: 1617207195 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ImportAssetTypeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b0e460162b24e8a85d2fcb2db1e5648 3 | timeCreated: 1615190022 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/LinqUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/LinqUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/LinqUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd4b63853874649ad7ac7fc4eb6090c 3 | timeCreated: 1617182292 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ObjectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/ObjectUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ObjectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 43b880995b9245f481e596d920a8618c 3 | timeCreated: 1617519756 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/PathUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/PathUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/PathUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a693a5c7df294fa88729756449f268a1 3 | timeCreated: 1617182139 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/RectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/RectUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/RectUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f1e28f7958f4081bcdb825360ef3d52 3 | timeCreated: 1617519497 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/ReorderableListUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83717b6978e147338041f03f6fa99673 3 | timeCreated: 1617183296 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/SerializedPropertyUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b48fdf665b42cbb6a6844d1f3d3a11 3 | timeCreated: 1617183495 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/StringUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/StringUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d793c256289e4d5bb9b191ab17bbf416 3 | timeCreated: 1617182109 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/TargetPathTypeUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7caf801f3a2c4f6b922cfd6265fb0c94 3 | timeCreated: 1615318501 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/TextureUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Utility/TextureUtility.cs -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Utility/TextureUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85d9423f8b6f454eb7544bd5501f9ec5 3 | timeCreated: 1617444238 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Windows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/Editor/Windows.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Windows/AssetSearchWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af467c149d7541dd8aadbdd26f8725c3 3 | timeCreated: 1616509364 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Windows/ImportProfileWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3decbb1e47e34de49cf769ab6cbf3e88 3 | timeCreated: 1616084437 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/Editor/Windows/ImportProfilesWindow.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14c6fafd5e884fe7ae62eed2c96cd20d 3 | timeCreated: 1615041007 -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/LICENSE -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/LICENSE.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/README.md -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/README.md.meta -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/package.json -------------------------------------------------------------------------------- /Assets/URS/AssetPipeline/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/AssetPipeline/package.json.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/BestHTTP.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/BestHTTP.asmdef -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/BestHTTP.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/BestHTTP.asmdef.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Documentation.txt -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Documentation.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Documentation.txt.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/AssetBundle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/AssetBundle.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/AssetBundleSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/AssetBundleSample.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/Streaming.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/Streaming.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/Streaming.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/Streaming.prefab.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/StreamingSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/StreamingSample.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/TextureDownload.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/TextureDownload.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/UploadStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/UploadStream.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/HTTP/UploadStream.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/HTTP/UploadStream.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Components.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Components.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Components/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Components/Cache.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/GUIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/GUIHelper.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/GUIHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/GUIHelper.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Link.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Link.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Link.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/LinkSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/LinkSelect.png -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/LinkSelect.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/LinkSelect.png.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Plugins.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/Plugins/WebGL.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/SampleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/SampleBase.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/SampleBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/SampleBase.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/SelectorUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/SelectorUI.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/TextListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/TextListItem.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Helpers/TextListItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Helpers/TextListItem.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Plugin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Plugin.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Plugin/AsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Plugin/AsyncExtensions.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SampleRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SampleRoot.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SampleRoot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SampleRoot.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SampleSelector.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SampleSelector.unity -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SampleSelector.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SampleSelector.unity.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Server-Sent Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Server-Sent Events.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalR.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalR/Json Encoders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalR/Json Encoders.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore/Encoders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore/Encoders.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore/Person.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore/Person.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore/Person.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore/Redirect.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore/Redirect.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SignalRCore/TestHub.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SignalRCore/TestHub.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SocketIO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SocketIO.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SocketIO3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SocketIO3.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SocketIO3/ChatSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SocketIO3/ChatSample.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SocketIO3/ChatSample.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SocketIO3/ChatSample.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/SocketIO3/Parsers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/SocketIO3/Parsers.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Websocket.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Websocket.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Examples/Websocket/WebSocket.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Examples/Websocket/WebSocket.prefab -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Plugins.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Plugins/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Plugins/Android.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Plugins/Android/ProxyFinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Plugins/Android/ProxyFinder.java -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Plugins/WebGL.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/ReleaseNotes.txt -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/ReleaseNotes.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/ReleaseNotes.txt.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Authentication.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Authentication.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Authentication/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Authentication/Credentials.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Authentication/Digest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Authentication/Digest.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Authentication/Digest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Authentication/Digest.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Authentication/DigestStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Authentication/DigestStore.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Caching.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Caching.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Caching/HTTPCacheFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Caching/HTTPCacheFileInfo.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Caching/HTTPCacheFileLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Caching/HTTPCacheFileLock.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Caching/HTTPCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Caching/HTTPCacheService.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/ConnectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/ConnectionBase.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/FileConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/FileConnection.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/HTTP1Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/HTTP1Handler.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/HTTP2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/HTTP2.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/HTTPConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/HTTPConnection.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/TCPConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/TCPConnector.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/TLS.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/TLS.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Connections/TLS/Crypto.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Connections/TLS/Crypto.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Cookies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Cookies.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Cookies/Cookie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Cookies/Cookie.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Cookies/Cookie.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Cookies/Cookie.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Cookies/CookieJar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Cookies/CookieJar.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Cookies/CookieJar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Cookies/CookieJar.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/ConnectionEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/ConnectionEvents.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/ConnectionEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/ConnectionEvents.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostConnection.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostConnection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostConnection.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostDefinition.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostDefinition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostDefinition.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostManager.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/HostManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/HostManager.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/IHTTPRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/IHTTPRequestHandler.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/IProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/IProtocol.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/IProtocol.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/IProtocol.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/PluginEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/PluginEvents.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/PluginEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/PluginEvents.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/ProtocolEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/ProtocolEvents.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/ProtocolEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/ProtocolEvents.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/RequestEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/RequestEvents.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Core/RequestEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Core/RequestEvents.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/CRC32.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/CRC32.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/CRC32.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Deflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Deflate.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Deflate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Deflate.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/GZipStream.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/InfTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/InfTree.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/InfTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/InfTree.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Inflate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Inflate.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Inflate.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Inflate.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/ZTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/ZTree.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/ZTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/ZTree.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Zlib.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/Zlib.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/Zlib.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Decompression/ZlibCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Decompression/ZlibCodec.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/CircularBuffer.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Extensions.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Extensions.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Future.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Future.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Future.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Future.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/HeaderParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/HeaderParser.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/HeaderValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/HeaderValue.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/StreamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/StreamList.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/StreamList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/StreamList.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Timer.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Extensions/Timer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Extensions/Timer.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFieldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFieldData.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFieldData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFieldData.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFormBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFormBase.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFormBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFormBase.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFormUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFormUsage.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/HTTPFormUsage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/HTTPFormUsage.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Forms/Implementations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Forms/Implementations.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPManager.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPManager.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPMethods.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPMethods.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPMethods.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPRange.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPRange.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPRange.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPRequest.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPRequest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPRequest.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPResponse.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPResponse.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPUpdateDelegator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPUpdateDelegator.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/HTTPUpdateDelegator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/HTTPUpdateDelegator.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/JSON.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/JSON.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/JSON.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/IJsonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/IJsonWrapper.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonData.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonData.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonException.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonMapper.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonReader.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/JsonWriter.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/Lexer.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/Lexer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/Lexer.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/JSON/LitJson/ParserToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/JSON/LitJson/ParserToken.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/DefaultLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/DefaultLogger.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/DefaultLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/DefaultLogger.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/FileOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/FileOutput.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/FileOutput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/FileOutput.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/ILogger.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/ILogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/ILogger.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/LoggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/LoggingContext.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/LoggingContext.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/LoggingContext.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/ThreadedLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/ThreadedLogger.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/ThreadedLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/ThreadedLogger.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/UnityOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/UnityOutput.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Logger/UnityOutput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Logger/UnityOutput.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/PlatformSupport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/PlatformSupport.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/PlatformSupport/IL2CPP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/PlatformSupport/IL2CPP.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/PlatformSupport/Memory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/PlatformSupport/Memory.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/PlatformSupport/Text.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/PlatformSupport/Text.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies/Autodetect.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies/Autodetect.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies/HTTPProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies/HTTPProxy.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies/HTTPProxy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies/HTTPProxy.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies/SOCKSProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies/SOCKSProxy.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Proxies/SOCKSProxy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Proxies/SOCKSProxy.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/License.txt -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/BerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/BerSet.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/DLSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/DLSet.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/DerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/DerSet.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/bc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/bc.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/bsi.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/bsi.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/cmp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/cmp.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/cms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/cms.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/crmf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/crmf.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/eac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/eac.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/edec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/edec.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/esf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/esf.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/ess.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/ess.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/gm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/gm.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/gnu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/gnu.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/iana.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/iana.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/icao.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/icao.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/kisa.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/kisa.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/misc.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/asn1/nist.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/asn1/nist.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/bcpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/bcpg.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/bcpg/S2k.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/bcpg/S2k.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/cmp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/cmp.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/cms.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/cms.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/crmf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/crmf.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/crypto.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/crypto.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/math.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/math.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/ocsp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/ocsp.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/ocsp/Req.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/ocsp/Req.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/pkcs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/pkcs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/pkix.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/pkix.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/tls.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/tls.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/tsp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/tsp.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/util.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SecureProtocol/x509.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SecureProtocol/x509.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/ServerSentEvents.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/ServerSentEvents.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Connection.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Connection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Connection.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Enums.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Hubs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Hubs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Hubs/Hub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Hubs/Hub.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Hubs/Hub.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Hubs/Hub.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Hubs/IHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Hubs/IHub.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Hubs/IHub.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Hubs/IHub.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/JsonEncoders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/JsonEncoders.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Messages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Messages.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/NegotiationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/NegotiationData.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalR/Transports.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalR/Transports.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalRCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalRCore.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalRCore/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalRCore/Extensions.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SignalRCore/Messages.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SignalRCore/Messages.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Enums.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Error.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Error.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Error.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Events.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Interfaces.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Parsers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Parsers.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Socket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Socket.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Socket.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Socket.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.3/Transports.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.3/Transports.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Enums.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Enums.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Enums.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Error.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Error.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Error.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Events.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/HandshakeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/HandshakeData.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Interfaces.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/JsonEncoders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/JsonEncoders.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Packet.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Packet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Packet.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Socket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Socket.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Socket.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Socket.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/SocketManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/SocketManager.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/SocketOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/SocketOptions.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/SocketIO/Transports.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/SocketIO/Transports.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Timings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Timings.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Timings/TimingCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Timings/TimingCollector.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/Timings/TimingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/Timings/TimingEvent.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/WebSocket.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/WebSocket.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/WebSocket/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/WebSocket/Extensions.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/WebSocket/Frames.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/WebSocket/Frames.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Source/WebSocket/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Source/WebSocket/WebSocket.cs -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Third-Party Notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Third-Party Notices.txt -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/Third-Party Notices.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/Third-Party Notices.txt.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/license.txt -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/license.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/license.txt.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/link.xml -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/link.xml.meta -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/link_android_subset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/link_android_subset.xml -------------------------------------------------------------------------------- /Assets/URS/Best HTTP/link_android_subset.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Best HTTP/link_android_subset.xml.meta -------------------------------------------------------------------------------- /Assets/URS/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Plugins.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Comparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Comparator.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Comparator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Comparator.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/ComparatorSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/ComparatorSet.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/ComparatorSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/ComparatorSet.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Desugarer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Desugarer.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Desugarer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Desugarer.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/PartialVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/PartialVersion.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/PartialVersion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/PartialVersion.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/PreReleaseVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/PreReleaseVersion.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Range.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Range.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Range.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/SemanticVersion.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/SemanticVersion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/SemanticVersion.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Tuple.cs -------------------------------------------------------------------------------- /Assets/URS/SemanticVersioning/Tuple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SemanticVersioning/Tuple.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Setting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Setting.meta -------------------------------------------------------------------------------- /Assets/URS/Setting/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Setting/Resources.meta -------------------------------------------------------------------------------- /Assets/URS/Setting/Resources/urs_runtime_setting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Setting/Resources/urs_runtime_setting.txt -------------------------------------------------------------------------------- /Assets/URS/Setting/URSRuntimeSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Setting/URSRuntimeSetting.cs -------------------------------------------------------------------------------- /Assets/URS/Setting/URSRuntimeSetting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Setting/URSRuntimeSetting.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Changelog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Changelog.pdf -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Changelog.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Changelog.pdf.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Credits.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Credits.pdf -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Credits.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Credits.pdf.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/Collections.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/Collections.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/FolderReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/FolderReference.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/LibraryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/LibraryData.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/LibraryDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/LibraryDatabase.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/LibraryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/LibraryItem.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/TypeReference.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/UStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/UStack.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Data/UStack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Data/UStack.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/DefaultParentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/DefaultParentManager.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Draggers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Draggers.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Editors.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Editors.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Extensions.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Extensions.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/LibraryPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/LibraryPreferences.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Previews.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Previews.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Previews/Cache.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Previews/Cache.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Previews/Previewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Previews/Previewer.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/ComponentRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/ComponentRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/ExtensionRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/ExtensionRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/LabelRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/LabelRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/LabelRule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/LabelRule.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/NameRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/NameRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/NameRule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/NameRule.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/PrefabRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/PrefabRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/RuleSet.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/RuleSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/RuleSet.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/TypeRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/TypeRule.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Rules/TypeRule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Rules/TypeRule.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/SessionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/SessionData.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/SessionData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/SessionData.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/SmartLibraryWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/SmartLibraryWindow.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Common.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Common.uss -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Common.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Common.uss.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/CommonDark.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/CommonDark.uss -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/CommonDark.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/CommonDark.uss.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/CommonLight.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/CommonLight.uss -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/CommonLight.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/CommonLight.uss.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/DropdownWindow.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/DropdownWindow.uss -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/FolderSelector.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/FolderSelector.uss -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Icons.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Icons/d_list_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Icons/d_list_add.png -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Icons/d_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Icons/d_options.png -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Icons/list_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Icons/list_add.png -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Icons/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Icons/options.png -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/Materials.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/UI/ReorderableList.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/UI/ReorderableList.uxml -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Undo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Undo.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Utility.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Utility/AssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Utility/AssetUtility.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Utility/FilteredSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Utility/FilteredSet.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/Utility/TypeAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/Utility/TypeAccessor.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base/BTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base/BTreeView.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base/IMGUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base/IMGUI.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base/IconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base/IconButton.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base/SplitView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base/SplitView.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/Base/TypeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/Base/TypeField.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/CollectionField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/CollectionField.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/RulesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/RulesView.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Editor/View/RulesView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Editor/View/RulesView.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Manual.pdf -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Manual.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Manual.pdf.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Runtime.meta -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Runtime/UniqueID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Runtime/UniqueID.cs -------------------------------------------------------------------------------- /Assets/URS/SmartLibrary/Runtime/UniqueID.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SmartLibrary/Runtime/UniqueID.cs.meta -------------------------------------------------------------------------------- /Assets/URS/SocoShaderVariant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SocoShaderVariant.meta -------------------------------------------------------------------------------- /Assets/URS/SocoShaderVariant/..Associate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/SocoShaderVariant/..Associate/README.md -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper.meta -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/LICENSE -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/LICENSE.meta -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/README.md -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/README.md.meta -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/ShaderForceKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/ShaderForceKeywords.cs -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/ShaderStripperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/ShaderStripperBase.cs -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/ShaderStripperPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/ShaderStripperPath.cs -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/ShaderStripperSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/ShaderStripperSimple.cs -------------------------------------------------------------------------------- /Assets/URS/UnityShaderStripper/ShaderStripperTier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/UnityShaderStripper/ShaderStripperTier.cs -------------------------------------------------------------------------------- /Assets/URS/Utils.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Reflection.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Reflection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Reflection.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Scope.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Scope.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Scope.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Style.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.Style.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.Style.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/EditorUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/EditorUtils.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/FixedArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/FixedArrayPool.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/FixedArrayPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/FixedArrayPool.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/FpsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/FpsHelper.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/FpsHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/FpsHelper.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/GameSettings.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/GameSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/GameSettings.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/PoolExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/PoolExtension.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/PoolExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/PoolExtension.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/ReflectionHelper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/ReflectionHelper.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/ReflectionHelper/MonoHook.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/ReflectionHelper/MonoHook.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/SharedObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/SharedObjectPool.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/SharedObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/SharedObjectPool.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/UnityMacro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/UnityMacro.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/UnityMacro.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/UnityMacro.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Collection.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Collection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Collection.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Misc.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Misc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Misc.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Reflection.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.Reflection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.Reflection.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.String.cs -------------------------------------------------------------------------------- /Assets/URS/Utils/Editor/Utils.String.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/Editor/Utils.String.cs.meta -------------------------------------------------------------------------------- /Assets/URS/Utils/urs.utils.editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/urs.utils.editor.asmdef -------------------------------------------------------------------------------- /Assets/URS/Utils/urs.utils.editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/Utils/urs.utils.editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/AssetBundleDebugger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/AssetBundleDebugger.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/AssetDependencyTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/AssetDependencyTree.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/AssetDependencyTree.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/AssetDependencyTree.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/AssetbundleUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/AssetbundleUtilities.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Build.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Build.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Build.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTask.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTask/BuildTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTask/BuildTask.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTask/BuildTask.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTask/BuildTask.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTask/BuildTaskAppId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTask/BuildTaskAppId.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTask/SBPTask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTask/SBPTask.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskAwaitable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskAwaitable.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskAwaitable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskAwaitable.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskProcess.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskProcess.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskProcess.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskUploadCDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskUploadCDN.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/BuildTaskUploadCDN.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/BuildTaskUploadCDN.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/CommandLine.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/CommandLine.Build.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/CommandLine.Build.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/CommandLine.Build.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Core.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Core/URSCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Core/URSCore.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/EditorDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/EditorDefine.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/EditorDefine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/EditorDefine.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/HybridBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/HybridBuild.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/HybridBuild.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/HybridBuild.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/ValidateAasset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/ValidateAasset.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/ValidateAasset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/ValidateAasset.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/VersionAndCDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/VersionAndCDN.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/Menu/VersionAndCDN.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/Menu/VersionAndCDN.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/PlatformMappingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/PlatformMappingService.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/SimpleExec.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/SimpleExec.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/SimpleExec/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/SimpleExec/Command.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/SimpleExec/Command.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/SimpleExec/Command.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/TagRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/TagRule.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/TagRule.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/TagRule.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/TagRulePropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/TagRulePropertyDrawer.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/AssetDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/AssetDatabase.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Directory.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Directory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Directory.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Editor.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Exceptions.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Exceptions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Exceptions.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/File.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/File.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/File.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Files.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Files.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Files.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Interfaces.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/Interfaces/IFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/Interfaces/IFile.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/NullFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/NullFile.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/NullFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/NullFile.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/UnityIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/UnityIO.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Editor/UnityIO/UnityIO.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Editor/UnityIO/UnityIO.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/LICENSE -------------------------------------------------------------------------------- /Assets/URS/YooAsset/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/LICENSE.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/README.md -------------------------------------------------------------------------------- /Assets/URS/YooAsset/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/README.md.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Resources.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Resources/YooAssetSetting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Resources/YooAssetSetting.asset -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/AssetSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/AssetSystem.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/BundleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/BundleInfo.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/Handles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/Handles.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/Instance.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/Instance.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/Loader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/Loader.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/AssetSystem/Provider.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/AssetSystem/Provider.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/FilePath.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/FilePath.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/FilePath.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/FileSystem.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/FileSystem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/FileSystem.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/FilesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/FilesManager.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/IFileSystem.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/LocalFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/LocalFileInfo.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/IO/PathsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/IO/PathsManager.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Octodiff.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Octodiff.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Octodiff/DataRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Octodiff/DataRange.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Octodiff/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Octodiff/Signature.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/URSCore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/URSCore.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Utilities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Utilities.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Utilities/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Utilities/Hashing.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Core/Utilities/Rijndael.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Core/Utilities/Rijndael.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Debugger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Debugger.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Debugger/DebugReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Debugger/DebugReport.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Logger.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Logger.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Logger/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Logger/Logger.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Logger/Logger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Logger/Logger.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/OperationSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/OperationSystem.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Operations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Operations.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/BundleMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/BundleMeta.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/Download.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/Download.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/FileMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/FileMeta.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/PatchAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/PatchAsset.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/PatchBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/PatchBundle.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/PatchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/PatchHelper.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/PatchSystem/PlayMode.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/PatchSystem/PlayMode.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/ResourceSetting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/ResourceSetting.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/ShaderVariantCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/ShaderVariantCollection.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/AssemblyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/AssemblyUtility.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/FileUtility.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/HashUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/HashUtility.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/Misc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/Misc.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/Misc/BitMask32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/Misc/BitMask32.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/Misc/BitMask64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/Misc/BitMask64.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/Utility/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/Utility/StringUtility.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/YooAssetDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/YooAssetDriver.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/YooAssetDriver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/YooAssetDriver.cs.meta -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/YooAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/YooAssets.cs -------------------------------------------------------------------------------- /Assets/URS/YooAsset/Runtime/YooAssets.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/YooAsset/Runtime/YooAssets.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/Utils.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/Utils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/Utils.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/__inline__xxHash32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/__inline__xxHash32.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/__inline__xxHash32.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/__inline__xxHash32.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/__inline__xxHash64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/__inline__xxHash64.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/__inline__xxHash64.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/__inline__xxHash64.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH3.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH3.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH64.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.XXH64.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.XXH64.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash128.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash128.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH3.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH3.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH64.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.XXH64.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.XXH64.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash3.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.XXH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.XXH.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.XXH.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.XXH.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.XXH32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.XXH32.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.XXH32.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.XXH32.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash32.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash32.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.XXH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.XXH.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.XXH.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.XXH.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.XXH64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.XXH64.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.XXH64.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.XXH64.cs.meta -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.cs -------------------------------------------------------------------------------- /Assets/URS/xxHash/xxHash64.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/URS/xxHash/xxHash64.cs.meta -------------------------------------------------------------------------------- /Assets/Untitle.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Untitle.unity -------------------------------------------------------------------------------- /Assets/Untitle.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Assets/Untitle.unity.meta -------------------------------------------------------------------------------- /Packages/com.unity.scriptablebuildpipeline@1.20.2/Editor/Tasks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3f1cef9a16d4a21826a13742ee5ea01 3 | timeCreated: 1513096288 -------------------------------------------------------------------------------- /Packages/com.unity.scriptablebuildpipeline@1.20.2/README.md: -------------------------------------------------------------------------------- 1 | # Unity Asset Bundle Build Pipeline 2 | Coming soon. 3 | -------------------------------------------------------------------------------- /Packages/com.unity.scriptablebuildpipeline@1.20.2/Runtime/Unity.ScriptableBuildPipeline.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Unity.ScriptableBuildPipeline" 3 | } 4 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/ShaderGraphSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killop/UnityResourceSolution/HEAD/README.md --------------------------------------------------------------------------------