lakutata 2.0.111 → 2.0.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/com/cacher.cjs +1 -1
- package/com/cacher.mjs +1 -1
- package/com/database.cjs +1 -1
- package/com/database.mjs +1 -1
- package/com/docker.cjs +1 -1
- package/com/docker.mjs +1 -1
- package/com/entrypoint.cjs +1 -1
- package/com/entrypoint.mjs +1 -1
- package/com/logger.cjs +1 -1
- package/com/logger.mjs +1 -1
- package/com/monitor.cjs +1 -1
- package/com/monitor.mjs +1 -1
- package/decorator/asst.cjs +1 -1
- package/decorator/asst.mjs +1 -1
- package/decorator/ctrl.cjs +1 -1
- package/decorator/ctrl.mjs +1 -1
- package/decorator/di.cjs +1 -1
- package/decorator/di.mjs +1 -1
- package/decorator/dto.cjs +1 -1
- package/decorator/dto.mjs +1 -1
- package/decorator/orm.cjs +1 -1
- package/decorator/orm.mjs +1 -1
- package/dtos.cjs +1 -1
- package/dtos.mjs +1 -1
- package/helper.cjs +1 -1
- package/helper.mjs +1 -1
- package/lakutata.cjs +1 -1
- package/lakutata.mjs +1 -1
- package/orm.cjs +1 -1
- package/orm.mjs +1 -1
- package/package.json +1 -1
- package/provider/database.cjs +1 -1
- package/provider/database.mjs +1 -1
- package/provider/passwordHash.cjs +1 -1
- package/provider/passwordHash.mjs +1 -1
- package/src/components/Database.cjs +1 -1
- package/src/components/Database.mjs +1 -1
- package/src/components/Logger.cjs +1 -1
- package/src/components/Logger.mjs +1 -1
- package/src/components/cacher/Cacher.cjs +1 -1
- package/src/components/cacher/Cacher.mjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +1 -1
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +1 -1
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.cjs +1 -1
- package/src/components/cacher/exceptions/CacheDriverNotFoundException.mjs +1 -1
- package/src/components/cacher/interfaces/CacherOptions.cjs +1 -1
- package/src/components/cacher/interfaces/CacherOptions.mjs +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.cjs +1 -1
- package/src/components/cacher/lib/IsDriverPackageInstalled.mjs +1 -1
- package/src/components/cacher/options/FileCacheOptions.cjs +1 -1
- package/src/components/cacher/options/FileCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MemcacheCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MongoCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MongoCacheOptions.mjs +1 -1
- package/src/components/cacher/options/MysqlCacheOptions.cjs +1 -1
- package/src/components/cacher/options/MysqlCacheOptions.mjs +1 -1
- package/src/components/cacher/options/PostgresCacheOptions.cjs +1 -1
- package/src/components/cacher/options/PostgresCacheOptions.mjs +1 -1
- package/src/components/cacher/options/RedisCacheOptions.cjs +1 -1
- package/src/components/cacher/options/RedisCacheOptions.mjs +1 -1
- package/src/components/cacher/options/SqliteCacheOptions.cjs +1 -1
- package/src/components/cacher/options/SqliteCacheOptions.mjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.cjs +1 -1
- package/src/components/cacher/types/CacheStoreOptions.mjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.cjs +1 -1
- package/src/components/docker/ConnectionOptionsBuilder.mjs +1 -1
- package/src/components/docker/Docker.cjs +1 -1
- package/src/components/docker/Docker.mjs +1 -1
- package/src/components/docker/exceptions/DockerConnectionException.cjs +1 -1
- package/src/components/docker/exceptions/DockerConnectionException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageBuildException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageBuildException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageImportException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageImportException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageNotFoundException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImagePullException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImagePullException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImagePushException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImagePushException.mjs +1 -1
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerImageRepoTagNotFoundException.mjs +1 -1
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.cjs +1 -1
- package/src/components/docker/exceptions/DockerNetworkNotFoundException.mjs +1 -1
- package/src/components/docker/interfaces/IDockerConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerHttpsConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.cjs +1 -1
- package/src/components/docker/interfaces/IDockerKeyObject.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSSHConnectionOptions.mjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.cjs +1 -1
- package/src/components/docker/interfaces/IDockerSocketConnectionOptions.mjs +1 -1
- package/src/components/docker/lib/DockerContainer.cjs +1 -1
- package/src/components/docker/lib/DockerContainer.mjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.cjs +1 -1
- package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
- package/src/components/docker/lib/DockerImage.cjs +1 -1
- package/src/components/docker/lib/DockerImage.mjs +1 -1
- package/src/components/docker/lib/ParseEnvToRecord.cjs +1 -1
- package/src/components/docker/lib/ParseEnvToRecord.mjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.cjs +1 -1
- package/src/components/docker/lib/ParseRepositoryTag.mjs +1 -1
- package/src/components/docker/options/DockerPruneOptions.cjs +1 -1
- package/src/components/docker/options/DockerPruneOptions.mjs +1 -1
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +1 -1
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerCommitOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerExecOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerExecOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerKillOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerKillOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerLogsOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerSettingOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerStopOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerStopOptions.mjs +1 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.cjs +1 -1
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageBuildOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageBuildOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageExportOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageExportOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageImportOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageImportOptions.mjs +1 -1
- package/src/components/docker/options/image/ImagePullOptions.cjs +1 -1
- package/src/components/docker/options/image/ImagePullOptions.mjs +1 -1
- package/src/components/docker/options/image/ImagePushOptions.cjs +1 -1
- package/src/components/docker/options/image/ImagePushOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageRemoveOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +1 -1
- package/src/components/docker/options/image/ImageTagOptions.cjs +1 -1
- package/src/components/docker/options/image/ImageTagOptions.mjs +1 -1
- package/src/components/docker/options/network/NetworkCreateOptions.cjs +1 -1
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +1 -1
- package/src/components/docker/types/ContainerBind.cjs +1 -1
- package/src/components/docker/types/ContainerBind.mjs +1 -1
- package/src/components/docker/types/ContainerCapability.cjs +1 -1
- package/src/components/docker/types/ContainerCapability.mjs +1 -1
- package/src/components/docker/types/ContainerConfig.cjs +1 -1
- package/src/components/docker/types/ContainerConfig.mjs +1 -1
- package/src/components/docker/types/ContainerDevice.cjs +1 -1
- package/src/components/docker/types/ContainerDevice.mjs +1 -1
- package/src/components/docker/types/ContainerNetwork.cjs +1 -1
- package/src/components/docker/types/ContainerNetwork.mjs +1 -1
- package/src/components/docker/types/ContainerPort.cjs +1 -1
- package/src/components/docker/types/ContainerPort.mjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.cjs +1 -1
- package/src/components/docker/types/ContainerRestartPolicy.mjs +1 -1
- package/src/components/docker/types/ContainerState.cjs +1 -1
- package/src/components/docker/types/ContainerState.mjs +1 -1
- package/src/components/docker/types/ContainerStats.cjs +1 -1
- package/src/components/docker/types/ContainerStats.mjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.cjs +1 -1
- package/src/components/docker/types/DockerOutputCallback.mjs +1 -1
- package/src/components/docker/types/ImageConfig.cjs +1 -1
- package/src/components/docker/types/ImageConfig.mjs +1 -1
- package/src/components/docker/types/ImageExposePort.cjs +1 -1
- package/src/components/docker/types/ImageExposePort.mjs +1 -1
- package/src/components/docker/types/NetworkInfo.cjs +1 -1
- package/src/components/docker/types/NetworkInfo.mjs +1 -1
- package/src/components/entrypoint/Entrypoint.cjs +1 -1
- package/src/components/entrypoint/Entrypoint.mjs +1 -1
- package/src/components/entrypoint/exceptions/AccessDenyException.cjs +1 -1
- package/src/components/entrypoint/exceptions/AccessDenyException.mjs +1 -1
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.cjs +1 -1
- package/src/components/entrypoint/exceptions/ControllerActionNotFoundException.mjs +1 -1
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +1 -1
- package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +1 -1
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.cjs +1 -1
- package/src/components/entrypoint/exceptions/InvalidActionGroupException.mjs +1 -1
- package/src/components/entrypoint/lib/AccessControl.cjs +1 -1
- package/src/components/entrypoint/lib/AccessControl.mjs +1 -1
- package/src/components/entrypoint/lib/AccessControlRule.cjs +1 -1
- package/src/components/entrypoint/lib/AccessControlRule.mjs +1 -1
- package/src/components/entrypoint/lib/Controller.cjs +1 -1
- package/src/components/entrypoint/lib/Controller.mjs +1 -1
- package/src/components/monitor/CpuMonitor.cjs +1 -1
- package/src/components/monitor/CpuMonitor.mjs +1 -1
- package/src/components/monitor/EventLoopMonitor.cjs +1 -1
- package/src/components/monitor/EventLoopMonitor.mjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.cjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.mjs +1 -1
- package/src/components/monitor/MemoryMonitor.cjs +1 -1
- package/src/components/monitor/MemoryMonitor.mjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/ICpuMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IEventLoopMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IHttpRequestMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.cjs +1 -1
- package/src/components/monitor/interfaces/IMemoryMonitorStatistics.mjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.cjs +1 -1
- package/src/components/monitor/interfaces/IMonitor.mjs +1 -1
- package/src/constants/DIMetadataKey.cjs +1 -1
- package/src/constants/DIMetadataKey.mjs +1 -1
- package/src/constants/DTOMetadataKey.cjs +1 -1
- package/src/constants/DTOMetadataKey.mjs +1 -1
- package/src/decorators/asst/After.cjs +1 -1
- package/src/decorators/asst/After.mjs +1 -1
- package/src/decorators/asst/Before.cjs +1 -1
- package/src/decorators/asst/Before.mjs +1 -1
- package/src/decorators/ctrl/CLIAction.cjs +1 -1
- package/src/decorators/ctrl/CLIAction.mjs +1 -1
- package/src/decorators/ctrl/HTTPAction.cjs +1 -1
- package/src/decorators/ctrl/HTTPAction.mjs +1 -1
- package/src/decorators/ctrl/ServiceAction.cjs +1 -1
- package/src/decorators/ctrl/ServiceAction.mjs +1 -1
- package/src/decorators/ctrl/http/DELETE.cjs +1 -1
- package/src/decorators/ctrl/http/DELETE.mjs +1 -1
- package/src/decorators/ctrl/http/GET.cjs +1 -1
- package/src/decorators/ctrl/http/GET.mjs +1 -1
- package/src/decorators/ctrl/http/HEAD.cjs +1 -1
- package/src/decorators/ctrl/http/HEAD.mjs +1 -1
- package/src/decorators/ctrl/http/OPTIONS.cjs +1 -1
- package/src/decorators/ctrl/http/OPTIONS.mjs +1 -1
- package/src/decorators/ctrl/http/PATCH.cjs +1 -1
- package/src/decorators/ctrl/http/PATCH.mjs +1 -1
- package/src/decorators/ctrl/http/POST.cjs +1 -1
- package/src/decorators/ctrl/http/POST.mjs +1 -1
- package/src/decorators/ctrl/http/PUT.cjs +1 -1
- package/src/decorators/ctrl/http/PUT.mjs +1 -1
- package/src/decorators/di/Autoload.cjs +1 -1
- package/src/decorators/di/Autoload.mjs +1 -1
- package/src/decorators/di/Configurable.cjs +1 -1
- package/src/decorators/di/Configurable.mjs +1 -1
- package/src/decorators/di/Inject.cjs +1 -1
- package/src/decorators/di/Inject.mjs +1 -1
- package/src/decorators/di/Lifetime.cjs +1 -1
- package/src/decorators/di/Lifetime.mjs +1 -1
- package/src/decorators/dto/Accept.cjs +1 -1
- package/src/decorators/dto/Accept.mjs +1 -1
- package/src/decorators/dto/Expect.cjs +1 -1
- package/src/decorators/dto/Expect.mjs +1 -1
- package/src/decorators/dto/IndexSignature.cjs +1 -1
- package/src/decorators/dto/IndexSignature.mjs +1 -1
- package/src/decorators/dto/Return.cjs +1 -1
- package/src/decorators/dto/Return.mjs +1 -1
- package/src/decorators/orm/AfterInsert.cjs +1 -1
- package/src/decorators/orm/AfterInsert.mjs +1 -1
- package/src/decorators/orm/AfterLoad.cjs +1 -1
- package/src/decorators/orm/AfterLoad.mjs +1 -1
- package/src/decorators/orm/AfterRecover.cjs +1 -1
- package/src/decorators/orm/AfterRecover.mjs +1 -1
- package/src/decorators/orm/AfterRemove.cjs +1 -1
- package/src/decorators/orm/AfterRemove.mjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.cjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.mjs +1 -1
- package/src/decorators/orm/AfterUpdate.cjs +1 -1
- package/src/decorators/orm/AfterUpdate.mjs +1 -1
- package/src/decorators/orm/BeforeInsert.cjs +1 -1
- package/src/decorators/orm/BeforeInsert.mjs +1 -1
- package/src/decorators/orm/BeforeRecover.cjs +1 -1
- package/src/decorators/orm/BeforeRecover.mjs +1 -1
- package/src/decorators/orm/BeforeRemove.cjs +1 -1
- package/src/decorators/orm/BeforeRemove.mjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.cjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.mjs +1 -1
- package/src/decorators/orm/BeforeUpdate.cjs +1 -1
- package/src/decorators/orm/BeforeUpdate.mjs +1 -1
- package/src/decorators/orm/Check.cjs +1 -1
- package/src/decorators/orm/Check.mjs +1 -1
- package/src/decorators/orm/ChildEntity.cjs +1 -1
- package/src/decorators/orm/ChildEntity.mjs +1 -1
- package/src/decorators/orm/Column.cjs +1 -1
- package/src/decorators/orm/Column.mjs +1 -1
- package/src/decorators/orm/CreateDateColumn.cjs +1 -1
- package/src/decorators/orm/CreateDateColumn.mjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.cjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.mjs +1 -1
- package/src/decorators/orm/Entity.cjs +1 -1
- package/src/decorators/orm/Entity.mjs +1 -1
- package/src/decorators/orm/EventSubscriber.cjs +1 -1
- package/src/decorators/orm/EventSubscriber.mjs +1 -1
- package/src/decorators/orm/Exclusion.cjs +1 -1
- package/src/decorators/orm/Exclusion.mjs +1 -1
- package/src/decorators/orm/Generated.cjs +1 -1
- package/src/decorators/orm/Generated.mjs +1 -1
- package/src/decorators/orm/Index.cjs +1 -1
- package/src/decorators/orm/Index.mjs +1 -1
- package/src/decorators/orm/JoinColumn.cjs +1 -1
- package/src/decorators/orm/JoinColumn.mjs +1 -1
- package/src/decorators/orm/JoinTable.cjs +1 -1
- package/src/decorators/orm/JoinTable.mjs +1 -1
- package/src/decorators/orm/ManyToMany.cjs +1 -1
- package/src/decorators/orm/ManyToMany.mjs +1 -1
- package/src/decorators/orm/ManyToOne.cjs +1 -1
- package/src/decorators/orm/ManyToOne.mjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.cjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.mjs +1 -1
- package/src/decorators/orm/OneToMany.cjs +1 -1
- package/src/decorators/orm/OneToMany.mjs +1 -1
- package/src/decorators/orm/OneToOne.cjs +1 -1
- package/src/decorators/orm/OneToOne.mjs +1 -1
- package/src/decorators/orm/PrimaryColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.cjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +1 -1
- package/src/decorators/orm/RelationId.cjs +1 -1
- package/src/decorators/orm/RelationId.mjs +1 -1
- package/src/decorators/orm/TableInheritance.cjs +1 -1
- package/src/decorators/orm/TableInheritance.mjs +1 -1
- package/src/decorators/orm/Tree.cjs +1 -1
- package/src/decorators/orm/Tree.mjs +1 -1
- package/src/decorators/orm/TreeChildren.cjs +1 -1
- package/src/decorators/orm/TreeChildren.mjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.cjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.mjs +1 -1
- package/src/decorators/orm/TreeParent.cjs +1 -1
- package/src/decorators/orm/TreeParent.mjs +1 -1
- package/src/decorators/orm/Unique.cjs +1 -1
- package/src/decorators/orm/Unique.mjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.cjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.mjs +1 -1
- package/src/decorators/orm/VersionColumn.cjs +1 -1
- package/src/decorators/orm/VersionColumn.mjs +1 -1
- package/src/decorators/orm/ViewColumn.cjs +1 -1
- package/src/decorators/orm/ViewColumn.mjs +1 -1
- package/src/decorators/orm/ViewEntity.cjs +1 -1
- package/src/decorators/orm/ViewEntity.mjs +1 -1
- package/src/decorators/orm/VirtualColumn.cjs +1 -1
- package/src/decorators/orm/VirtualColumn.mjs +1 -1
- package/src/dto/PaginationResultDTO.cjs +1 -1
- package/src/dto/PaginationResultDTO.mjs +1 -1
- package/src/dto/PaginationSearchDTO.cjs +1 -1
- package/src/dto/PaginationSearchDTO.mjs +1 -1
- package/src/exceptions/DestroyRuntimeContainerException.cjs +1 -1
- package/src/exceptions/DestroyRuntimeContainerException.mjs +1 -1
- package/src/exceptions/InvalidActionPatternDepthException.cjs +1 -1
- package/src/exceptions/InvalidActionPatternDepthException.mjs +1 -1
- package/src/exceptions/InvalidAssistantFunctionTypeException.cjs +1 -1
- package/src/exceptions/InvalidAssistantFunctionTypeException.mjs +1 -1
- package/src/exceptions/InvalidObjectTypeException.cjs +1 -1
- package/src/exceptions/InvalidObjectTypeException.mjs +1 -1
- package/src/exceptions/MethodNotFoundException.cjs +1 -1
- package/src/exceptions/MethodNotFoundException.mjs +1 -1
- package/src/exceptions/alias/AliasExistsException.cjs +1 -1
- package/src/exceptions/alias/AliasExistsException.mjs +1 -1
- package/src/exceptions/alias/AliasNotFoundException.cjs +1 -1
- package/src/exceptions/alias/AliasNotFoundException.mjs +1 -1
- package/src/exceptions/alias/InvalidAliasNameException.cjs +1 -1
- package/src/exceptions/alias/InvalidAliasNameException.mjs +1 -1
- package/src/exceptions/di/DependencyInjectionException.cjs +1 -1
- package/src/exceptions/di/DependencyInjectionException.mjs +1 -1
- package/src/exceptions/di/LifetimeLockedException.cjs +1 -1
- package/src/exceptions/di/LifetimeLockedException.mjs +1 -1
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.cjs +1 -1
- package/src/exceptions/di/OverridableObjectTargetConfigNotFoundException.mjs +1 -1
- package/src/exceptions/dto/InvalidMethodAcceptException.cjs +1 -1
- package/src/exceptions/dto/InvalidMethodAcceptException.mjs +1 -1
- package/src/exceptions/dto/InvalidMethodReturnException.cjs +1 -1
- package/src/exceptions/dto/InvalidMethodReturnException.mjs +1 -1
- package/src/exceptions/dto/InvalidValueException.cjs +1 -1
- package/src/exceptions/dto/InvalidValueException.mjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.cjs +1 -1
- package/src/interfaces/IBaseObjectConstructor.mjs +1 -1
- package/src/interfaces/IConstructor.cjs +1 -1
- package/src/interfaces/IConstructor.mjs +1 -1
- package/src/interfaces/IPatRun.cjs +1 -1
- package/src/interfaces/IPatRun.mjs +1 -1
- package/src/lib/base/BaseObject.cjs +1 -1
- package/src/lib/base/BaseObject.mjs +1 -1
- package/src/lib/base/Context.cjs +1 -1
- package/src/lib/base/Context.mjs +1 -1
- package/src/lib/base/EventEmitter.cjs +1 -1
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/abstracts/Exception.cjs +1 -1
- package/src/lib/base/abstracts/Exception.mjs +1 -1
- package/src/lib/base/async-constructor/Append.cjs +1 -1
- package/src/lib/base/async-constructor/Append.mjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.cjs +1 -1
- package/src/lib/base/async-constructor/AsyncConstructor.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.cjs +1 -1
- package/src/lib/base/internal/ActionOptions.mjs +1 -1
- package/src/lib/base/internal/ApplicationConfigLoader.cjs +1 -1
- package/src/lib/base/internal/ApplicationConfigLoader.mjs +1 -1
- package/src/lib/base/internal/BasicInfo.cjs +1 -1
- package/src/lib/base/internal/BasicInfo.mjs +1 -1
- package/src/lib/base/internal/CamelCase.cjs +1 -1
- package/src/lib/base/internal/CamelCase.mjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.cjs +1 -1
- package/src/lib/base/internal/ConfigurableRecordsInjection.mjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.cjs +1 -1
- package/src/lib/base/internal/ConstructorSymbol.mjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.cjs +1 -1
- package/src/lib/base/internal/ControllerEntrypoint.mjs +1 -1
- package/src/lib/base/internal/DataValidator.cjs +1 -1
- package/src/lib/base/internal/DataValidator.mjs +1 -1
- package/src/lib/base/internal/DatabaseSymbol.cjs +1 -1
- package/src/lib/base/internal/DatabaseSymbol.mjs +1 -1
- package/src/lib/base/internal/FlexibleDTO.cjs +1 -1
- package/src/lib/base/internal/FlexibleDTO.mjs +1 -1
- package/src/lib/base/internal/GetActionDTOAndOptions.cjs +1 -1
- package/src/lib/base/internal/GetActionDTOAndOptions.mjs +1 -1
- package/src/lib/base/internal/IEEE754.cjs +1 -1
- package/src/lib/base/internal/IEEE754.mjs +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.cjs +1 -1
- package/src/lib/base/internal/MethodAssistantFunction.mjs +1 -1
- package/src/lib/base/internal/MethodValidation.cjs +1 -1
- package/src/lib/base/internal/MethodValidation.mjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.cjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.mjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.cjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.mjs +1 -1
- package/src/lib/base/internal/ObjectContainer.cjs +1 -1
- package/src/lib/base/internal/ObjectContainer.mjs +1 -1
- package/src/lib/base/internal/ObjectInjection.cjs +1 -1
- package/src/lib/base/internal/ObjectInjection.mjs +1 -1
- package/src/lib/base/internal/ObjectLifetime.cjs +1 -1
- package/src/lib/base/internal/ObjectLifetime.mjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.cjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +1 -1
- package/src/lib/base/internal/ObjectType.cjs +1 -1
- package/src/lib/base/internal/ObjectType.mjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.cjs +1 -1
- package/src/lib/base/internal/ObjectWeakRefs.mjs +1 -1
- package/src/lib/base/internal/PatternManager.cjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/base/internal/StringifyPattern.cjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/base/internal/ThrowWarning.cjs +1 -1
- package/src/lib/base/internal/ThrowWarning.mjs +1 -1
- package/src/lib/context/CLIContext.cjs +1 -1
- package/src/lib/context/CLIContext.mjs +1 -1
- package/src/lib/context/HTTPContext.cjs +1 -1
- package/src/lib/context/HTTPContext.mjs +1 -1
- package/src/lib/context/ServiceContext.cjs +1 -1
- package/src/lib/context/ServiceContext.mjs +1 -1
- package/src/lib/core/Alias.cjs +1 -1
- package/src/lib/core/Alias.mjs +1 -1
- package/src/lib/core/Application.cjs +1 -1
- package/src/lib/core/Application.mjs +1 -1
- package/src/lib/core/Component.cjs +1 -1
- package/src/lib/core/Component.mjs +1 -1
- package/src/lib/core/Container.cjs +1 -1
- package/src/lib/core/Container.mjs +1 -1
- package/src/lib/core/DTO.cjs +1 -1
- package/src/lib/core/DTO.mjs +1 -1
- package/src/lib/core/Module.cjs +1 -1
- package/src/lib/core/Module.mjs +1 -1
- package/src/lib/core/Provider.cjs +1 -1
- package/src/lib/core/Provider.mjs +1 -1
- package/src/lib/core/Time.cjs +1 -1
- package/src/lib/core/Time.mjs +1 -1
- package/src/lib/helpers/ArrayToSet.cjs +1 -1
- package/src/lib/helpers/ArrayToSet.mjs +1 -1
- package/src/lib/helpers/As.cjs +1 -1
- package/src/lib/helpers/As.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToIterable.mjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.cjs +1 -1
- package/src/lib/helpers/ConvertArrayLikeToStream.mjs +1 -1
- package/src/lib/helpers/Delay.cjs +1 -1
- package/src/lib/helpers/Delay.mjs +1 -1
- package/src/lib/helpers/DevNull.cjs +1 -1
- package/src/lib/helpers/DevNull.mjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.cjs +1 -1
- package/src/lib/helpers/GetObjectNestingDepth.mjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.cjs +1 -1
- package/src/lib/helpers/GetObjectPropertyPaths.mjs +1 -1
- package/src/lib/helpers/Glob.cjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/GraceExit.cjs +1 -1
- package/src/lib/helpers/GraceExit.mjs +1 -1
- package/src/lib/helpers/HexToIEEE754.cjs +1 -1
- package/src/lib/helpers/HexToIEEE754.mjs +1 -1
- package/src/lib/helpers/HexToSigned.cjs +1 -1
- package/src/lib/helpers/HexToSigned.mjs +1 -1
- package/src/lib/helpers/HexToUnsigned.cjs +1 -1
- package/src/lib/helpers/HexToUnsigned.mjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.cjs +1 -1
- package/src/lib/helpers/IEEE754ToHex.mjs +1 -1
- package/src/lib/helpers/IPToolkit.cjs +1 -1
- package/src/lib/helpers/IPToolkit.mjs +1 -1
- package/src/lib/helpers/IsAbortError.cjs +1 -1
- package/src/lib/helpers/IsAbortError.mjs +1 -1
- package/src/lib/helpers/IsEmptyObject.cjs +1 -1
- package/src/lib/helpers/IsEmptyObject.mjs +1 -1
- package/src/lib/helpers/IsExists.cjs +1 -1
- package/src/lib/helpers/IsExists.mjs +1 -1
- package/src/lib/helpers/IsGlobString.cjs +1 -1
- package/src/lib/helpers/IsGlobString.mjs +1 -1
- package/src/lib/helpers/IsHtml.cjs +1 -1
- package/src/lib/helpers/IsHtml.mjs +1 -1
- package/src/lib/helpers/IsNativeFunction.cjs +1 -1
- package/src/lib/helpers/IsNativeFunction.mjs +1 -1
- package/src/lib/helpers/IsPath.cjs +1 -1
- package/src/lib/helpers/IsPath.mjs +1 -1
- package/src/lib/helpers/IsPromise.cjs +1 -1
- package/src/lib/helpers/IsPromise.mjs +1 -1
- package/src/lib/helpers/IsPromiseLike.cjs +1 -1
- package/src/lib/helpers/IsPromiseLike.mjs +1 -1
- package/src/lib/helpers/IsSymbol.cjs +1 -1
- package/src/lib/helpers/IsSymbol.mjs +1 -1
- package/src/lib/helpers/IsXML.cjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.cjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- package/src/lib/helpers/MergeArray.cjs +1 -1
- package/src/lib/helpers/MergeArray.mjs +1 -1
- package/src/lib/helpers/MergeMap.cjs +1 -1
- package/src/lib/helpers/MergeMap.mjs +1 -1
- package/src/lib/helpers/MergeSet.cjs +1 -1
- package/src/lib/helpers/MergeSet.mjs +1 -1
- package/src/lib/helpers/NoCase.cjs +1 -1
- package/src/lib/helpers/NoCase.mjs +1 -1
- package/src/lib/helpers/NonceStr.cjs +1 -1
- package/src/lib/helpers/NonceStr.mjs +1 -1
- package/src/lib/helpers/ObjectConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectHash.cjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructor.mjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.cjs +1 -1
- package/src/lib/helpers/ObjectParentConstructors.mjs +1 -1
- package/src/lib/helpers/ObjectPath.cjs +1 -1
- package/src/lib/helpers/ObjectPath.mjs +1 -1
- package/src/lib/helpers/ObjectPrototype.cjs +1 -1
- package/src/lib/helpers/ObjectPrototype.mjs +1 -1
- package/src/lib/helpers/ObjectToMap.cjs +1 -1
- package/src/lib/helpers/ObjectToMap.mjs +1 -1
- package/src/lib/helpers/Paginator.cjs +1 -1
- package/src/lib/helpers/Paginator.mjs +1 -1
- package/src/lib/helpers/RandomString.cjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/SHA1.cjs +1 -1
- package/src/lib/helpers/SHA1.mjs +1 -1
- package/src/lib/helpers/SHA256.cjs +1 -1
- package/src/lib/helpers/SHA256.mjs +1 -1
- package/src/lib/helpers/SetToArray.cjs +1 -1
- package/src/lib/helpers/SetToArray.mjs +1 -1
- package/src/lib/helpers/SignedToHex.cjs +1 -1
- package/src/lib/helpers/SignedToHex.mjs +1 -1
- package/src/lib/helpers/SortArray.cjs +1 -1
- package/src/lib/helpers/SortArray.mjs +1 -1
- package/src/lib/helpers/SortKeys.cjs +1 -1
- package/src/lib/helpers/SortKeys.mjs +1 -1
- package/src/lib/helpers/SortObject.cjs +1 -1
- package/src/lib/helpers/SortObject.mjs +1 -1
- package/src/lib/helpers/Statistics.cjs +1 -1
- package/src/lib/helpers/Statistics.mjs +1 -1
- package/src/lib/helpers/Templating.cjs +1 -1
- package/src/lib/helpers/Templating.mjs +1 -1
- package/src/lib/helpers/URLBuilder.cjs +1 -1
- package/src/lib/helpers/URLBuilder.mjs +1 -1
- package/src/lib/helpers/UUID.cjs +1 -1
- package/src/lib/helpers/UUID.mjs +1 -1
- package/src/lib/helpers/UniqueArray.cjs +1 -1
- package/src/lib/helpers/UniqueArray.mjs +1 -1
- package/src/lib/helpers/UnsignedToHex.cjs +1 -1
- package/src/lib/helpers/UnsignedToHex.mjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.cjs +1 -1
- package/src/lib/ioc/DependencyInjectionContainer.mjs +1 -1
- package/src/lib/ioc/Errors.cjs +1 -1
- package/src/lib/ioc/Errors.mjs +1 -1
- package/src/lib/ioc/FunctionTokenizer.cjs +1 -1
- package/src/lib/ioc/FunctionTokenizer.mjs +1 -1
- package/src/lib/ioc/InjectionMode.cjs +1 -1
- package/src/lib/ioc/InjectionMode.mjs +1 -1
- package/src/lib/ioc/Lifetime.cjs +1 -1
- package/src/lib/ioc/Lifetime.mjs +1 -1
- package/src/lib/ioc/ListModules.cjs +1 -1
- package/src/lib/ioc/ListModules.mjs +1 -1
- package/src/lib/ioc/LoadModules.cjs +1 -1
- package/src/lib/ioc/LoadModules.mjs +1 -1
- package/src/lib/ioc/ParamParser.cjs +1 -1
- package/src/lib/ioc/ParamParser.mjs +1 -1
- package/src/lib/ioc/Resolvers.cjs +1 -1
- package/src/lib/ioc/Resolvers.mjs +1 -1
- package/src/lib/ioc/Utils.cjs +1 -1
- package/src/lib/ioc/Utils.mjs +1 -1
- package/src/lib/validation/VLD.cjs +1 -1
- package/src/lib/validation/VLD.mjs +1 -1
- package/src/lib/validation/interfaces/AlternativesSchema.cjs +1 -1
- package/src/lib/validation/interfaces/AlternativesSchema.mjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.cjs +1 -1
- package/src/lib/validation/interfaces/AnySchema.mjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.cjs +1 -1
- package/src/lib/validation/interfaces/ArraySchema.mjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.cjs +1 -1
- package/src/lib/validation/interfaces/Base64Options.mjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/BaseValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BigIntSchema.mjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.cjs +1 -1
- package/src/lib/validation/interfaces/BinarySchema.mjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.cjs +1 -1
- package/src/lib/validation/interfaces/BooleanSchema.mjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/CustomHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DataUriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.cjs +1 -1
- package/src/lib/validation/interfaces/DateSchema.mjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DependencyOptions.mjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/DomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.cjs +1 -1
- package/src/lib/validation/interfaces/EmailOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorFormattingOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorReport.mjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ErrorValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.cjs +1 -1
- package/src/lib/validation/interfaces/ExtensionFlag.mjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.cjs +1 -1
- package/src/lib/validation/interfaces/ExternalHelpers.mjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.cjs +1 -1
- package/src/lib/validation/interfaces/FunctionSchema.mjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.cjs +1 -1
- package/src/lib/validation/interfaces/GuidOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.cjs +1 -1
- package/src/lib/validation/interfaces/HierarchySeparatorOptions.mjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.cjs +1 -1
- package/src/lib/validation/interfaces/IpOptions.mjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.cjs +1 -1
- package/src/lib/validation/interfaces/LanguageMessageTemplate.mjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.cjs +1 -1
- package/src/lib/validation/interfaces/LinkSchema.mjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.cjs +1 -1
- package/src/lib/validation/interfaces/NumberSchema.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectPatternOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.cjs +1 -1
- package/src/lib/validation/interfaces/ObjectSchema.mjs +1 -1
- package/src/lib/validation/interfaces/Reference.cjs +1 -1
- package/src/lib/validation/interfaces/Reference.mjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ReferenceOptions.mjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.cjs +1 -1
- package/src/lib/validation/interfaces/RenameOptions.mjs +1 -1
- package/src/lib/validation/interfaces/State.cjs +1 -1
- package/src/lib/validation/interfaces/State.mjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.cjs +1 -1
- package/src/lib/validation/interfaces/StringRegexOptions.mjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.cjs +1 -1
- package/src/lib/validation/interfaces/StringSchema.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchCases.mjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.cjs +1 -1
- package/src/lib/validation/interfaces/SwitchDefault.mjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.cjs +1 -1
- package/src/lib/validation/interfaces/SymbolSchema.mjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.cjs +1 -1
- package/src/lib/validation/interfaces/TopLevelDomainOptions.mjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.cjs +1 -1
- package/src/lib/validation/interfaces/UriOptions.mjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.cjs +1 -1
- package/src/lib/validation/interfaces/ValidationOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenOptions.mjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.cjs +1 -1
- package/src/lib/validation/interfaces/WhenSchemaOptions.mjs +1 -1
- package/src/lib/validation/types/CustomValidator.cjs +1 -1
- package/src/lib/validation/types/CustomValidator.mjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.cjs +1 -1
- package/src/lib/validation/types/ExtensionBoundSchema.mjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.cjs +1 -1
- package/src/lib/validation/types/ExternalValidationFunction.mjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.cjs +1 -1
- package/src/lib/validation/types/IsNonPrimitiveSubsetUnion.mjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.cjs +1 -1
- package/src/lib/validation/types/IsPrimitiveSubset.mjs +1 -1
- package/src/lib/validation/types/IsUnion.cjs +1 -1
- package/src/lib/validation/types/IsUnion.mjs +1 -1
- package/src/lib/validation/types/LanguageMessages.cjs +1 -1
- package/src/lib/validation/types/LanguageMessages.mjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.cjs +1 -1
- package/src/lib/validation/types/NoNestedArrays.mjs +1 -1
- package/src/lib/validation/types/NullableType.cjs +1 -1
- package/src/lib/validation/types/NullableType.mjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.cjs +1 -1
- package/src/lib/validation/types/ObjectPropertiesSchema.mjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.cjs +1 -1
- package/src/lib/validation/types/PartialSchemaMap.mjs +1 -1
- package/src/lib/validation/types/PresenceMode.cjs +1 -1
- package/src/lib/validation/types/PresenceMode.mjs +1 -1
- package/src/lib/validation/types/Primitives.cjs +1 -1
- package/src/lib/validation/types/Primitives.mjs +1 -1
- package/src/lib/validation/types/Schema.cjs +1 -1
- package/src/lib/validation/types/Schema.mjs +1 -1
- package/src/lib/validation/types/SchemaFunction.cjs +1 -1
- package/src/lib/validation/types/SchemaFunction.mjs +1 -1
- package/src/lib/validation/types/SchemaLike.cjs +1 -1
- package/src/lib/validation/types/SchemaLike.mjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/SchemaLikeWithoutArray.mjs +1 -1
- package/src/lib/validation/types/SchemaMap.cjs +1 -1
- package/src/lib/validation/types/SchemaMap.mjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.cjs +1 -1
- package/src/lib/validation/types/StrictSchemaMap.mjs +1 -1
- package/src/lib/validation/types/Types.cjs +1 -1
- package/src/lib/validation/types/Types.mjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.cjs +1 -1
- package/src/lib/validation/types/UnwrapSchemaLikeWithoutArray.mjs +1 -1
- package/src/options/ApplicationOptions.cjs +1 -1
- package/src/options/ApplicationOptions.mjs +1 -1
- package/src/options/LoadAnonymousObjectOptions.cjs +1 -1
- package/src/options/LoadAnonymousObjectOptions.mjs +1 -1
- package/src/options/LoadNamedObjectOptions.cjs +1 -1
- package/src/options/LoadNamedObjectOptions.mjs +1 -1
- package/src/options/LoadObjectOptions.cjs +1 -1
- package/src/options/LoadObjectOptions.mjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.cjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.mjs +1 -1
- package/src/options/ModuleOptions.cjs +1 -1
- package/src/options/ModuleOptions.mjs +1 -1
- package/src/options/OverridableNamedObjectOptions.cjs +1 -1
- package/src/options/OverridableNamedObjectOptions.mjs +1 -1
- package/src/options/OverridableObjectOptions.cjs +1 -1
- package/src/options/OverridableObjectOptions.mjs +1 -1
- package/src/providers/Database.cjs +1 -1
- package/src/providers/Database.mjs +1 -1
- package/src/providers/PasswordHash.cjs +1 -1
- package/src/providers/PasswordHash.mjs +1 -1
- package/src/providers/migration/GenerateMigration.cjs +1 -1
- package/src/providers/migration/GenerateMigration.mjs +1 -1
- package/src/types/ActionPattern.cjs +1 -1
- package/src/types/ActionPattern.mjs +1 -1
- package/src/types/ClassDecorator.cjs +1 -1
- package/src/types/ClassDecorator.mjs +1 -1
- package/src/types/ComponentOptions.cjs +1 -1
- package/src/types/ComponentOptions.mjs +1 -1
- package/src/types/JSONSchema.cjs +1 -1
- package/src/types/JSONSchema.mjs +1 -1
- package/src/types/MethodDecorator.cjs +1 -1
- package/src/types/MethodDecorator.mjs +1 -1
- package/src/types/ModuleOptions.cjs +1 -1
- package/src/types/ModuleOptions.mjs +1 -1
- package/src/types/ObjectOptions.cjs +1 -1
- package/src/types/ObjectOptions.mjs +1 -1
- package/src/types/ParameterDecorator.cjs +1 -1
- package/src/types/ParameterDecorator.mjs +1 -1
- package/src/types/PropertyDecorator.cjs +1 -1
- package/src/types/PropertyDecorator.mjs +1 -1
- package/src/types/ProviderOptions.cjs +1 -1
- package/src/types/ProviderOptions.mjs +1 -1
- package/vendor/Package.internal.1.cjs +1 -1
- package/vendor/Package.internal.1.mjs +1 -1
- package/vendor/Package.internal.10.cjs +1 -1
- package/vendor/Package.internal.10.mjs +1 -1
- package/vendor/Package.internal.11.cjs +1 -1
- package/vendor/Package.internal.11.mjs +1 -1
- package/vendor/Package.internal.12.cjs +1 -1
- package/vendor/Package.internal.12.mjs +1 -1
- package/vendor/Package.internal.13.cjs +1 -1
- package/vendor/Package.internal.13.mjs +1 -1
- package/vendor/Package.internal.14.cjs +1 -1
- package/vendor/Package.internal.14.mjs +1 -1
- package/vendor/Package.internal.15.cjs +1 -1
- package/vendor/Package.internal.15.mjs +1 -1
- package/vendor/Package.internal.16.cjs +1 -1
- package/vendor/Package.internal.16.mjs +1 -1
- package/vendor/Package.internal.17.cjs +1 -1
- package/vendor/Package.internal.17.mjs +1 -1
- package/vendor/Package.internal.18.cjs +1 -1
- package/vendor/Package.internal.18.mjs +1 -1
- package/vendor/Package.internal.19.cjs +1 -1
- package/vendor/Package.internal.19.mjs +1 -1
- package/vendor/Package.internal.2.cjs +1 -1
- package/vendor/Package.internal.2.mjs +1 -1
- package/vendor/Package.internal.20.cjs +1 -1
- package/vendor/Package.internal.20.mjs +1 -1
- package/vendor/Package.internal.21.cjs +1 -1
- package/vendor/Package.internal.21.mjs +1 -1
- package/vendor/Package.internal.22.cjs +1 -1
- package/vendor/Package.internal.22.mjs +1 -1
- package/vendor/Package.internal.23.cjs +1 -1
- package/vendor/Package.internal.23.mjs +1 -1
- package/vendor/Package.internal.24.cjs +1 -1
- package/vendor/Package.internal.24.mjs +1 -1
- package/vendor/Package.internal.25.cjs +1 -1
- package/vendor/Package.internal.25.mjs +1 -1
- package/vendor/Package.internal.26.cjs +1 -1
- package/vendor/Package.internal.26.mjs +1 -1
- package/vendor/Package.internal.27.cjs +1 -1
- package/vendor/Package.internal.27.mjs +1 -1
- package/vendor/Package.internal.28.cjs +1 -1
- package/vendor/Package.internal.28.mjs +1 -1
- package/vendor/Package.internal.29.cjs +1 -1
- package/vendor/Package.internal.29.mjs +1 -1
- package/vendor/Package.internal.3.cjs +1 -1
- package/vendor/Package.internal.3.mjs +1 -1
- package/vendor/Package.internal.30.cjs +1 -1
- package/vendor/Package.internal.30.mjs +1 -1
- package/vendor/Package.internal.31.cjs +1 -1
- package/vendor/Package.internal.31.mjs +1 -1
- package/vendor/Package.internal.310.cjs +1 -1
- package/vendor/Package.internal.310.mjs +1 -1
- package/vendor/Package.internal.32.cjs +1 -1
- package/vendor/Package.internal.32.mjs +1 -1
- package/vendor/Package.internal.33.cjs +1 -1
- package/vendor/Package.internal.33.mjs +1 -1
- package/vendor/Package.internal.34.cjs +1 -1
- package/vendor/Package.internal.34.mjs +1 -1
- package/vendor/Package.internal.35.cjs +1 -1
- package/vendor/Package.internal.35.mjs +1 -1
- package/vendor/Package.internal.36.cjs +1 -1
- package/vendor/Package.internal.36.mjs +1 -1
- package/vendor/Package.internal.37.cjs +1 -1
- package/vendor/Package.internal.37.mjs +1 -1
- package/vendor/Package.internal.38.cjs +1 -1
- package/vendor/Package.internal.38.mjs +1 -1
- package/vendor/Package.internal.39.cjs +1 -1
- package/vendor/Package.internal.39.mjs +1 -1
- package/vendor/Package.internal.4.cjs +1 -1
- package/vendor/Package.internal.4.mjs +1 -1
- package/vendor/Package.internal.40.cjs +1 -1
- package/vendor/Package.internal.40.mjs +1 -1
- package/vendor/Package.internal.41.cjs +1 -1
- package/vendor/Package.internal.41.mjs +1 -1
- package/vendor/Package.internal.42.cjs +1 -1
- package/vendor/Package.internal.42.mjs +1 -1
- package/vendor/Package.internal.43.cjs +1 -1
- package/vendor/Package.internal.43.mjs +1 -1
- package/vendor/Package.internal.44.cjs +1 -1
- package/vendor/Package.internal.44.mjs +1 -1
- package/vendor/Package.internal.45.cjs +1 -1
- package/vendor/Package.internal.45.mjs +1 -1
- package/vendor/Package.internal.46.cjs +1 -1
- package/vendor/Package.internal.46.mjs +1 -1
- package/vendor/Package.internal.47.cjs +1 -1
- package/vendor/Package.internal.47.mjs +1 -1
- package/vendor/Package.internal.48.cjs +1 -1
- package/vendor/Package.internal.48.mjs +1 -1
- package/vendor/Package.internal.49.cjs +1 -1
- package/vendor/Package.internal.49.mjs +1 -1
- package/vendor/Package.internal.5.cjs +1 -1
- package/vendor/Package.internal.5.mjs +1 -1
- package/vendor/Package.internal.50.cjs +1 -1
- package/vendor/Package.internal.50.mjs +1 -1
- package/vendor/Package.internal.51.cjs +1 -1
- package/vendor/Package.internal.51.mjs +1 -1
- package/vendor/Package.internal.512.cjs +1 -1
- package/vendor/Package.internal.512.mjs +1 -1
- package/vendor/Package.internal.52.cjs +1 -1
- package/vendor/Package.internal.52.mjs +1 -1
- package/vendor/Package.internal.5210.cjs +1 -1
- package/vendor/Package.internal.5210.mjs +1 -1
- package/vendor/Package.internal.522.cjs +1 -1
- package/vendor/Package.internal.522.mjs +1 -1
- package/vendor/Package.internal.523.cjs +1 -1
- package/vendor/Package.internal.523.mjs +1 -1
- package/vendor/Package.internal.524.cjs +1 -1
- package/vendor/Package.internal.524.mjs +1 -1
- package/vendor/Package.internal.525.cjs +1 -1
- package/vendor/Package.internal.525.mjs +1 -1
- package/vendor/Package.internal.526.cjs +1 -1
- package/vendor/Package.internal.526.mjs +1 -1
- package/vendor/Package.internal.527.cjs +1 -1
- package/vendor/Package.internal.527.mjs +1 -1
- package/vendor/Package.internal.528.cjs +1 -1
- package/vendor/Package.internal.528.mjs +1 -1
- package/vendor/Package.internal.529.cjs +1 -1
- package/vendor/Package.internal.529.mjs +1 -1
- package/vendor/Package.internal.53.cjs +1 -1
- package/vendor/Package.internal.53.mjs +1 -1
- package/vendor/Package.internal.54.cjs +1 -1
- package/vendor/Package.internal.54.mjs +1 -1
- package/vendor/Package.internal.55.cjs +1 -1
- package/vendor/Package.internal.55.mjs +1 -1
- package/vendor/Package.internal.56.cjs +150 -157
- package/vendor/Package.internal.56.mjs +912 -915
- package/vendor/Package.internal.6.cjs +1 -1
- package/vendor/Package.internal.6.mjs +1 -1
- package/vendor/Package.internal.7.cjs +1 -1
- package/vendor/Package.internal.7.mjs +1 -1
- package/vendor/Package.internal.8.cjs +1 -1
- package/vendor/Package.internal.8.mjs +1 -1
- package/vendor/Package.internal.9.cjs +1 -1
- package/vendor/Package.internal.9.mjs +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Build Date: Fri Dec 12 2025 23:
|
|
1
|
+
/* Build Date: Fri Dec 12 2025 23:38:05 GMT+0800 (China Standard Time) */
|
|
2
2
|
import { _ as __decorate, a as __metadata } from "./Package.internal.3.mjs";
|
|
3
3
|
|
|
4
4
|
import { Provider } from "../src/lib/core/Provider.mjs";
|
|
@@ -190,7 +190,7 @@ var errors$3 = {
|
|
|
190
190
|
}
|
|
191
191
|
};
|
|
192
192
|
|
|
193
|
-
var types$
|
|
193
|
+
var types$3 = {
|
|
194
194
|
EOC: 0,
|
|
195
195
|
Boolean: 1,
|
|
196
196
|
Integer: 2,
|
|
@@ -301,7 +301,7 @@ var assert$2 = require$$0$2;
|
|
|
301
301
|
|
|
302
302
|
var Buffer$3 = safer_1.Buffer;
|
|
303
303
|
|
|
304
|
-
var ASN1$1 = types$
|
|
304
|
+
var ASN1$1 = types$3;
|
|
305
305
|
|
|
306
306
|
var errors$2 = errors$3;
|
|
307
307
|
|
|
@@ -454,7 +454,7 @@ var assert$1 = require$$0$2;
|
|
|
454
454
|
|
|
455
455
|
var Buffer$2 = safer_1.Buffer;
|
|
456
456
|
|
|
457
|
-
var ASN1 = types$
|
|
457
|
+
var ASN1 = types$3;
|
|
458
458
|
|
|
459
459
|
var errors$1 = errors$3;
|
|
460
460
|
|
|
@@ -694,7 +694,7 @@ ber.exports;
|
|
|
694
694
|
|
|
695
695
|
(function(e) {
|
|
696
696
|
var t = errors$3;
|
|
697
|
-
var r = types$
|
|
697
|
+
var r = types$3;
|
|
698
698
|
var n = reader$1;
|
|
699
699
|
var s = writer$1;
|
|
700
700
|
e.exports = {
|
|
@@ -760,9 +760,9 @@ naclFast.exports;
|
|
|
760
760
|
function E(e, t, r, n) {
|
|
761
761
|
return m(e, t, r, n, 32);
|
|
762
762
|
}
|
|
763
|
-
function
|
|
764
|
-
var s = n[0] & 255 | (n[1] & 255) << 8 | (n[2] & 255) << 16 | (n[3] & 255) << 24, o = r[0] & 255 | (r[1] & 255) << 8 | (r[2] & 255) << 16 | (r[3] & 255) << 24, a = r[4] & 255 | (r[5] & 255) << 8 | (r[6] & 255) << 16 | (r[7] & 255) << 24, l = r[8] & 255 | (r[9] & 255) << 8 | (r[10] & 255) << 16 | (r[11] & 255) << 24, c = r[12] & 255 | (r[13] & 255) << 8 | (r[14] & 255) << 16 | (r[15] & 255) << 24, u = n[4] & 255 | (n[5] & 255) << 8 | (n[6] & 255) << 16 | (n[7] & 255) << 24, d = t[0] & 255 | (t[1] & 255) << 8 | (t[2] & 255) << 16 | (t[3] & 255) << 24, h = t[4] & 255 | (t[5] & 255) << 8 | (t[6] & 255) << 16 | (t[7] & 255) << 24, p = t[8] & 255 | (t[9] & 255) << 8 | (t[10] & 255) << 16 | (t[11] & 255) << 24, g = t[12] & 255 | (t[13] & 255) << 8 | (t[14] & 255) << 16 | (t[15] & 255) << 24, m = n[8] & 255 | (n[9] & 255) << 8 | (n[10] & 255) << 16 | (n[11] & 255) << 24, _ = r[16] & 255 | (r[17] & 255) << 8 | (r[18] & 255) << 16 | (r[19] & 255) << 24, E = r[20] & 255 | (r[21] & 255) << 8 | (r[22] & 255) << 16 | (r[23] & 255) << 24,
|
|
765
|
-
var A = s, b = o, C = a, w = l, I = c, T = u, R = d, k = h, P = p, O = g,
|
|
763
|
+
function y(e, t, r, n) {
|
|
764
|
+
var s = n[0] & 255 | (n[1] & 255) << 8 | (n[2] & 255) << 16 | (n[3] & 255) << 24, o = r[0] & 255 | (r[1] & 255) << 8 | (r[2] & 255) << 16 | (r[3] & 255) << 24, a = r[4] & 255 | (r[5] & 255) << 8 | (r[6] & 255) << 16 | (r[7] & 255) << 24, l = r[8] & 255 | (r[9] & 255) << 8 | (r[10] & 255) << 16 | (r[11] & 255) << 24, c = r[12] & 255 | (r[13] & 255) << 8 | (r[14] & 255) << 16 | (r[15] & 255) << 24, u = n[4] & 255 | (n[5] & 255) << 8 | (n[6] & 255) << 16 | (n[7] & 255) << 24, d = t[0] & 255 | (t[1] & 255) << 8 | (t[2] & 255) << 16 | (t[3] & 255) << 24, h = t[4] & 255 | (t[5] & 255) << 8 | (t[6] & 255) << 16 | (t[7] & 255) << 24, p = t[8] & 255 | (t[9] & 255) << 8 | (t[10] & 255) << 16 | (t[11] & 255) << 24, g = t[12] & 255 | (t[13] & 255) << 8 | (t[14] & 255) << 16 | (t[15] & 255) << 24, m = n[8] & 255 | (n[9] & 255) << 8 | (n[10] & 255) << 16 | (n[11] & 255) << 24, _ = r[16] & 255 | (r[17] & 255) << 8 | (r[18] & 255) << 16 | (r[19] & 255) << 24, E = r[20] & 255 | (r[21] & 255) << 8 | (r[22] & 255) << 16 | (r[23] & 255) << 24, y = r[24] & 255 | (r[25] & 255) << 8 | (r[26] & 255) << 16 | (r[27] & 255) << 24, v = r[28] & 255 | (r[29] & 255) << 8 | (r[30] & 255) << 16 | (r[31] & 255) << 24, S = n[12] & 255 | (n[13] & 255) << 8 | (n[14] & 255) << 16 | (n[15] & 255) << 24;
|
|
765
|
+
var A = s, b = o, C = a, w = l, I = c, T = u, R = d, k = h, P = p, O = g, $ = m, B = _, N = E, D = y, L = v, U = S, M;
|
|
766
766
|
for (var x = 0; x < 20; x += 2) {
|
|
767
767
|
M = A + N | 0;
|
|
768
768
|
I ^= M << 7 | M >>> 32 - 7;
|
|
@@ -780,21 +780,21 @@ naclFast.exports;
|
|
|
780
780
|
b ^= M << 13 | M >>> 32 - 13;
|
|
781
781
|
M = b + D | 0;
|
|
782
782
|
T ^= M << 18 | M >>> 32 - 18;
|
|
783
|
-
M =
|
|
783
|
+
M = $ + R | 0;
|
|
784
784
|
L ^= M << 7 | M >>> 32 - 7;
|
|
785
|
-
M = L +
|
|
785
|
+
M = L + $ | 0;
|
|
786
786
|
C ^= M << 9 | M >>> 32 - 9;
|
|
787
787
|
M = C + L | 0;
|
|
788
788
|
R ^= M << 13 | M >>> 32 - 13;
|
|
789
789
|
M = R + C | 0;
|
|
790
|
-
|
|
791
|
-
M = U +
|
|
790
|
+
$ ^= M << 18 | M >>> 32 - 18;
|
|
791
|
+
M = U + B | 0;
|
|
792
792
|
w ^= M << 7 | M >>> 32 - 7;
|
|
793
793
|
M = w + U | 0;
|
|
794
794
|
k ^= M << 9 | M >>> 32 - 9;
|
|
795
795
|
M = k + w | 0;
|
|
796
|
-
|
|
797
|
-
M =
|
|
796
|
+
B ^= M << 13 | M >>> 32 - 13;
|
|
797
|
+
M = B + k | 0;
|
|
798
798
|
U ^= M << 18 | M >>> 32 - 18;
|
|
799
799
|
M = A + w | 0;
|
|
800
800
|
b ^= M << 7 | M >>> 32 - 7;
|
|
@@ -812,14 +812,14 @@ naclFast.exports;
|
|
|
812
812
|
I ^= M << 13 | M >>> 32 - 13;
|
|
813
813
|
M = I + k | 0;
|
|
814
814
|
T ^= M << 18 | M >>> 32 - 18;
|
|
815
|
-
M =
|
|
816
|
-
|
|
817
|
-
M =
|
|
815
|
+
M = $ + O | 0;
|
|
816
|
+
B ^= M << 7 | M >>> 32 - 7;
|
|
817
|
+
M = B + $ | 0;
|
|
818
818
|
P ^= M << 9 | M >>> 32 - 9;
|
|
819
|
-
M = P +
|
|
819
|
+
M = P + B | 0;
|
|
820
820
|
O ^= M << 13 | M >>> 32 - 13;
|
|
821
821
|
M = O + P | 0;
|
|
822
|
-
|
|
822
|
+
$ ^= M << 18 | M >>> 32 - 18;
|
|
823
823
|
M = U + L | 0;
|
|
824
824
|
N ^= M << 7 | M >>> 32 - 7;
|
|
825
825
|
M = N + U | 0;
|
|
@@ -839,11 +839,11 @@ naclFast.exports;
|
|
|
839
839
|
k = k + h | 0;
|
|
840
840
|
P = P + p | 0;
|
|
841
841
|
O = O + g | 0;
|
|
842
|
-
|
|
843
|
-
|
|
842
|
+
$ = $ + m | 0;
|
|
843
|
+
B = B + _ | 0;
|
|
844
844
|
N = N + E | 0;
|
|
845
|
-
D = D +
|
|
846
|
-
L = L +
|
|
845
|
+
D = D + y | 0;
|
|
846
|
+
L = L + v | 0;
|
|
847
847
|
U = U + S | 0;
|
|
848
848
|
e[0] = A >>> 0 & 255;
|
|
849
849
|
e[1] = A >>> 8 & 255;
|
|
@@ -885,14 +885,14 @@ naclFast.exports;
|
|
|
885
885
|
e[37] = O >>> 8 & 255;
|
|
886
886
|
e[38] = O >>> 16 & 255;
|
|
887
887
|
e[39] = O >>> 24 & 255;
|
|
888
|
-
e[40] =
|
|
889
|
-
e[41] =
|
|
890
|
-
e[42] =
|
|
891
|
-
e[43] =
|
|
892
|
-
e[44] =
|
|
893
|
-
e[45] =
|
|
894
|
-
e[46] =
|
|
895
|
-
e[47] =
|
|
888
|
+
e[40] = $ >>> 0 & 255;
|
|
889
|
+
e[41] = $ >>> 8 & 255;
|
|
890
|
+
e[42] = $ >>> 16 & 255;
|
|
891
|
+
e[43] = $ >>> 24 & 255;
|
|
892
|
+
e[44] = B >>> 0 & 255;
|
|
893
|
+
e[45] = B >>> 8 & 255;
|
|
894
|
+
e[46] = B >>> 16 & 255;
|
|
895
|
+
e[47] = B >>> 24 & 255;
|
|
896
896
|
e[48] = N >>> 0 & 255;
|
|
897
897
|
e[49] = N >>> 8 & 255;
|
|
898
898
|
e[50] = N >>> 16 & 255;
|
|
@@ -910,9 +910,9 @@ naclFast.exports;
|
|
|
910
910
|
e[62] = U >>> 16 & 255;
|
|
911
911
|
e[63] = U >>> 24 & 255;
|
|
912
912
|
}
|
|
913
|
-
function
|
|
914
|
-
var s = n[0] & 255 | (n[1] & 255) << 8 | (n[2] & 255) << 16 | (n[3] & 255) << 24, o = r[0] & 255 | (r[1] & 255) << 8 | (r[2] & 255) << 16 | (r[3] & 255) << 24, a = r[4] & 255 | (r[5] & 255) << 8 | (r[6] & 255) << 16 | (r[7] & 255) << 24, l = r[8] & 255 | (r[9] & 255) << 8 | (r[10] & 255) << 16 | (r[11] & 255) << 24, c = r[12] & 255 | (r[13] & 255) << 8 | (r[14] & 255) << 16 | (r[15] & 255) << 24, u = n[4] & 255 | (n[5] & 255) << 8 | (n[6] & 255) << 16 | (n[7] & 255) << 24, d = t[0] & 255 | (t[1] & 255) << 8 | (t[2] & 255) << 16 | (t[3] & 255) << 24, h = t[4] & 255 | (t[5] & 255) << 8 | (t[6] & 255) << 16 | (t[7] & 255) << 24, p = t[8] & 255 | (t[9] & 255) << 8 | (t[10] & 255) << 16 | (t[11] & 255) << 24, g = t[12] & 255 | (t[13] & 255) << 8 | (t[14] & 255) << 16 | (t[15] & 255) << 24, m = n[8] & 255 | (n[9] & 255) << 8 | (n[10] & 255) << 16 | (n[11] & 255) << 24, _ = r[16] & 255 | (r[17] & 255) << 8 | (r[18] & 255) << 16 | (r[19] & 255) << 24, E = r[20] & 255 | (r[21] & 255) << 8 | (r[22] & 255) << 16 | (r[23] & 255) << 24,
|
|
915
|
-
var A = s, b = o, C = a, w = l, I = c, T = u, R = d, k = h, P = p, O = g,
|
|
913
|
+
function v(e, t, r, n) {
|
|
914
|
+
var s = n[0] & 255 | (n[1] & 255) << 8 | (n[2] & 255) << 16 | (n[3] & 255) << 24, o = r[0] & 255 | (r[1] & 255) << 8 | (r[2] & 255) << 16 | (r[3] & 255) << 24, a = r[4] & 255 | (r[5] & 255) << 8 | (r[6] & 255) << 16 | (r[7] & 255) << 24, l = r[8] & 255 | (r[9] & 255) << 8 | (r[10] & 255) << 16 | (r[11] & 255) << 24, c = r[12] & 255 | (r[13] & 255) << 8 | (r[14] & 255) << 16 | (r[15] & 255) << 24, u = n[4] & 255 | (n[5] & 255) << 8 | (n[6] & 255) << 16 | (n[7] & 255) << 24, d = t[0] & 255 | (t[1] & 255) << 8 | (t[2] & 255) << 16 | (t[3] & 255) << 24, h = t[4] & 255 | (t[5] & 255) << 8 | (t[6] & 255) << 16 | (t[7] & 255) << 24, p = t[8] & 255 | (t[9] & 255) << 8 | (t[10] & 255) << 16 | (t[11] & 255) << 24, g = t[12] & 255 | (t[13] & 255) << 8 | (t[14] & 255) << 16 | (t[15] & 255) << 24, m = n[8] & 255 | (n[9] & 255) << 8 | (n[10] & 255) << 16 | (n[11] & 255) << 24, _ = r[16] & 255 | (r[17] & 255) << 8 | (r[18] & 255) << 16 | (r[19] & 255) << 24, E = r[20] & 255 | (r[21] & 255) << 8 | (r[22] & 255) << 16 | (r[23] & 255) << 24, y = r[24] & 255 | (r[25] & 255) << 8 | (r[26] & 255) << 16 | (r[27] & 255) << 24, v = r[28] & 255 | (r[29] & 255) << 8 | (r[30] & 255) << 16 | (r[31] & 255) << 24, S = n[12] & 255 | (n[13] & 255) << 8 | (n[14] & 255) << 16 | (n[15] & 255) << 24;
|
|
915
|
+
var A = s, b = o, C = a, w = l, I = c, T = u, R = d, k = h, P = p, O = g, $ = m, B = _, N = E, D = y, L = v, U = S, M;
|
|
916
916
|
for (var x = 0; x < 20; x += 2) {
|
|
917
917
|
M = A + N | 0;
|
|
918
918
|
I ^= M << 7 | M >>> 32 - 7;
|
|
@@ -930,21 +930,21 @@ naclFast.exports;
|
|
|
930
930
|
b ^= M << 13 | M >>> 32 - 13;
|
|
931
931
|
M = b + D | 0;
|
|
932
932
|
T ^= M << 18 | M >>> 32 - 18;
|
|
933
|
-
M =
|
|
933
|
+
M = $ + R | 0;
|
|
934
934
|
L ^= M << 7 | M >>> 32 - 7;
|
|
935
|
-
M = L +
|
|
935
|
+
M = L + $ | 0;
|
|
936
936
|
C ^= M << 9 | M >>> 32 - 9;
|
|
937
937
|
M = C + L | 0;
|
|
938
938
|
R ^= M << 13 | M >>> 32 - 13;
|
|
939
939
|
M = R + C | 0;
|
|
940
|
-
|
|
941
|
-
M = U +
|
|
940
|
+
$ ^= M << 18 | M >>> 32 - 18;
|
|
941
|
+
M = U + B | 0;
|
|
942
942
|
w ^= M << 7 | M >>> 32 - 7;
|
|
943
943
|
M = w + U | 0;
|
|
944
944
|
k ^= M << 9 | M >>> 32 - 9;
|
|
945
945
|
M = k + w | 0;
|
|
946
|
-
|
|
947
|
-
M =
|
|
946
|
+
B ^= M << 13 | M >>> 32 - 13;
|
|
947
|
+
M = B + k | 0;
|
|
948
948
|
U ^= M << 18 | M >>> 32 - 18;
|
|
949
949
|
M = A + w | 0;
|
|
950
950
|
b ^= M << 7 | M >>> 32 - 7;
|
|
@@ -962,14 +962,14 @@ naclFast.exports;
|
|
|
962
962
|
I ^= M << 13 | M >>> 32 - 13;
|
|
963
963
|
M = I + k | 0;
|
|
964
964
|
T ^= M << 18 | M >>> 32 - 18;
|
|
965
|
-
M =
|
|
966
|
-
|
|
967
|
-
M =
|
|
965
|
+
M = $ + O | 0;
|
|
966
|
+
B ^= M << 7 | M >>> 32 - 7;
|
|
967
|
+
M = B + $ | 0;
|
|
968
968
|
P ^= M << 9 | M >>> 32 - 9;
|
|
969
|
-
M = P +
|
|
969
|
+
M = P + B | 0;
|
|
970
970
|
O ^= M << 13 | M >>> 32 - 13;
|
|
971
971
|
M = O + P | 0;
|
|
972
|
-
|
|
972
|
+
$ ^= M << 18 | M >>> 32 - 18;
|
|
973
973
|
M = U + L | 0;
|
|
974
974
|
N ^= M << 7 | M >>> 32 - 7;
|
|
975
975
|
M = N + U | 0;
|
|
@@ -987,10 +987,10 @@ naclFast.exports;
|
|
|
987
987
|
e[5] = T >>> 8 & 255;
|
|
988
988
|
e[6] = T >>> 16 & 255;
|
|
989
989
|
e[7] = T >>> 24 & 255;
|
|
990
|
-
e[8] =
|
|
991
|
-
e[9] =
|
|
992
|
-
e[10] =
|
|
993
|
-
e[11] =
|
|
990
|
+
e[8] = $ >>> 0 & 255;
|
|
991
|
+
e[9] = $ >>> 8 & 255;
|
|
992
|
+
e[10] = $ >>> 16 & 255;
|
|
993
|
+
e[11] = $ >>> 24 & 255;
|
|
994
994
|
e[12] = U >>> 0 & 255;
|
|
995
995
|
e[13] = U >>> 8 & 255;
|
|
996
996
|
e[14] = U >>> 16 & 255;
|
|
@@ -1013,10 +1013,10 @@ naclFast.exports;
|
|
|
1013
1013
|
e[31] = O >>> 24 & 255;
|
|
1014
1014
|
}
|
|
1015
1015
|
function S(e, t, r, n) {
|
|
1016
|
-
|
|
1016
|
+
y(e, t, r, n);
|
|
1017
1017
|
}
|
|
1018
1018
|
function A(e, t, r, n) {
|
|
1019
|
-
|
|
1019
|
+
v(e, t, r, n);
|
|
1020
1020
|
}
|
|
1021
1021
|
var b = new Uint8Array([ 101, 120, 112, 97, 110, 100, 32, 51, 50, 45, 98, 121, 116, 101, 32, 107 ]);
|
|
1022
1022
|
function C(e, t, r, n, s, o, a) {
|
|
@@ -1118,8 +1118,8 @@ naclFast.exports;
|
|
|
1118
1118
|
R.prototype.blocks = function(e, t, r) {
|
|
1119
1119
|
var n = this.fin ? 0 : 1 << 11;
|
|
1120
1120
|
var s, o, a, l, c, u, d, h, p;
|
|
1121
|
-
var g, m, _, E,
|
|
1122
|
-
var w = this.h[0], I = this.h[1], T = this.h[2], R = this.h[3], k = this.h[4], P = this.h[5], O = this.h[6],
|
|
1121
|
+
var g, m, _, E, y, v, S, A, b, C;
|
|
1122
|
+
var w = this.h[0], I = this.h[1], T = this.h[2], R = this.h[3], k = this.h[4], P = this.h[5], O = this.h[6], $ = this.h[7], B = this.h[8], N = this.h[9];
|
|
1123
1123
|
var D = this.r[0], L = this.r[1], U = this.r[2], M = this.r[3], x = this.r[4], H = this.r[5], q = this.r[6], W = this.r[7], j = this.r[8], Q = this.r[9];
|
|
1124
1124
|
while (r >= 16) {
|
|
1125
1125
|
s = e[t + 0] & 255 | (e[t + 1] & 255) << 8;
|
|
@@ -1136,9 +1136,9 @@ naclFast.exports;
|
|
|
1136
1136
|
u = e[t + 10] & 255 | (e[t + 11] & 255) << 8;
|
|
1137
1137
|
O += (c >>> 14 | u << 2) & 8191;
|
|
1138
1138
|
d = e[t + 12] & 255 | (e[t + 13] & 255) << 8;
|
|
1139
|
-
|
|
1139
|
+
$ += (u >>> 11 | d << 5) & 8191;
|
|
1140
1140
|
h = e[t + 14] & 255 | (e[t + 15] & 255) << 8;
|
|
1141
|
-
|
|
1141
|
+
B += (d >>> 8 | h << 8) & 8191;
|
|
1142
1142
|
N += h >>> 5 | n;
|
|
1143
1143
|
p = 0;
|
|
1144
1144
|
g = p;
|
|
@@ -1151,8 +1151,8 @@ naclFast.exports;
|
|
|
1151
1151
|
g &= 8191;
|
|
1152
1152
|
g += P * (5 * H);
|
|
1153
1153
|
g += O * (5 * x);
|
|
1154
|
-
g +=
|
|
1155
|
-
g +=
|
|
1154
|
+
g += $ * (5 * M);
|
|
1155
|
+
g += B * (5 * U);
|
|
1156
1156
|
g += N * (5 * L);
|
|
1157
1157
|
p += g >>> 13;
|
|
1158
1158
|
g &= 8191;
|
|
@@ -1166,8 +1166,8 @@ naclFast.exports;
|
|
|
1166
1166
|
m &= 8191;
|
|
1167
1167
|
m += P * (5 * q);
|
|
1168
1168
|
m += O * (5 * H);
|
|
1169
|
-
m +=
|
|
1170
|
-
m +=
|
|
1169
|
+
m += $ * (5 * x);
|
|
1170
|
+
m += B * (5 * M);
|
|
1171
1171
|
m += N * (5 * U);
|
|
1172
1172
|
p += m >>> 13;
|
|
1173
1173
|
m &= 8191;
|
|
@@ -1181,8 +1181,8 @@ naclFast.exports;
|
|
|
1181
1181
|
_ &= 8191;
|
|
1182
1182
|
_ += P * (5 * W);
|
|
1183
1183
|
_ += O * (5 * q);
|
|
1184
|
-
_ +=
|
|
1185
|
-
_ +=
|
|
1184
|
+
_ += $ * (5 * H);
|
|
1185
|
+
_ += B * (5 * x);
|
|
1186
1186
|
_ += N * (5 * M);
|
|
1187
1187
|
p += _ >>> 13;
|
|
1188
1188
|
_ &= 8191;
|
|
@@ -1196,41 +1196,41 @@ naclFast.exports;
|
|
|
1196
1196
|
E &= 8191;
|
|
1197
1197
|
E += P * (5 * j);
|
|
1198
1198
|
E += O * (5 * W);
|
|
1199
|
-
E +=
|
|
1200
|
-
E +=
|
|
1199
|
+
E += $ * (5 * q);
|
|
1200
|
+
E += B * (5 * H);
|
|
1201
1201
|
E += N * (5 * x);
|
|
1202
1202
|
p += E >>> 13;
|
|
1203
1203
|
E &= 8191;
|
|
1204
|
-
v = p;
|
|
1205
|
-
v += w * x;
|
|
1206
|
-
v += I * M;
|
|
1207
|
-
v += T * U;
|
|
1208
|
-
v += R * L;
|
|
1209
|
-
v += k * D;
|
|
1210
|
-
p = v >>> 13;
|
|
1211
|
-
v &= 8191;
|
|
1212
|
-
v += P * (5 * Q);
|
|
1213
|
-
v += O * (5 * j);
|
|
1214
|
-
v += B * (5 * W);
|
|
1215
|
-
v += $ * (5 * q);
|
|
1216
|
-
v += N * (5 * H);
|
|
1217
|
-
p += v >>> 13;
|
|
1218
|
-
v &= 8191;
|
|
1219
1204
|
y = p;
|
|
1220
|
-
y += w *
|
|
1221
|
-
y += I *
|
|
1222
|
-
y += T *
|
|
1223
|
-
y += R *
|
|
1224
|
-
y += k *
|
|
1205
|
+
y += w * x;
|
|
1206
|
+
y += I * M;
|
|
1207
|
+
y += T * U;
|
|
1208
|
+
y += R * L;
|
|
1209
|
+
y += k * D;
|
|
1225
1210
|
p = y >>> 13;
|
|
1226
1211
|
y &= 8191;
|
|
1227
|
-
y += P *
|
|
1228
|
-
y += O * (5 *
|
|
1229
|
-
y += B * (5 * j);
|
|
1212
|
+
y += P * (5 * Q);
|
|
1213
|
+
y += O * (5 * j);
|
|
1230
1214
|
y += $ * (5 * W);
|
|
1231
|
-
y +=
|
|
1215
|
+
y += B * (5 * q);
|
|
1216
|
+
y += N * (5 * H);
|
|
1232
1217
|
p += y >>> 13;
|
|
1233
1218
|
y &= 8191;
|
|
1219
|
+
v = p;
|
|
1220
|
+
v += w * H;
|
|
1221
|
+
v += I * x;
|
|
1222
|
+
v += T * M;
|
|
1223
|
+
v += R * U;
|
|
1224
|
+
v += k * L;
|
|
1225
|
+
p = v >>> 13;
|
|
1226
|
+
v &= 8191;
|
|
1227
|
+
v += P * D;
|
|
1228
|
+
v += O * (5 * Q);
|
|
1229
|
+
v += $ * (5 * j);
|
|
1230
|
+
v += B * (5 * W);
|
|
1231
|
+
v += N * (5 * q);
|
|
1232
|
+
p += v >>> 13;
|
|
1233
|
+
v &= 8191;
|
|
1234
1234
|
S = p;
|
|
1235
1235
|
S += w * q;
|
|
1236
1236
|
S += I * H;
|
|
@@ -1241,8 +1241,8 @@ naclFast.exports;
|
|
|
1241
1241
|
S &= 8191;
|
|
1242
1242
|
S += P * L;
|
|
1243
1243
|
S += O * D;
|
|
1244
|
-
S +=
|
|
1245
|
-
S +=
|
|
1244
|
+
S += $ * (5 * Q);
|
|
1245
|
+
S += B * (5 * j);
|
|
1246
1246
|
S += N * (5 * W);
|
|
1247
1247
|
p += S >>> 13;
|
|
1248
1248
|
S &= 8191;
|
|
@@ -1256,8 +1256,8 @@ naclFast.exports;
|
|
|
1256
1256
|
A &= 8191;
|
|
1257
1257
|
A += P * U;
|
|
1258
1258
|
A += O * L;
|
|
1259
|
-
A +=
|
|
1260
|
-
A +=
|
|
1259
|
+
A += $ * D;
|
|
1260
|
+
A += B * (5 * Q);
|
|
1261
1261
|
A += N * (5 * j);
|
|
1262
1262
|
p += A >>> 13;
|
|
1263
1263
|
A &= 8191;
|
|
@@ -1271,8 +1271,8 @@ naclFast.exports;
|
|
|
1271
1271
|
b &= 8191;
|
|
1272
1272
|
b += P * M;
|
|
1273
1273
|
b += O * U;
|
|
1274
|
-
b +=
|
|
1275
|
-
b +=
|
|
1274
|
+
b += $ * L;
|
|
1275
|
+
b += B * D;
|
|
1276
1276
|
b += N * (5 * Q);
|
|
1277
1277
|
p += b >>> 13;
|
|
1278
1278
|
b &= 8191;
|
|
@@ -1286,8 +1286,8 @@ naclFast.exports;
|
|
|
1286
1286
|
C &= 8191;
|
|
1287
1287
|
C += P * x;
|
|
1288
1288
|
C += O * M;
|
|
1289
|
-
C +=
|
|
1290
|
-
C +=
|
|
1289
|
+
C += $ * U;
|
|
1290
|
+
C += B * L;
|
|
1291
1291
|
C += N * D;
|
|
1292
1292
|
p += C >>> 13;
|
|
1293
1293
|
C &= 8191;
|
|
@@ -1300,11 +1300,11 @@ naclFast.exports;
|
|
|
1300
1300
|
I = m;
|
|
1301
1301
|
T = _;
|
|
1302
1302
|
R = E;
|
|
1303
|
-
k =
|
|
1304
|
-
P =
|
|
1303
|
+
k = y;
|
|
1304
|
+
P = v;
|
|
1305
1305
|
O = S;
|
|
1306
|
-
|
|
1307
|
-
|
|
1306
|
+
$ = A;
|
|
1307
|
+
B = b;
|
|
1308
1308
|
N = C;
|
|
1309
1309
|
t += 16;
|
|
1310
1310
|
r -= 16;
|
|
@@ -1316,8 +1316,8 @@ naclFast.exports;
|
|
|
1316
1316
|
this.h[4] = k;
|
|
1317
1317
|
this.h[5] = P;
|
|
1318
1318
|
this.h[6] = O;
|
|
1319
|
-
this.h[7] =
|
|
1320
|
-
this.h[8] =
|
|
1319
|
+
this.h[7] = $;
|
|
1320
|
+
this.h[8] = B;
|
|
1321
1321
|
this.h[9] = N;
|
|
1322
1322
|
};
|
|
1323
1323
|
R.prototype.finish = function(e, t) {
|
|
@@ -1431,7 +1431,7 @@ naclFast.exports;
|
|
|
1431
1431
|
for (o = 0; o < 16; o++) e[o] = 0;
|
|
1432
1432
|
return 0;
|
|
1433
1433
|
}
|
|
1434
|
-
function
|
|
1434
|
+
function $(e, t, r, n, s) {
|
|
1435
1435
|
var o;
|
|
1436
1436
|
var a = new Uint8Array(32);
|
|
1437
1437
|
if (r < 32) return -1;
|
|
@@ -1441,7 +1441,7 @@ naclFast.exports;
|
|
|
1441
1441
|
for (o = 0; o < 32; o++) e[o] = 0;
|
|
1442
1442
|
return 0;
|
|
1443
1443
|
}
|
|
1444
|
-
function
|
|
1444
|
+
function B(e, t) {
|
|
1445
1445
|
var r;
|
|
1446
1446
|
for (r = 0; r < 16; r++) e[r] = t[r] | 0;
|
|
1447
1447
|
}
|
|
@@ -1508,7 +1508,7 @@ naclFast.exports;
|
|
|
1508
1508
|
for (var n = 0; n < 16; n++) e[n] = t[n] - r[n];
|
|
1509
1509
|
}
|
|
1510
1510
|
function W(e, t, r) {
|
|
1511
|
-
var n, s, o = 0, a = 0, l = 0, c = 0, u = 0, d = 0, h = 0, p = 0, g = 0, m = 0, _ = 0, E = 0,
|
|
1511
|
+
var n, s, o = 0, a = 0, l = 0, c = 0, u = 0, d = 0, h = 0, p = 0, g = 0, m = 0, _ = 0, E = 0, y = 0, v = 0, S = 0, A = 0, b = 0, C = 0, w = 0, I = 0, T = 0, R = 0, k = 0, P = 0, O = 0, $ = 0, B = 0, N = 0, D = 0, L = 0, U = 0, M = r[0], x = r[1], H = r[2], q = r[3], W = r[4], j = r[5], Q = r[6], G = r[7], K = r[8], z = r[9], Y = r[10], V = r[11], X = r[12], J = r[13], Z = r[14], ee = r[15];
|
|
1512
1512
|
n = t[0];
|
|
1513
1513
|
o += n * M;
|
|
1514
1514
|
a += n * x;
|
|
@@ -1522,8 +1522,8 @@ naclFast.exports;
|
|
|
1522
1522
|
m += n * z;
|
|
1523
1523
|
_ += n * Y;
|
|
1524
1524
|
E += n * V;
|
|
1525
|
-
|
|
1526
|
-
|
|
1525
|
+
y += n * X;
|
|
1526
|
+
v += n * J;
|
|
1527
1527
|
S += n * Z;
|
|
1528
1528
|
A += n * ee;
|
|
1529
1529
|
n = t[1];
|
|
@@ -1538,8 +1538,8 @@ naclFast.exports;
|
|
|
1538
1538
|
m += n * K;
|
|
1539
1539
|
_ += n * z;
|
|
1540
1540
|
E += n * Y;
|
|
1541
|
-
|
|
1542
|
-
|
|
1541
|
+
y += n * V;
|
|
1542
|
+
v += n * X;
|
|
1543
1543
|
S += n * J;
|
|
1544
1544
|
A += n * Z;
|
|
1545
1545
|
b += n * ee;
|
|
@@ -1554,8 +1554,8 @@ naclFast.exports;
|
|
|
1554
1554
|
m += n * G;
|
|
1555
1555
|
_ += n * K;
|
|
1556
1556
|
E += n * z;
|
|
1557
|
-
|
|
1558
|
-
|
|
1557
|
+
y += n * Y;
|
|
1558
|
+
v += n * V;
|
|
1559
1559
|
S += n * X;
|
|
1560
1560
|
A += n * J;
|
|
1561
1561
|
b += n * Z;
|
|
@@ -1570,8 +1570,8 @@ naclFast.exports;
|
|
|
1570
1570
|
m += n * Q;
|
|
1571
1571
|
_ += n * G;
|
|
1572
1572
|
E += n * K;
|
|
1573
|
-
|
|
1574
|
-
|
|
1573
|
+
y += n * z;
|
|
1574
|
+
v += n * Y;
|
|
1575
1575
|
S += n * V;
|
|
1576
1576
|
A += n * X;
|
|
1577
1577
|
b += n * J;
|
|
@@ -1586,8 +1586,8 @@ naclFast.exports;
|
|
|
1586
1586
|
m += n * j;
|
|
1587
1587
|
_ += n * Q;
|
|
1588
1588
|
E += n * G;
|
|
1589
|
-
|
|
1590
|
-
|
|
1589
|
+
y += n * K;
|
|
1590
|
+
v += n * z;
|
|
1591
1591
|
S += n * Y;
|
|
1592
1592
|
A += n * V;
|
|
1593
1593
|
b += n * X;
|
|
@@ -1602,8 +1602,8 @@ naclFast.exports;
|
|
|
1602
1602
|
m += n * W;
|
|
1603
1603
|
_ += n * j;
|
|
1604
1604
|
E += n * Q;
|
|
1605
|
-
|
|
1606
|
-
|
|
1605
|
+
y += n * G;
|
|
1606
|
+
v += n * K;
|
|
1607
1607
|
S += n * z;
|
|
1608
1608
|
A += n * Y;
|
|
1609
1609
|
b += n * V;
|
|
@@ -1618,8 +1618,8 @@ naclFast.exports;
|
|
|
1618
1618
|
m += n * q;
|
|
1619
1619
|
_ += n * W;
|
|
1620
1620
|
E += n * j;
|
|
1621
|
-
|
|
1622
|
-
|
|
1621
|
+
y += n * Q;
|
|
1622
|
+
v += n * G;
|
|
1623
1623
|
S += n * K;
|
|
1624
1624
|
A += n * z;
|
|
1625
1625
|
b += n * Y;
|
|
@@ -1634,8 +1634,8 @@ naclFast.exports;
|
|
|
1634
1634
|
m += n * H;
|
|
1635
1635
|
_ += n * q;
|
|
1636
1636
|
E += n * W;
|
|
1637
|
-
|
|
1638
|
-
|
|
1637
|
+
y += n * j;
|
|
1638
|
+
v += n * Q;
|
|
1639
1639
|
S += n * G;
|
|
1640
1640
|
A += n * K;
|
|
1641
1641
|
b += n * z;
|
|
@@ -1650,8 +1650,8 @@ naclFast.exports;
|
|
|
1650
1650
|
m += n * x;
|
|
1651
1651
|
_ += n * H;
|
|
1652
1652
|
E += n * q;
|
|
1653
|
-
|
|
1654
|
-
|
|
1653
|
+
y += n * W;
|
|
1654
|
+
v += n * j;
|
|
1655
1655
|
S += n * Q;
|
|
1656
1656
|
A += n * G;
|
|
1657
1657
|
b += n * K;
|
|
@@ -1666,8 +1666,8 @@ naclFast.exports;
|
|
|
1666
1666
|
m += n * M;
|
|
1667
1667
|
_ += n * x;
|
|
1668
1668
|
E += n * H;
|
|
1669
|
-
|
|
1670
|
-
|
|
1669
|
+
y += n * q;
|
|
1670
|
+
v += n * W;
|
|
1671
1671
|
S += n * j;
|
|
1672
1672
|
A += n * Q;
|
|
1673
1673
|
b += n * G;
|
|
@@ -1682,8 +1682,8 @@ naclFast.exports;
|
|
|
1682
1682
|
n = t[10];
|
|
1683
1683
|
_ += n * M;
|
|
1684
1684
|
E += n * x;
|
|
1685
|
-
|
|
1686
|
-
|
|
1685
|
+
y += n * H;
|
|
1686
|
+
v += n * q;
|
|
1687
1687
|
S += n * W;
|
|
1688
1688
|
A += n * j;
|
|
1689
1689
|
b += n * Q;
|
|
@@ -1695,11 +1695,11 @@ naclFast.exports;
|
|
|
1695
1695
|
k += n * X;
|
|
1696
1696
|
P += n * J;
|
|
1697
1697
|
O += n * Z;
|
|
1698
|
-
|
|
1698
|
+
$ += n * ee;
|
|
1699
1699
|
n = t[11];
|
|
1700
1700
|
E += n * M;
|
|
1701
|
-
|
|
1702
|
-
|
|
1701
|
+
y += n * x;
|
|
1702
|
+
v += n * H;
|
|
1703
1703
|
S += n * q;
|
|
1704
1704
|
A += n * W;
|
|
1705
1705
|
b += n * j;
|
|
@@ -1711,11 +1711,11 @@ naclFast.exports;
|
|
|
1711
1711
|
k += n * V;
|
|
1712
1712
|
P += n * X;
|
|
1713
1713
|
O += n * J;
|
|
1714
|
-
|
|
1715
|
-
|
|
1714
|
+
$ += n * Z;
|
|
1715
|
+
B += n * ee;
|
|
1716
1716
|
n = t[12];
|
|
1717
|
-
|
|
1718
|
-
|
|
1717
|
+
y += n * M;
|
|
1718
|
+
v += n * x;
|
|
1719
1719
|
S += n * H;
|
|
1720
1720
|
A += n * q;
|
|
1721
1721
|
b += n * W;
|
|
@@ -1727,11 +1727,11 @@ naclFast.exports;
|
|
|
1727
1727
|
k += n * Y;
|
|
1728
1728
|
P += n * V;
|
|
1729
1729
|
O += n * X;
|
|
1730
|
-
|
|
1731
|
-
|
|
1730
|
+
$ += n * J;
|
|
1731
|
+
B += n * Z;
|
|
1732
1732
|
N += n * ee;
|
|
1733
1733
|
n = t[13];
|
|
1734
|
-
|
|
1734
|
+
v += n * M;
|
|
1735
1735
|
S += n * x;
|
|
1736
1736
|
A += n * H;
|
|
1737
1737
|
b += n * q;
|
|
@@ -1743,8 +1743,8 @@ naclFast.exports;
|
|
|
1743
1743
|
k += n * z;
|
|
1744
1744
|
P += n * Y;
|
|
1745
1745
|
O += n * V;
|
|
1746
|
-
|
|
1747
|
-
|
|
1746
|
+
$ += n * X;
|
|
1747
|
+
B += n * J;
|
|
1748
1748
|
N += n * Z;
|
|
1749
1749
|
D += n * ee;
|
|
1750
1750
|
n = t[14];
|
|
@@ -1759,8 +1759,8 @@ naclFast.exports;
|
|
|
1759
1759
|
k += n * K;
|
|
1760
1760
|
P += n * z;
|
|
1761
1761
|
O += n * Y;
|
|
1762
|
-
|
|
1763
|
-
|
|
1762
|
+
$ += n * V;
|
|
1763
|
+
B += n * X;
|
|
1764
1764
|
N += n * J;
|
|
1765
1765
|
D += n * Z;
|
|
1766
1766
|
L += n * ee;
|
|
@@ -1775,8 +1775,8 @@ naclFast.exports;
|
|
|
1775
1775
|
k += n * G;
|
|
1776
1776
|
P += n * K;
|
|
1777
1777
|
O += n * z;
|
|
1778
|
-
|
|
1779
|
-
|
|
1778
|
+
$ += n * Y;
|
|
1779
|
+
B += n * V;
|
|
1780
1780
|
N += n * X;
|
|
1781
1781
|
D += n * J;
|
|
1782
1782
|
L += n * Z;
|
|
@@ -1790,11 +1790,11 @@ naclFast.exports;
|
|
|
1790
1790
|
h += 38 * k;
|
|
1791
1791
|
p += 38 * P;
|
|
1792
1792
|
g += 38 * O;
|
|
1793
|
-
m += 38 *
|
|
1794
|
-
_ += 38 *
|
|
1793
|
+
m += 38 * $;
|
|
1794
|
+
_ += 38 * B;
|
|
1795
1795
|
E += 38 * N;
|
|
1796
|
-
|
|
1797
|
-
|
|
1796
|
+
y += 38 * D;
|
|
1797
|
+
v += 38 * L;
|
|
1798
1798
|
S += 38 * U;
|
|
1799
1799
|
s = 1;
|
|
1800
1800
|
n = o + s + 65535;
|
|
@@ -1833,12 +1833,12 @@ naclFast.exports;
|
|
|
1833
1833
|
n = E + s + 65535;
|
|
1834
1834
|
s = Math.floor(n / 65536);
|
|
1835
1835
|
E = n - s * 65536;
|
|
1836
|
-
n = v + s + 65535;
|
|
1837
|
-
s = Math.floor(n / 65536);
|
|
1838
|
-
v = n - s * 65536;
|
|
1839
1836
|
n = y + s + 65535;
|
|
1840
1837
|
s = Math.floor(n / 65536);
|
|
1841
1838
|
y = n - s * 65536;
|
|
1839
|
+
n = v + s + 65535;
|
|
1840
|
+
s = Math.floor(n / 65536);
|
|
1841
|
+
v = n - s * 65536;
|
|
1842
1842
|
n = S + s + 65535;
|
|
1843
1843
|
s = Math.floor(n / 65536);
|
|
1844
1844
|
S = n - s * 65536;
|
|
@@ -1883,12 +1883,12 @@ naclFast.exports;
|
|
|
1883
1883
|
n = E + s + 65535;
|
|
1884
1884
|
s = Math.floor(n / 65536);
|
|
1885
1885
|
E = n - s * 65536;
|
|
1886
|
-
n = v + s + 65535;
|
|
1887
|
-
s = Math.floor(n / 65536);
|
|
1888
|
-
v = n - s * 65536;
|
|
1889
1886
|
n = y + s + 65535;
|
|
1890
1887
|
s = Math.floor(n / 65536);
|
|
1891
1888
|
y = n - s * 65536;
|
|
1889
|
+
n = v + s + 65535;
|
|
1890
|
+
s = Math.floor(n / 65536);
|
|
1891
|
+
v = n - s * 65536;
|
|
1892
1892
|
n = S + s + 65535;
|
|
1893
1893
|
s = Math.floor(n / 65536);
|
|
1894
1894
|
S = n - s * 65536;
|
|
@@ -1908,8 +1908,8 @@ naclFast.exports;
|
|
|
1908
1908
|
e[9] = m;
|
|
1909
1909
|
e[10] = _;
|
|
1910
1910
|
e[11] = E;
|
|
1911
|
-
e[12] =
|
|
1912
|
-
e[13] =
|
|
1911
|
+
e[12] = y;
|
|
1912
|
+
e[13] = v;
|
|
1913
1913
|
e[14] = S;
|
|
1914
1914
|
e[15] = A;
|
|
1915
1915
|
}
|
|
@@ -2000,7 +2000,7 @@ naclFast.exports;
|
|
|
2000
2000
|
return A(e, n, s, b);
|
|
2001
2001
|
}
|
|
2002
2002
|
var X = O;
|
|
2003
|
-
var J =
|
|
2003
|
+
var J = $;
|
|
2004
2004
|
function Z(e, t, r, n, s, o) {
|
|
2005
2005
|
var a = new Uint8Array(32);
|
|
2006
2006
|
V(a, s, o);
|
|
@@ -2013,7 +2013,7 @@ naclFast.exports;
|
|
|
2013
2013
|
}
|
|
2014
2014
|
var te = [ 1116352408, 3609767458, 1899447441, 602891725, 3049323471, 3964484399, 3921009573, 2173295548, 961987163, 4081628472, 1508970993, 3053834265, 2453635748, 2937671579, 2870763221, 3664609560, 3624381080, 2734883394, 310598401, 1164996542, 607225278, 1323610764, 1426881987, 3590304994, 1925078388, 4068182383, 2162078206, 991336113, 2614888103, 633803317, 3248222580, 3479774868, 3835390401, 2666613458, 4022224774, 944711139, 264347078, 2341262773, 604807628, 2007800933, 770255983, 1495990901, 1249150122, 1856431235, 1555081692, 3175218132, 1996064986, 2198950837, 2554220882, 3999719339, 2821834349, 766784016, 2952996808, 2566594879, 3210313671, 3203337956, 3336571891, 1034457026, 3584528711, 2466948901, 113926993, 3758326383, 338241895, 168717936, 666307205, 1188179964, 773529912, 1546045734, 1294757372, 1522805485, 1396182291, 2643833823, 1695183700, 2343527390, 1986661051, 1014477480, 2177026350, 1206759142, 2456956037, 344077627, 2730485921, 1290863460, 2820302411, 3158454273, 3259730800, 3505952657, 3345764771, 106217008, 3516065817, 3606008344, 3600352804, 1432725776, 4094571909, 1467031594, 275423344, 851169720, 430227734, 3100823752, 506948616, 1363258195, 659060556, 3750685593, 883997877, 3785050280, 958139571, 3318307427, 1322822218, 3812723403, 1537002063, 2003034995, 1747873779, 3602036899, 1955562222, 1575990012, 2024104815, 1125592928, 2227730452, 2716904306, 2361852424, 442776044, 2428436474, 593698344, 2756734187, 3733110249, 3204031479, 2999351573, 3329325298, 3815920427, 3391569614, 3928383900, 3515267271, 566280711, 3940187606, 3454069534, 4118630271, 4000239992, 116418474, 1914138554, 174292421, 2731055270, 289380356, 3203993006, 460393269, 320620315, 685471733, 587496836, 852142971, 1086792851, 1017036298, 365543100, 1126000580, 2618297676, 1288033470, 3409855158, 1501505948, 4234509866, 1607167915, 987167468, 1816402316, 1246189591 ];
|
|
2015
2015
|
function re(e, t, r, n) {
|
|
2016
|
-
var s = new Int32Array(16), o = new Int32Array(16), a, l, c, u, d, h, p, g, m, _, E,
|
|
2016
|
+
var s = new Int32Array(16), o = new Int32Array(16), a, l, c, u, d, h, p, g, m, _, E, y, v, S, A, b, C, w, I, T, R, k, P, O, $, B;
|
|
2017
2017
|
var N = e[0], D = e[1], L = e[2], U = e[3], M = e[4], x = e[5], H = e[6], q = e[7], W = t[0], j = t[1], Q = t[2], G = t[3], K = t[4], z = t[5], Y = t[6], V = t[7];
|
|
2018
2018
|
var X = 0;
|
|
2019
2019
|
while (n >= 128) {
|
|
@@ -2034,8 +2034,8 @@ naclFast.exports;
|
|
|
2034
2034
|
m = W;
|
|
2035
2035
|
_ = j;
|
|
2036
2036
|
E = Q;
|
|
2037
|
-
|
|
2038
|
-
|
|
2037
|
+
y = G;
|
|
2038
|
+
v = K;
|
|
2039
2039
|
S = z;
|
|
2040
2040
|
A = Y;
|
|
2041
2041
|
b = V;
|
|
@@ -2043,77 +2043,77 @@ naclFast.exports;
|
|
|
2043
2043
|
k = V;
|
|
2044
2044
|
P = k & 65535;
|
|
2045
2045
|
O = k >>> 16;
|
|
2046
|
-
|
|
2047
|
-
|
|
2046
|
+
$ = R & 65535;
|
|
2047
|
+
B = R >>> 16;
|
|
2048
2048
|
R = (M >>> 14 | K << 32 - 14) ^ (M >>> 18 | K << 32 - 18) ^ (K >>> 41 - 32 | M << 32 - (41 - 32));
|
|
2049
2049
|
k = (K >>> 14 | M << 32 - 14) ^ (K >>> 18 | M << 32 - 18) ^ (M >>> 41 - 32 | K << 32 - (41 - 32));
|
|
2050
2050
|
P += k & 65535;
|
|
2051
2051
|
O += k >>> 16;
|
|
2052
|
-
|
|
2053
|
-
|
|
2052
|
+
$ += R & 65535;
|
|
2053
|
+
B += R >>> 16;
|
|
2054
2054
|
R = M & x ^ ~M & H;
|
|
2055
2055
|
k = K & z ^ ~K & Y;
|
|
2056
2056
|
P += k & 65535;
|
|
2057
2057
|
O += k >>> 16;
|
|
2058
|
-
|
|
2059
|
-
|
|
2058
|
+
$ += R & 65535;
|
|
2059
|
+
B += R >>> 16;
|
|
2060
2060
|
R = te[I * 2];
|
|
2061
2061
|
k = te[I * 2 + 1];
|
|
2062
2062
|
P += k & 65535;
|
|
2063
2063
|
O += k >>> 16;
|
|
2064
|
-
|
|
2065
|
-
|
|
2064
|
+
$ += R & 65535;
|
|
2065
|
+
B += R >>> 16;
|
|
2066
2066
|
R = s[I % 16];
|
|
2067
2067
|
k = o[I % 16];
|
|
2068
2068
|
P += k & 65535;
|
|
2069
2069
|
O += k >>> 16;
|
|
2070
|
-
|
|
2071
|
-
|
|
2070
|
+
$ += R & 65535;
|
|
2071
|
+
B += R >>> 16;
|
|
2072
2072
|
O += P >>> 16;
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
C =
|
|
2073
|
+
$ += O >>> 16;
|
|
2074
|
+
B += $ >>> 16;
|
|
2075
|
+
C = $ & 65535 | B << 16;
|
|
2076
2076
|
w = P & 65535 | O << 16;
|
|
2077
2077
|
R = C;
|
|
2078
2078
|
k = w;
|
|
2079
2079
|
P = k & 65535;
|
|
2080
2080
|
O = k >>> 16;
|
|
2081
|
-
|
|
2082
|
-
|
|
2081
|
+
$ = R & 65535;
|
|
2082
|
+
B = R >>> 16;
|
|
2083
2083
|
R = (N >>> 28 | W << 32 - 28) ^ (W >>> 34 - 32 | N << 32 - (34 - 32)) ^ (W >>> 39 - 32 | N << 32 - (39 - 32));
|
|
2084
2084
|
k = (W >>> 28 | N << 32 - 28) ^ (N >>> 34 - 32 | W << 32 - (34 - 32)) ^ (N >>> 39 - 32 | W << 32 - (39 - 32));
|
|
2085
2085
|
P += k & 65535;
|
|
2086
2086
|
O += k >>> 16;
|
|
2087
|
-
|
|
2088
|
-
|
|
2087
|
+
$ += R & 65535;
|
|
2088
|
+
B += R >>> 16;
|
|
2089
2089
|
R = N & D ^ N & L ^ D & L;
|
|
2090
2090
|
k = W & j ^ W & Q ^ j & Q;
|
|
2091
2091
|
P += k & 65535;
|
|
2092
2092
|
O += k >>> 16;
|
|
2093
|
-
|
|
2094
|
-
|
|
2093
|
+
$ += R & 65535;
|
|
2094
|
+
B += R >>> 16;
|
|
2095
2095
|
O += P >>> 16;
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
g =
|
|
2096
|
+
$ += O >>> 16;
|
|
2097
|
+
B += $ >>> 16;
|
|
2098
|
+
g = $ & 65535 | B << 16;
|
|
2099
2099
|
b = P & 65535 | O << 16;
|
|
2100
2100
|
R = u;
|
|
2101
|
-
k =
|
|
2101
|
+
k = y;
|
|
2102
2102
|
P = k & 65535;
|
|
2103
2103
|
O = k >>> 16;
|
|
2104
|
-
|
|
2105
|
-
|
|
2104
|
+
$ = R & 65535;
|
|
2105
|
+
B = R >>> 16;
|
|
2106
2106
|
R = C;
|
|
2107
2107
|
k = w;
|
|
2108
2108
|
P += k & 65535;
|
|
2109
2109
|
O += k >>> 16;
|
|
2110
|
-
|
|
2111
|
-
|
|
2110
|
+
$ += R & 65535;
|
|
2111
|
+
B += R >>> 16;
|
|
2112
2112
|
O += P >>> 16;
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
u =
|
|
2116
|
-
|
|
2113
|
+
$ += O >>> 16;
|
|
2114
|
+
B += $ >>> 16;
|
|
2115
|
+
u = $ & 65535 | B << 16;
|
|
2116
|
+
y = P & 65535 | O << 16;
|
|
2117
2117
|
D = a;
|
|
2118
2118
|
L = l;
|
|
2119
2119
|
U = c;
|
|
@@ -2125,8 +2125,8 @@ naclFast.exports;
|
|
|
2125
2125
|
j = m;
|
|
2126
2126
|
Q = _;
|
|
2127
2127
|
G = E;
|
|
2128
|
-
K =
|
|
2129
|
-
z =
|
|
2128
|
+
K = y;
|
|
2129
|
+
z = v;
|
|
2130
2130
|
Y = S;
|
|
2131
2131
|
V = A;
|
|
2132
2132
|
W = b;
|
|
@@ -2136,34 +2136,34 @@ naclFast.exports;
|
|
|
2136
2136
|
k = o[T];
|
|
2137
2137
|
P = k & 65535;
|
|
2138
2138
|
O = k >>> 16;
|
|
2139
|
-
|
|
2140
|
-
|
|
2139
|
+
$ = R & 65535;
|
|
2140
|
+
B = R >>> 16;
|
|
2141
2141
|
R = s[(T + 9) % 16];
|
|
2142
2142
|
k = o[(T + 9) % 16];
|
|
2143
2143
|
P += k & 65535;
|
|
2144
2144
|
O += k >>> 16;
|
|
2145
|
-
|
|
2146
|
-
|
|
2145
|
+
$ += R & 65535;
|
|
2146
|
+
B += R >>> 16;
|
|
2147
2147
|
C = s[(T + 1) % 16];
|
|
2148
2148
|
w = o[(T + 1) % 16];
|
|
2149
2149
|
R = (C >>> 1 | w << 32 - 1) ^ (C >>> 8 | w << 32 - 8) ^ C >>> 7;
|
|
2150
2150
|
k = (w >>> 1 | C << 32 - 1) ^ (w >>> 8 | C << 32 - 8) ^ (w >>> 7 | C << 32 - 7);
|
|
2151
2151
|
P += k & 65535;
|
|
2152
2152
|
O += k >>> 16;
|
|
2153
|
-
|
|
2154
|
-
|
|
2153
|
+
$ += R & 65535;
|
|
2154
|
+
B += R >>> 16;
|
|
2155
2155
|
C = s[(T + 14) % 16];
|
|
2156
2156
|
w = o[(T + 14) % 16];
|
|
2157
2157
|
R = (C >>> 19 | w << 32 - 19) ^ (w >>> 61 - 32 | C << 32 - (61 - 32)) ^ C >>> 6;
|
|
2158
2158
|
k = (w >>> 19 | C << 32 - 19) ^ (C >>> 61 - 32 | w << 32 - (61 - 32)) ^ (w >>> 6 | C << 32 - 6);
|
|
2159
2159
|
P += k & 65535;
|
|
2160
2160
|
O += k >>> 16;
|
|
2161
|
-
|
|
2162
|
-
|
|
2161
|
+
$ += R & 65535;
|
|
2162
|
+
B += R >>> 16;
|
|
2163
2163
|
O += P >>> 16;
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
s[T] =
|
|
2164
|
+
$ += O >>> 16;
|
|
2165
|
+
B += $ >>> 16;
|
|
2166
|
+
s[T] = $ & 65535 | B << 16;
|
|
2167
2167
|
o[T] = P & 65535 | O << 16;
|
|
2168
2168
|
}
|
|
2169
2169
|
}
|
|
@@ -2172,137 +2172,137 @@ naclFast.exports;
|
|
|
2172
2172
|
k = W;
|
|
2173
2173
|
P = k & 65535;
|
|
2174
2174
|
O = k >>> 16;
|
|
2175
|
-
|
|
2176
|
-
|
|
2175
|
+
$ = R & 65535;
|
|
2176
|
+
B = R >>> 16;
|
|
2177
2177
|
R = e[0];
|
|
2178
2178
|
k = t[0];
|
|
2179
2179
|
P += k & 65535;
|
|
2180
2180
|
O += k >>> 16;
|
|
2181
|
-
|
|
2182
|
-
|
|
2181
|
+
$ += R & 65535;
|
|
2182
|
+
B += R >>> 16;
|
|
2183
2183
|
O += P >>> 16;
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
e[0] = N =
|
|
2184
|
+
$ += O >>> 16;
|
|
2185
|
+
B += $ >>> 16;
|
|
2186
|
+
e[0] = N = $ & 65535 | B << 16;
|
|
2187
2187
|
t[0] = W = P & 65535 | O << 16;
|
|
2188
2188
|
R = D;
|
|
2189
2189
|
k = j;
|
|
2190
2190
|
P = k & 65535;
|
|
2191
2191
|
O = k >>> 16;
|
|
2192
|
-
|
|
2193
|
-
|
|
2192
|
+
$ = R & 65535;
|
|
2193
|
+
B = R >>> 16;
|
|
2194
2194
|
R = e[1];
|
|
2195
2195
|
k = t[1];
|
|
2196
2196
|
P += k & 65535;
|
|
2197
2197
|
O += k >>> 16;
|
|
2198
|
-
|
|
2199
|
-
|
|
2198
|
+
$ += R & 65535;
|
|
2199
|
+
B += R >>> 16;
|
|
2200
2200
|
O += P >>> 16;
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
e[1] = D =
|
|
2201
|
+
$ += O >>> 16;
|
|
2202
|
+
B += $ >>> 16;
|
|
2203
|
+
e[1] = D = $ & 65535 | B << 16;
|
|
2204
2204
|
t[1] = j = P & 65535 | O << 16;
|
|
2205
2205
|
R = L;
|
|
2206
2206
|
k = Q;
|
|
2207
2207
|
P = k & 65535;
|
|
2208
2208
|
O = k >>> 16;
|
|
2209
|
-
|
|
2210
|
-
|
|
2209
|
+
$ = R & 65535;
|
|
2210
|
+
B = R >>> 16;
|
|
2211
2211
|
R = e[2];
|
|
2212
2212
|
k = t[2];
|
|
2213
2213
|
P += k & 65535;
|
|
2214
2214
|
O += k >>> 16;
|
|
2215
|
-
|
|
2216
|
-
|
|
2215
|
+
$ += R & 65535;
|
|
2216
|
+
B += R >>> 16;
|
|
2217
2217
|
O += P >>> 16;
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
e[2] = L =
|
|
2218
|
+
$ += O >>> 16;
|
|
2219
|
+
B += $ >>> 16;
|
|
2220
|
+
e[2] = L = $ & 65535 | B << 16;
|
|
2221
2221
|
t[2] = Q = P & 65535 | O << 16;
|
|
2222
2222
|
R = U;
|
|
2223
2223
|
k = G;
|
|
2224
2224
|
P = k & 65535;
|
|
2225
2225
|
O = k >>> 16;
|
|
2226
|
-
|
|
2227
|
-
|
|
2226
|
+
$ = R & 65535;
|
|
2227
|
+
B = R >>> 16;
|
|
2228
2228
|
R = e[3];
|
|
2229
2229
|
k = t[3];
|
|
2230
2230
|
P += k & 65535;
|
|
2231
2231
|
O += k >>> 16;
|
|
2232
|
-
|
|
2233
|
-
|
|
2232
|
+
$ += R & 65535;
|
|
2233
|
+
B += R >>> 16;
|
|
2234
2234
|
O += P >>> 16;
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
e[3] = U =
|
|
2235
|
+
$ += O >>> 16;
|
|
2236
|
+
B += $ >>> 16;
|
|
2237
|
+
e[3] = U = $ & 65535 | B << 16;
|
|
2238
2238
|
t[3] = G = P & 65535 | O << 16;
|
|
2239
2239
|
R = M;
|
|
2240
2240
|
k = K;
|
|
2241
2241
|
P = k & 65535;
|
|
2242
2242
|
O = k >>> 16;
|
|
2243
|
-
|
|
2244
|
-
|
|
2243
|
+
$ = R & 65535;
|
|
2244
|
+
B = R >>> 16;
|
|
2245
2245
|
R = e[4];
|
|
2246
2246
|
k = t[4];
|
|
2247
2247
|
P += k & 65535;
|
|
2248
2248
|
O += k >>> 16;
|
|
2249
|
-
|
|
2250
|
-
|
|
2249
|
+
$ += R & 65535;
|
|
2250
|
+
B += R >>> 16;
|
|
2251
2251
|
O += P >>> 16;
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
e[4] = M =
|
|
2252
|
+
$ += O >>> 16;
|
|
2253
|
+
B += $ >>> 16;
|
|
2254
|
+
e[4] = M = $ & 65535 | B << 16;
|
|
2255
2255
|
t[4] = K = P & 65535 | O << 16;
|
|
2256
2256
|
R = x;
|
|
2257
2257
|
k = z;
|
|
2258
2258
|
P = k & 65535;
|
|
2259
2259
|
O = k >>> 16;
|
|
2260
|
-
|
|
2261
|
-
|
|
2260
|
+
$ = R & 65535;
|
|
2261
|
+
B = R >>> 16;
|
|
2262
2262
|
R = e[5];
|
|
2263
2263
|
k = t[5];
|
|
2264
2264
|
P += k & 65535;
|
|
2265
2265
|
O += k >>> 16;
|
|
2266
|
-
|
|
2267
|
-
|
|
2266
|
+
$ += R & 65535;
|
|
2267
|
+
B += R >>> 16;
|
|
2268
2268
|
O += P >>> 16;
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
e[5] = x =
|
|
2269
|
+
$ += O >>> 16;
|
|
2270
|
+
B += $ >>> 16;
|
|
2271
|
+
e[5] = x = $ & 65535 | B << 16;
|
|
2272
2272
|
t[5] = z = P & 65535 | O << 16;
|
|
2273
2273
|
R = H;
|
|
2274
2274
|
k = Y;
|
|
2275
2275
|
P = k & 65535;
|
|
2276
2276
|
O = k >>> 16;
|
|
2277
|
-
|
|
2278
|
-
|
|
2277
|
+
$ = R & 65535;
|
|
2278
|
+
B = R >>> 16;
|
|
2279
2279
|
R = e[6];
|
|
2280
2280
|
k = t[6];
|
|
2281
2281
|
P += k & 65535;
|
|
2282
2282
|
O += k >>> 16;
|
|
2283
|
-
|
|
2284
|
-
|
|
2283
|
+
$ += R & 65535;
|
|
2284
|
+
B += R >>> 16;
|
|
2285
2285
|
O += P >>> 16;
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
e[6] = H =
|
|
2286
|
+
$ += O >>> 16;
|
|
2287
|
+
B += $ >>> 16;
|
|
2288
|
+
e[6] = H = $ & 65535 | B << 16;
|
|
2289
2289
|
t[6] = Y = P & 65535 | O << 16;
|
|
2290
2290
|
R = q;
|
|
2291
2291
|
k = V;
|
|
2292
2292
|
P = k & 65535;
|
|
2293
2293
|
O = k >>> 16;
|
|
2294
|
-
|
|
2295
|
-
|
|
2294
|
+
$ = R & 65535;
|
|
2295
|
+
B = R >>> 16;
|
|
2296
2296
|
R = e[7];
|
|
2297
2297
|
k = t[7];
|
|
2298
2298
|
P += k & 65535;
|
|
2299
2299
|
O += k >>> 16;
|
|
2300
|
-
|
|
2301
|
-
|
|
2300
|
+
$ += R & 65535;
|
|
2301
|
+
B += R >>> 16;
|
|
2302
2302
|
O += P >>> 16;
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
e[7] = q =
|
|
2303
|
+
$ += O >>> 16;
|
|
2304
|
+
B += $ >>> 16;
|
|
2305
|
+
e[7] = q = $ & 65535 | B << 16;
|
|
2306
2306
|
t[7] = V = P & 65535 | O << 16;
|
|
2307
2307
|
X += 128;
|
|
2308
2308
|
n -= 128;
|
|
@@ -2375,10 +2375,10 @@ naclFast.exports;
|
|
|
2375
2375
|
}
|
|
2376
2376
|
function ae(e, t, r) {
|
|
2377
2377
|
var n, s;
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2378
|
+
B(e[0], o);
|
|
2379
|
+
B(e[1], a);
|
|
2380
|
+
B(e[2], a);
|
|
2381
|
+
B(e[3], o);
|
|
2382
2382
|
for (s = 255; s >= 0; --s) {
|
|
2383
2383
|
n = r[s / 8 | 0] >> (s & 7) & 1;
|
|
2384
2384
|
se(e, t, n);
|
|
@@ -2389,9 +2389,9 @@ naclFast.exports;
|
|
|
2389
2389
|
}
|
|
2390
2390
|
function le(e, r) {
|
|
2391
2391
|
var n = [ t(), t(), t(), t() ];
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2392
|
+
B(n[0], d);
|
|
2393
|
+
B(n[1], h);
|
|
2394
|
+
B(n[2], a);
|
|
2395
2395
|
W(n[3], d, h);
|
|
2396
2396
|
ae(e, n, r);
|
|
2397
2397
|
}
|
|
@@ -2470,7 +2470,7 @@ naclFast.exports;
|
|
|
2470
2470
|
}
|
|
2471
2471
|
function pe(e, r) {
|
|
2472
2472
|
var n = t(), s = t(), l = t(), u = t(), d = t(), h = t(), g = t();
|
|
2473
|
-
|
|
2473
|
+
B(e[2], a);
|
|
2474
2474
|
x(e[1], r);
|
|
2475
2475
|
j(l, e[1]);
|
|
2476
2476
|
W(u, l, c);
|
|
@@ -2520,7 +2520,7 @@ naclFast.exports;
|
|
|
2520
2520
|
a = n;
|
|
2521
2521
|
return a;
|
|
2522
2522
|
}
|
|
2523
|
-
var me = 32, _e = 24, Ee = 32,
|
|
2523
|
+
var me = 32, _e = 24, Ee = 32, ye = 16, ve = 32, Se = 32, Ae = 32, be = 32, Ce = 32, we = _e, Ie = Ee, Te = ye, Re = 64, ke = 32, Pe = 64, Oe = 32, $e = 64;
|
|
2524
2524
|
e.lowlevel = {
|
|
2525
2525
|
crypto_core_hsalsa20: A,
|
|
2526
2526
|
crypto_stream_xor: T,
|
|
@@ -2532,7 +2532,7 @@ naclFast.exports;
|
|
|
2532
2532
|
crypto_verify_16: _,
|
|
2533
2533
|
crypto_verify_32: E,
|
|
2534
2534
|
crypto_secretbox: O,
|
|
2535
|
-
crypto_secretbox_open:
|
|
2535
|
+
crypto_secretbox_open: $,
|
|
2536
2536
|
crypto_scalarmult: K,
|
|
2537
2537
|
crypto_scalarmult_base: z,
|
|
2538
2538
|
crypto_box_beforenm: V,
|
|
@@ -2547,8 +2547,8 @@ naclFast.exports;
|
|
|
2547
2547
|
crypto_secretbox_KEYBYTES: me,
|
|
2548
2548
|
crypto_secretbox_NONCEBYTES: _e,
|
|
2549
2549
|
crypto_secretbox_ZEROBYTES: Ee,
|
|
2550
|
-
crypto_secretbox_BOXZEROBYTES:
|
|
2551
|
-
crypto_scalarmult_BYTES:
|
|
2550
|
+
crypto_secretbox_BOXZEROBYTES: ye,
|
|
2551
|
+
crypto_scalarmult_BYTES: ve,
|
|
2552
2552
|
crypto_scalarmult_SCALARBYTES: Se,
|
|
2553
2553
|
crypto_box_PUBLICKEYBYTES: Ae,
|
|
2554
2554
|
crypto_box_SECRETKEYBYTES: be,
|
|
@@ -2560,9 +2560,9 @@ naclFast.exports;
|
|
|
2560
2560
|
crypto_sign_PUBLICKEYBYTES: ke,
|
|
2561
2561
|
crypto_sign_SECRETKEYBYTES: Pe,
|
|
2562
2562
|
crypto_sign_SEEDBYTES: Oe,
|
|
2563
|
-
crypto_hash_BYTES:
|
|
2563
|
+
crypto_hash_BYTES: $e
|
|
2564
2564
|
};
|
|
2565
|
-
function
|
|
2565
|
+
function Be(e, t) {
|
|
2566
2566
|
if (e.length !== me) throw new Error("bad key size");
|
|
2567
2567
|
if (t.length !== _e) throw new Error("bad nonce size");
|
|
2568
2568
|
}
|
|
@@ -2592,43 +2592,43 @@ naclFast.exports;
|
|
|
2592
2592
|
};
|
|
2593
2593
|
e.secretbox = function(e, t, r) {
|
|
2594
2594
|
De(e, t, r);
|
|
2595
|
-
|
|
2595
|
+
Be(r, t);
|
|
2596
2596
|
var n = new Uint8Array(Ee + e.length);
|
|
2597
2597
|
var s = new Uint8Array(n.length);
|
|
2598
2598
|
for (var o = 0; o < e.length; o++) n[o + Ee] = e[o];
|
|
2599
2599
|
O(s, n, n.length, t, r);
|
|
2600
|
-
return s.subarray(
|
|
2600
|
+
return s.subarray(ye);
|
|
2601
2601
|
};
|
|
2602
2602
|
e.secretbox.open = function(e, t, r) {
|
|
2603
2603
|
De(e, t, r);
|
|
2604
|
-
|
|
2605
|
-
var n = new Uint8Array(
|
|
2604
|
+
Be(r, t);
|
|
2605
|
+
var n = new Uint8Array(ye + e.length);
|
|
2606
2606
|
var s = new Uint8Array(n.length);
|
|
2607
|
-
for (var o = 0; o < e.length; o++) n[o +
|
|
2607
|
+
for (var o = 0; o < e.length; o++) n[o + ye] = e[o];
|
|
2608
2608
|
if (n.length < 32) return false;
|
|
2609
|
-
if (
|
|
2609
|
+
if ($(s, n, n.length, t, r) !== 0) return false;
|
|
2610
2610
|
return s.subarray(Ee);
|
|
2611
2611
|
};
|
|
2612
2612
|
e.secretbox.keyLength = me;
|
|
2613
2613
|
e.secretbox.nonceLength = _e;
|
|
2614
|
-
e.secretbox.overheadLength =
|
|
2614
|
+
e.secretbox.overheadLength = ye;
|
|
2615
2615
|
e.scalarMult = function(e, t) {
|
|
2616
2616
|
De(e, t);
|
|
2617
2617
|
if (e.length !== Se) throw new Error("bad n size");
|
|
2618
|
-
if (t.length !==
|
|
2619
|
-
var r = new Uint8Array(
|
|
2618
|
+
if (t.length !== ve) throw new Error("bad p size");
|
|
2619
|
+
var r = new Uint8Array(ve);
|
|
2620
2620
|
K(r, e, t);
|
|
2621
2621
|
return r;
|
|
2622
2622
|
};
|
|
2623
2623
|
e.scalarMult.base = function(e) {
|
|
2624
2624
|
De(e);
|
|
2625
2625
|
if (e.length !== Se) throw new Error("bad n size");
|
|
2626
|
-
var t = new Uint8Array(
|
|
2626
|
+
var t = new Uint8Array(ve);
|
|
2627
2627
|
z(t, e);
|
|
2628
2628
|
return t;
|
|
2629
2629
|
};
|
|
2630
2630
|
e.scalarMult.scalarLength = Se;
|
|
2631
|
-
e.scalarMult.groupElementLength =
|
|
2631
|
+
e.scalarMult.groupElementLength = ve;
|
|
2632
2632
|
e.box = function(t, r, n, s) {
|
|
2633
2633
|
var o = e.box.before(n, s);
|
|
2634
2634
|
return e.secretbox(t, r, o);
|
|
@@ -2742,11 +2742,11 @@ naclFast.exports;
|
|
|
2742
2742
|
e.sign.signatureLength = Re;
|
|
2743
2743
|
e.hash = function(e) {
|
|
2744
2744
|
De(e);
|
|
2745
|
-
var t = new Uint8Array(
|
|
2745
|
+
var t = new Uint8Array($e);
|
|
2746
2746
|
ne(t, e, e.length);
|
|
2747
2747
|
return t;
|
|
2748
2748
|
};
|
|
2749
|
-
e.hash.hashLength =
|
|
2749
|
+
e.hash.hashLength = $e;
|
|
2750
2750
|
e.verify = function(e, t) {
|
|
2751
2751
|
De(e, t);
|
|
2752
2752
|
if (e.length === 0 || t.length === 0) return false;
|
|
@@ -2911,18 +2911,18 @@ function bcrypt_hash(e, t, r) {
|
|
|
2911
2911
|
}
|
|
2912
2912
|
|
|
2913
2913
|
function bcrypt_pbkdf$2(e, t, r, n, s, o, a) {
|
|
2914
|
-
var l = new Uint8Array(64), c = new Uint8Array(64), u = new Uint8Array(BCRYPT_HASHSIZE), d = new Uint8Array(BCRYPT_HASHSIZE), h = new Uint8Array(n + 4), p, g, m, _, E,
|
|
2914
|
+
var l = new Uint8Array(64), c = new Uint8Array(64), u = new Uint8Array(BCRYPT_HASHSIZE), d = new Uint8Array(BCRYPT_HASHSIZE), h = new Uint8Array(n + 4), p, g, m, _, E, y, v = o;
|
|
2915
2915
|
if (a < 1) return -1;
|
|
2916
2916
|
if (t === 0 || n === 0 || o === 0 || o > u.byteLength * u.byteLength || n > 1 << 20) return -1;
|
|
2917
2917
|
_ = Math.floor((o + u.byteLength - 1) / u.byteLength);
|
|
2918
2918
|
m = Math.floor((o + _ - 1) / _);
|
|
2919
2919
|
for (p = 0; p < n; p++) h[p] = r[p];
|
|
2920
2920
|
crypto_hash_sha512(l, e, t);
|
|
2921
|
-
for (
|
|
2922
|
-
h[n + 0] =
|
|
2923
|
-
h[n + 1] =
|
|
2924
|
-
h[n + 2] =
|
|
2925
|
-
h[n + 3] =
|
|
2921
|
+
for (y = 1; o > 0; y++) {
|
|
2922
|
+
h[n + 0] = y >>> 24;
|
|
2923
|
+
h[n + 1] = y >>> 16;
|
|
2924
|
+
h[n + 2] = y >>> 8;
|
|
2925
|
+
h[n + 3] = y;
|
|
2926
2926
|
crypto_hash_sha512(c, h, n + 4);
|
|
2927
2927
|
bcrypt_hash(l, c, d);
|
|
2928
2928
|
for (p = u.byteLength; p--; ) u[p] = d[p];
|
|
@@ -2933,8 +2933,8 @@ function bcrypt_pbkdf$2(e, t, r, n, s, o, a) {
|
|
|
2933
2933
|
}
|
|
2934
2934
|
m = Math.min(m, o);
|
|
2935
2935
|
for (p = 0; p < m; p++) {
|
|
2936
|
-
E = p * _ + (
|
|
2937
|
-
if (E >=
|
|
2936
|
+
E = p * _ + (y - 1);
|
|
2937
|
+
if (E >= v) break;
|
|
2938
2938
|
s[E] = u[p];
|
|
2939
2939
|
}
|
|
2940
2940
|
o -= p;
|
|
@@ -3010,9 +3010,9 @@ function requireConstants() {
|
|
|
3010
3010
|
return t => e.includes(o[t].sslName);
|
|
3011
3011
|
})();
|
|
3012
3012
|
const E = [ "hmac-sha2-256-etm@openssh.com", "hmac-sha2-512-etm@openssh.com", "hmac-sha1-etm@openssh.com", "hmac-sha2-256", "hmac-sha2-512", "hmac-sha1" ].filter(_);
|
|
3013
|
-
const
|
|
3014
|
-
const
|
|
3015
|
-
const S =
|
|
3013
|
+
const y = E.concat([ "hmac-md5", "hmac-sha2-256-96", "hmac-sha2-512-96", "hmac-ripemd160", "hmac-sha1-96", "hmac-md5-96" ].filter(_));
|
|
3014
|
+
const v = [ "none", "zlib@openssh.com", "zlib" ];
|
|
3015
|
+
const S = v.concat([]);
|
|
3016
3016
|
const A = {
|
|
3017
3017
|
BAD_DHGEX: 1 << 0,
|
|
3018
3018
|
OLD_EXIT: 1 << 1,
|
|
@@ -3160,8 +3160,8 @@ function requireConstants() {
|
|
|
3160
3160
|
DEFAULT_CIPHER: g,
|
|
3161
3161
|
SUPPORTED_CIPHER: m,
|
|
3162
3162
|
DEFAULT_MAC: E,
|
|
3163
|
-
SUPPORTED_MAC:
|
|
3164
|
-
DEFAULT_COMPRESSION:
|
|
3163
|
+
SUPPORTED_MAC: y,
|
|
3164
|
+
DEFAULT_COMPRESSION: v,
|
|
3165
3165
|
SUPPORTED_COMPRESSION: S,
|
|
3166
3166
|
curve25519Supported: l,
|
|
3167
3167
|
eddsaSupported: a
|
|
@@ -3563,11 +3563,11 @@ function requirePoly1305() {
|
|
|
3563
3563
|
var E = r.printErr || console.warn.bind(console);
|
|
3564
3564
|
for (a in o) o.hasOwnProperty(a) && (r[a] = o[a]);
|
|
3565
3565
|
o = null;
|
|
3566
|
-
var
|
|
3567
|
-
r.wasmBinary && (
|
|
3566
|
+
var y;
|
|
3567
|
+
r.wasmBinary && (y = r.wasmBinary);
|
|
3568
3568
|
r.noExitRuntime || true;
|
|
3569
3569
|
"object" !== typeof WebAssembly && M("no native wasm support detected");
|
|
3570
|
-
var
|
|
3570
|
+
var v, S = false;
|
|
3571
3571
|
function A(e, t) {
|
|
3572
3572
|
e || M("Assertion failed: " + t);
|
|
3573
3573
|
}
|
|
@@ -3655,7 +3655,7 @@ function requirePoly1305() {
|
|
|
3655
3655
|
}
|
|
3656
3656
|
var w = "undefined" !== typeof TextDecoder ? new TextDecoder("utf8") : void 0, I, T, R;
|
|
3657
3657
|
function k() {
|
|
3658
|
-
var e =
|
|
3658
|
+
var e = v.buffer;
|
|
3659
3659
|
I = e;
|
|
3660
3660
|
r.HEAP8 = T = new Int8Array(e);
|
|
3661
3661
|
r.HEAP16 = new Int16Array(e);
|
|
@@ -3666,7 +3666,7 @@ function requirePoly1305() {
|
|
|
3666
3666
|
r.HEAPF32 = new Float32Array(e);
|
|
3667
3667
|
r.HEAPF64 = new Float64Array(e);
|
|
3668
3668
|
}
|
|
3669
|
-
var P, O = [],
|
|
3669
|
+
var P, O = [], $ = [], B = [];
|
|
3670
3670
|
function N() {
|
|
3671
3671
|
var e = r.preRun.shift();
|
|
3672
3672
|
O.unshift(e);
|
|
@@ -3691,7 +3691,7 @@ function requirePoly1305() {
|
|
|
3691
3691
|
function W() {
|
|
3692
3692
|
var e = H;
|
|
3693
3693
|
try {
|
|
3694
|
-
if (e == H &&
|
|
3694
|
+
if (e == H && y) return new Uint8Array(y);
|
|
3695
3695
|
var t = z(e);
|
|
3696
3696
|
if (t) return t;
|
|
3697
3697
|
if (g) return g(e);
|
|
@@ -3701,7 +3701,7 @@ function requirePoly1305() {
|
|
|
3701
3701
|
}
|
|
3702
3702
|
}
|
|
3703
3703
|
function j() {
|
|
3704
|
-
if (!
|
|
3704
|
+
if (!y && (l || c)) {
|
|
3705
3705
|
if ("function" === typeof fetch && !H.startsWith("file://")) return fetch(H, {
|
|
3706
3706
|
credentials: "same-origin"
|
|
3707
3707
|
}).then(function(e) {
|
|
@@ -3774,7 +3774,7 @@ function requirePoly1305() {
|
|
|
3774
3774
|
0 < n % 65536 && (n += 65536 - n % 65536);
|
|
3775
3775
|
e: {
|
|
3776
3776
|
try {
|
|
3777
|
-
|
|
3777
|
+
v.grow(Math.min(2147483648, n) - I.byteLength + 65535 >>> 16);
|
|
3778
3778
|
k();
|
|
3779
3779
|
var s = 1;
|
|
3780
3780
|
break e;
|
|
@@ -3789,10 +3789,10 @@ function requirePoly1305() {
|
|
|
3789
3789
|
(function() {
|
|
3790
3790
|
function e(e) {
|
|
3791
3791
|
r.asm = e.exports;
|
|
3792
|
-
|
|
3792
|
+
v = r.asm.b;
|
|
3793
3793
|
k();
|
|
3794
3794
|
P = r.asm.j;
|
|
3795
|
-
|
|
3795
|
+
$.unshift(r.asm.c);
|
|
3796
3796
|
D--;
|
|
3797
3797
|
r.monitorRunDependencies && r.monitorRunDependencies(D);
|
|
3798
3798
|
0 == D && (null !== L && (clearInterval(L), L = null), U && (e = U, U = null, e()));
|
|
@@ -3819,7 +3819,7 @@ function requirePoly1305() {
|
|
|
3819
3819
|
return E("Module.instantiateWasm callback failed with error: " + e), false;
|
|
3820
3820
|
}
|
|
3821
3821
|
(function() {
|
|
3822
|
-
return
|
|
3822
|
+
return y || "function" !== typeof WebAssembly.instantiateStreaming || H.startsWith(x) || H.startsWith("file://") || "function" !== typeof fetch ? n(t) : fetch(H, {
|
|
3823
3823
|
credentials: "same-origin"
|
|
3824
3824
|
}).then(function(e) {
|
|
3825
3825
|
return WebAssembly.instantiateStreaming(e, o).then(t, function(e) {
|
|
@@ -3867,14 +3867,14 @@ function requirePoly1305() {
|
|
|
3867
3867
|
function ee() {
|
|
3868
3868
|
function e() {
|
|
3869
3869
|
if (!Z && (Z = true, r.calledRun = true, !S)) {
|
|
3870
|
-
Q(
|
|
3870
|
+
Q($);
|
|
3871
3871
|
n(r);
|
|
3872
3872
|
if (r.onRuntimeInitialized) r.onRuntimeInitialized();
|
|
3873
3873
|
if (r.postRun) for ("function" == typeof r.postRun && (r.postRun = [ r.postRun ]); r.postRun.length; ) {
|
|
3874
3874
|
var e = r.postRun.shift();
|
|
3875
|
-
|
|
3875
|
+
B.unshift(e);
|
|
3876
3876
|
}
|
|
3877
|
-
Q(
|
|
3877
|
+
Q(B);
|
|
3878
3878
|
}
|
|
3879
3879
|
}
|
|
3880
3880
|
if (!(0 < D)) {
|
|
@@ -3918,12 +3918,12 @@ function requireCrypto() {
|
|
|
3918
3918
|
let m;
|
|
3919
3919
|
let _;
|
|
3920
3920
|
let E;
|
|
3921
|
-
let v;
|
|
3922
3921
|
let y;
|
|
3922
|
+
let v;
|
|
3923
3923
|
let S;
|
|
3924
3924
|
try {
|
|
3925
3925
|
g = require("./crypto/build/Release/sshcrypto.node");
|
|
3926
|
-
({AESGCMCipher: m, ChaChaPolyCipher: _, GenericCipher: E, AESGCMDecipher:
|
|
3926
|
+
({AESGCMCipher: m, ChaChaPolyCipher: _, GenericCipher: E, AESGCMDecipher: y, ChaChaPolyDecipher: v, GenericDecipher: S} = g);
|
|
3927
3927
|
} catch {}
|
|
3928
3928
|
const A = 1 << 0;
|
|
3929
3929
|
const b = (() => {
|
|
@@ -4396,7 +4396,7 @@ function requireCrypto() {
|
|
|
4396
4396
|
const t = e.inbound;
|
|
4397
4397
|
this.inSeqno = t.seqno;
|
|
4398
4398
|
this._onPayload = t.onPayload;
|
|
4399
|
-
this._instance = new
|
|
4399
|
+
this._instance = new v(t.decipherKey);
|
|
4400
4400
|
this._len = 0;
|
|
4401
4401
|
this._lenBuf = Buffer.alloc(4);
|
|
4402
4402
|
this._lenPos = 0;
|
|
@@ -4553,7 +4553,7 @@ function requireCrypto() {
|
|
|
4553
4553
|
const t = e.inbound;
|
|
4554
4554
|
this.inSeqno = t.seqno;
|
|
4555
4555
|
this._onPayload = t.onPayload;
|
|
4556
|
-
this._instance = new
|
|
4556
|
+
this._instance = new y(t.decipherInfo.sslName, t.decipherKey, t.decipherIV);
|
|
4557
4557
|
this._len = 0;
|
|
4558
4558
|
this._lenBytes = 0;
|
|
4559
4559
|
this._packet = null;
|
|
@@ -4719,7 +4719,7 @@ function requireCrypto() {
|
|
|
4719
4719
|
if (this._macActualLen < s.length) {
|
|
4720
4720
|
s = new Uint8Array(s.buffer, s.byteOffset, this._macActualLen);
|
|
4721
4721
|
}
|
|
4722
|
-
if (
|
|
4722
|
+
if (!$(s, this._mac)) throw new Error("Invalid MAC");
|
|
4723
4723
|
const c = new l(this._packet.buffer, this._packet.byteOffset + 1, this._packet.length - this._packet[0] - 1);
|
|
4724
4724
|
this.inSeqno = this.inSeqno + 1 >>> 0;
|
|
4725
4725
|
this._blockPos = 0;
|
|
@@ -4841,14 +4841,14 @@ function requireCrypto() {
|
|
|
4841
4841
|
return e;
|
|
4842
4842
|
};
|
|
4843
4843
|
})();
|
|
4844
|
-
function
|
|
4844
|
+
function $(e, t) {
|
|
4845
4845
|
if (e.length !== t.length) {
|
|
4846
4846
|
s(e, e);
|
|
4847
4847
|
return false;
|
|
4848
4848
|
}
|
|
4849
4849
|
return s(e, t);
|
|
4850
4850
|
}
|
|
4851
|
-
function
|
|
4851
|
+
function B(e) {
|
|
4852
4852
|
if (typeof e !== "object" || e === null) throw new Error("Invalid config");
|
|
4853
4853
|
if (typeof e.outbound !== "object" || e.outbound === null) throw new Error("Invalid outbound");
|
|
4854
4854
|
const t = e.outbound;
|
|
@@ -4903,10 +4903,10 @@ function requireCrypto() {
|
|
|
4903
4903
|
switch (t.decipherInfo.sslName) {
|
|
4904
4904
|
case "aes-128-gcm":
|
|
4905
4905
|
case "aes-256-gcm":
|
|
4906
|
-
return
|
|
4906
|
+
return y && !r ? new AESGCMDecipherBinding(e) : new AESGCMDecipherNative(e);
|
|
4907
4907
|
|
|
4908
4908
|
case "chacha20":
|
|
4909
|
-
return
|
|
4909
|
+
return v && !r ? new ChaChaPolyDecipherBinding(e) : new ChaChaPolyDecipherNative(e);
|
|
4910
4910
|
|
|
4911
4911
|
default:
|
|
4912
4912
|
{
|
|
@@ -4933,7 +4933,7 @@ function requireCrypto() {
|
|
|
4933
4933
|
e();
|
|
4934
4934
|
}))(),
|
|
4935
4935
|
NullCipher: NullCipher,
|
|
4936
|
-
createCipher:
|
|
4936
|
+
createCipher: B,
|
|
4937
4937
|
NullDecipher: NullDecipher,
|
|
4938
4938
|
createDecipher: N
|
|
4939
4939
|
};
|
|
@@ -5734,20 +5734,20 @@ PPK_Private.prototype = BaseKey;
|
|
|
5734
5734
|
const m = r[6];
|
|
5735
5735
|
const _ = a.length;
|
|
5736
5736
|
const E = n.length;
|
|
5737
|
-
const
|
|
5738
|
-
const
|
|
5737
|
+
const y = Buffer.byteLength(p);
|
|
5738
|
+
const v = g.length;
|
|
5739
5739
|
const S = o.length;
|
|
5740
|
-
const A = Buffer.allocUnsafe(4 + _ + 4 + E + 4 +
|
|
5740
|
+
const A = Buffer.allocUnsafe(4 + _ + 4 + E + 4 + y + 4 + v + 4 + S);
|
|
5741
5741
|
let b = 0;
|
|
5742
5742
|
writeUInt32BE$6(A, _, b);
|
|
5743
5743
|
A.utf8Write(a, b += 4, _);
|
|
5744
5744
|
writeUInt32BE$6(A, E, b += _);
|
|
5745
5745
|
A.utf8Write(n, b += 4, E);
|
|
5746
|
-
writeUInt32BE$6(A,
|
|
5747
|
-
A.utf8Write(p, b += 4,
|
|
5748
|
-
writeUInt32BE$6(A,
|
|
5746
|
+
writeUInt32BE$6(A, y, b += E);
|
|
5747
|
+
A.utf8Write(p, b += 4, y);
|
|
5748
|
+
writeUInt32BE$6(A, v, b += y);
|
|
5749
5749
|
A.set(g, b += 4);
|
|
5750
|
-
writeUInt32BE$6(A, S, b +=
|
|
5750
|
+
writeUInt32BE$6(A, S, b += v);
|
|
5751
5751
|
A.set(o, b + 4);
|
|
5752
5752
|
if (!t) t = l;
|
|
5753
5753
|
const C = createHmac("sha1", createHash$1("sha1").update("putty-private-key-file-mac-key").update(t).digest()).update(A).digest("hex");
|
|
@@ -6289,12 +6289,12 @@ const CygwinAgent$1 = (() => {
|
|
|
6289
6289
|
for (let e = 0, t = 0; t < 32; ++e, t += 2) E[e] = parseInt(_.substring(t, t + 2), 16);
|
|
6290
6290
|
for (let e = 0; e < 16; e += 4) writeUInt32LE(E, readUInt32BE$1(E, e), e);
|
|
6291
6291
|
A();
|
|
6292
|
-
function
|
|
6292
|
+
function y() {
|
|
6293
6293
|
u = 0;
|
|
6294
6294
|
c = "secret";
|
|
6295
6295
|
p.write(E);
|
|
6296
6296
|
}
|
|
6297
|
-
function
|
|
6297
|
+
function v(e) {
|
|
6298
6298
|
u += e.length;
|
|
6299
6299
|
if (c === "secret") {
|
|
6300
6300
|
if (u === 16) {
|
|
@@ -6307,8 +6307,8 @@ const CygwinAgent$1 = (() => {
|
|
|
6307
6307
|
if (c === "creds") {
|
|
6308
6308
|
if (!d) h.push(e);
|
|
6309
6309
|
if (u === 12) {
|
|
6310
|
-
p.removeListener("connect",
|
|
6311
|
-
p.removeListener("data",
|
|
6310
|
+
p.removeListener("connect", y);
|
|
6311
|
+
p.removeListener("data", v);
|
|
6312
6312
|
p.removeListener("error", S);
|
|
6313
6313
|
p.removeListener("end", S);
|
|
6314
6314
|
p.removeListener("close", S);
|
|
@@ -6327,8 +6327,8 @@ const CygwinAgent$1 = (() => {
|
|
|
6327
6327
|
}
|
|
6328
6328
|
function A() {
|
|
6329
6329
|
p = new Socket$1;
|
|
6330
|
-
p.on("connect",
|
|
6331
|
-
p.on("data",
|
|
6330
|
+
p.on("connect", y);
|
|
6331
|
+
p.on("data", v);
|
|
6332
6332
|
p.on("error", S);
|
|
6333
6333
|
p.on("end", S);
|
|
6334
6334
|
p.on("close", S);
|
|
@@ -6360,10 +6360,10 @@ const AgentProtocol$1 = (() => {
|
|
|
6360
6360
|
const c = 1;
|
|
6361
6361
|
function u(e) {
|
|
6362
6362
|
let t;
|
|
6363
|
-
while (e[
|
|
6364
|
-
const r = e[
|
|
6363
|
+
while (e[y].length) {
|
|
6364
|
+
const r = e[y][0][h];
|
|
6365
6365
|
if (r === undefined) break;
|
|
6366
|
-
e[
|
|
6366
|
+
e[y].shift();
|
|
6367
6367
|
t = e.push(r);
|
|
6368
6368
|
}
|
|
6369
6369
|
return t;
|
|
@@ -6393,10 +6393,10 @@ const AgentProtocol$1 = (() => {
|
|
|
6393
6393
|
}
|
|
6394
6394
|
function m(e) {
|
|
6395
6395
|
e[S] = null;
|
|
6396
|
-
if (e[
|
|
6397
|
-
const t = e[
|
|
6396
|
+
if (e[v] === l) {
|
|
6397
|
+
const t = e[y];
|
|
6398
6398
|
if (t && t.length) {
|
|
6399
|
-
e[
|
|
6399
|
+
e[y] = [];
|
|
6400
6400
|
for (const e of t) e.cb(new Error("No reply from server"));
|
|
6401
6401
|
}
|
|
6402
6402
|
}
|
|
@@ -6414,8 +6414,8 @@ const AgentProtocol$1 = (() => {
|
|
|
6414
6414
|
function E() {
|
|
6415
6415
|
this[C] = true;
|
|
6416
6416
|
}
|
|
6417
|
-
const
|
|
6418
|
-
const
|
|
6417
|
+
const y = Symbol("Requests");
|
|
6418
|
+
const v = Symbol("Agent Protocol Role");
|
|
6419
6419
|
const S = Symbol("Agent Protocol Buffer");
|
|
6420
6420
|
const A = Symbol("Agent Protocol Current Message Length");
|
|
6421
6421
|
const b = Symbol("Agent Protocol Closed");
|
|
@@ -6426,8 +6426,8 @@ const AgentProtocol$1 = (() => {
|
|
|
6426
6426
|
autoDestroy: true,
|
|
6427
6427
|
emitClose: false
|
|
6428
6428
|
});
|
|
6429
|
-
this[
|
|
6430
|
-
this[
|
|
6429
|
+
this[v] = e ? l : c;
|
|
6430
|
+
this[y] = [];
|
|
6431
6431
|
this[S] = null;
|
|
6432
6432
|
this[A] = -1;
|
|
6433
6433
|
this.once("end", E);
|
|
@@ -6445,9 +6445,9 @@ const AgentProtocol$1 = (() => {
|
|
|
6445
6445
|
if (p < 4 + this[A]) break;
|
|
6446
6446
|
const c = h[g += 4];
|
|
6447
6447
|
++g;
|
|
6448
|
-
if (this[
|
|
6449
|
-
if (this[
|
|
6450
|
-
const o = this[
|
|
6448
|
+
if (this[v] === l) {
|
|
6449
|
+
if (this[y].length === 0) return d(new Error("Received unexpected message from server"));
|
|
6450
|
+
const o = this[y].shift();
|
|
6451
6451
|
switch (c) {
|
|
6452
6452
|
case r:
|
|
6453
6453
|
o.cb(new Error("Agent responded with failure"));
|
|
@@ -6510,7 +6510,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6510
6510
|
case e:
|
|
6511
6511
|
{
|
|
6512
6512
|
const e = new AgentInboundRequest(c);
|
|
6513
|
-
this[
|
|
6513
|
+
this[y].push(e);
|
|
6514
6514
|
this.emit("identities", e);
|
|
6515
6515
|
break;
|
|
6516
6516
|
}
|
|
@@ -6525,13 +6525,13 @@ const AgentProtocol$1 = (() => {
|
|
|
6525
6525
|
binaryParser.clear();
|
|
6526
6526
|
if (r === undefined) {
|
|
6527
6527
|
const e = new AgentInboundRequest(c);
|
|
6528
|
-
this[
|
|
6528
|
+
this[y].push(e);
|
|
6529
6529
|
return this.failureReply(e);
|
|
6530
6530
|
}
|
|
6531
6531
|
e = parseKey$5(e);
|
|
6532
6532
|
if (e instanceof Error) {
|
|
6533
6533
|
const e = new AgentInboundRequest(c);
|
|
6534
|
-
this[
|
|
6534
|
+
this[y].push(e);
|
|
6535
6535
|
return this.failureReply(e);
|
|
6536
6536
|
}
|
|
6537
6537
|
const n = {
|
|
@@ -6549,7 +6549,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6549
6549
|
}
|
|
6550
6550
|
if (s === undefined) s = e.type;
|
|
6551
6551
|
const l = new AgentInboundRequest(c, s);
|
|
6552
|
-
this[
|
|
6552
|
+
this[y].push(l);
|
|
6553
6553
|
this.emit("sign", l, e, t, n);
|
|
6554
6554
|
break;
|
|
6555
6555
|
}
|
|
@@ -6557,7 +6557,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6557
6557
|
default:
|
|
6558
6558
|
{
|
|
6559
6559
|
const e = new AgentInboundRequest(c);
|
|
6560
|
-
this[
|
|
6560
|
+
this[y].push(e);
|
|
6561
6561
|
this.failureReply(e);
|
|
6562
6562
|
}
|
|
6563
6563
|
}
|
|
@@ -6583,7 +6583,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6583
6583
|
e();
|
|
6584
6584
|
}
|
|
6585
6585
|
sign(e, r, n, s) {
|
|
6586
|
-
if (this[
|
|
6586
|
+
if (this[v] !== l) throw new Error("Client-only method called with server role");
|
|
6587
6587
|
if (typeof n === "function") {
|
|
6588
6588
|
s = n;
|
|
6589
6589
|
n = undefined;
|
|
@@ -6618,28 +6618,28 @@ const AgentProtocol$1 = (() => {
|
|
|
6618
6618
|
r.copy(g, p += 4);
|
|
6619
6619
|
writeUInt32BE$5(g, c, p += h);
|
|
6620
6620
|
if (typeof s !== "function") s = noop$9;
|
|
6621
|
-
this[
|
|
6621
|
+
this[y].push({
|
|
6622
6622
|
type: u,
|
|
6623
6623
|
cb: s
|
|
6624
6624
|
});
|
|
6625
6625
|
return this.push(g);
|
|
6626
6626
|
}
|
|
6627
6627
|
getIdentities(t) {
|
|
6628
|
-
if (this[
|
|
6628
|
+
if (this[v] !== l) throw new Error("Client-only method called with server role");
|
|
6629
6629
|
const r = e;
|
|
6630
6630
|
let n = 0;
|
|
6631
6631
|
const s = Buffer.allocUnsafe(4 + 1);
|
|
6632
6632
|
writeUInt32BE$5(s, s.length - 4, n);
|
|
6633
6633
|
s[n += 4] = r;
|
|
6634
6634
|
if (typeof t !== "function") t = noop$9;
|
|
6635
|
-
this[
|
|
6635
|
+
this[y].push({
|
|
6636
6636
|
type: r,
|
|
6637
6637
|
cb: t
|
|
6638
6638
|
});
|
|
6639
6639
|
return this.push(s);
|
|
6640
6640
|
}
|
|
6641
6641
|
failureReply(e) {
|
|
6642
|
-
if (this[
|
|
6642
|
+
if (this[v] !== c) throw new Error("Server-only method called with client role");
|
|
6643
6643
|
if (!(e instanceof AgentInboundRequest)) throw new Error("Wrong request argument");
|
|
6644
6644
|
if (e.hasResponded()) return true;
|
|
6645
6645
|
let t = 0;
|
|
@@ -6649,7 +6649,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6649
6649
|
return g(this, e, n);
|
|
6650
6650
|
}
|
|
6651
6651
|
getIdentitiesReply(t, r) {
|
|
6652
|
-
if (this[
|
|
6652
|
+
if (this[v] !== c) throw new Error("Server-only method called with client role");
|
|
6653
6653
|
if (!(t instanceof AgentInboundRequest)) throw new Error("Wrong request argument");
|
|
6654
6654
|
if (t.hasResponded()) return true;
|
|
6655
6655
|
if (t.getType() !== e) throw new Error("Invalid response to request");
|
|
@@ -6701,7 +6701,7 @@ const AgentProtocol$1 = (() => {
|
|
|
6701
6701
|
return g(this, t, l);
|
|
6702
6702
|
}
|
|
6703
6703
|
signReply(e, r) {
|
|
6704
|
-
if (this[
|
|
6704
|
+
if (this[v] !== c) throw new Error("Server-only method called with client role");
|
|
6705
6705
|
if (!(e instanceof AgentInboundRequest)) throw new Error("Wrong request argument");
|
|
6706
6706
|
if (e.hasResponded()) return true;
|
|
6707
6707
|
if (e.getType() !== t) throw new Error("Invalid response to request");
|
|
@@ -7881,11 +7881,11 @@ function requireKex() {
|
|
|
7881
7881
|
hasRequiredKex = 1;
|
|
7882
7882
|
const {createDiffieHellman: e, createDiffieHellmanGroup: t, createECDH: r, createHash: n, createPublicKey: s, diffieHellman: o, generateKeyPairSync: a, randomFillSync: l} = require$$0$3;
|
|
7883
7883
|
const {Ber: c} = lib$1;
|
|
7884
|
-
const {COMPAT: u, curve25519Supported: d, DEFAULT_KEX: h, DEFAULT_SERVER_HOST_KEY: p, DEFAULT_CIPHER: g, DEFAULT_MAC: m, DEFAULT_COMPRESSION: _, DISCONNECT_REASON: E, MESSAGE:
|
|
7885
|
-
const {CIPHER_INFO:
|
|
7884
|
+
const {COMPAT: u, curve25519Supported: d, DEFAULT_KEX: h, DEFAULT_SERVER_HOST_KEY: p, DEFAULT_CIPHER: g, DEFAULT_MAC: m, DEFAULT_COMPRESSION: _, DISCONNECT_REASON: E, MESSAGE: y} = requireConstants();
|
|
7885
|
+
const {CIPHER_INFO: v, createCipher: S, createDecipher: A, MAC_INFO: b} = requireCrypto();
|
|
7886
7886
|
const {parseDERKey: C} = keyParser;
|
|
7887
7887
|
const {bufferFill: w, bufferParser: I, convertSignature: T, doFatalError: R, FastBuffer: k, sigSSHToASN1: P, writeUInt32BE: O} = requireUtils();
|
|
7888
|
-
const {PacketReader:
|
|
7888
|
+
const {PacketReader: $, PacketWriter: B, ZlibPacketReader: N, ZlibPacketWriter: D} = zlib$1;
|
|
7889
7889
|
let L;
|
|
7890
7890
|
const U = 2048;
|
|
7891
7891
|
const M = 8192;
|
|
@@ -7922,7 +7922,7 @@ function requireKex() {
|
|
|
7922
7922
|
e._offer.copyAllTo(t, 17);
|
|
7923
7923
|
}
|
|
7924
7924
|
e._debug && e._debug("Outbound: Sending KEXINIT");
|
|
7925
|
-
t[0] =
|
|
7925
|
+
t[0] = y.KEXINIT;
|
|
7926
7926
|
l(t, 1, 16);
|
|
7927
7927
|
w(t, 0, t.length - 5);
|
|
7928
7928
|
e._kexinit = t;
|
|
@@ -8049,15 +8049,15 @@ function requireKex() {
|
|
|
8049
8049
|
}
|
|
8050
8050
|
r.cs.cipher = c[h];
|
|
8051
8051
|
p && p(`Handshake: C->S Cipher: ${c[h]}`);
|
|
8052
|
-
const
|
|
8053
|
-
p && p(`Handshake: (local) S->C cipher: ${
|
|
8052
|
+
const y = o.lists.sc.cipher.array;
|
|
8053
|
+
p && p(`Handshake: (local) S->C cipher: ${y}`);
|
|
8054
8054
|
p && p(`Handshake: (remote) S->C cipher: ${a.sc.cipher}`);
|
|
8055
8055
|
if (e._server) {
|
|
8056
|
-
d =
|
|
8056
|
+
d = y;
|
|
8057
8057
|
c = a.sc.cipher;
|
|
8058
8058
|
} else {
|
|
8059
8059
|
d = a.sc.cipher;
|
|
8060
|
-
c =
|
|
8060
|
+
c = y;
|
|
8061
8061
|
}
|
|
8062
8062
|
for (h = 0; h < c.length && d.indexOf(c[h]) === -1; ++h) ;
|
|
8063
8063
|
if (h === c.length) {
|
|
@@ -8069,7 +8069,7 @@ function requireKex() {
|
|
|
8069
8069
|
const S = o.lists.cs.mac.array;
|
|
8070
8070
|
p && p(`Handshake: (local) C->S MAC: ${S}`);
|
|
8071
8071
|
p && p(`Handshake: (remote) C->S MAC: ${a.cs.mac}`);
|
|
8072
|
-
if (
|
|
8072
|
+
if (v[r.cs.cipher].authLen > 0) {
|
|
8073
8073
|
r.cs.mac = "";
|
|
8074
8074
|
p && p("Handshake: C->S MAC: <implicit>");
|
|
8075
8075
|
} else {
|
|
@@ -8091,7 +8091,7 @@ function requireKex() {
|
|
|
8091
8091
|
const A = o.lists.sc.mac.array;
|
|
8092
8092
|
p && p(`Handshake: (local) S->C MAC: ${A}`);
|
|
8093
8093
|
p && p(`Handshake: (remote) S->C MAC: ${a.sc.mac}`);
|
|
8094
|
-
if (
|
|
8094
|
+
if (v[r.sc.cipher].authLen > 0) {
|
|
8095
8095
|
r.sc.mac = "";
|
|
8096
8096
|
p && p("Handshake: S->C MAC: <implicit>");
|
|
8097
8097
|
} else {
|
|
@@ -8311,7 +8311,7 @@ function requireKex() {
|
|
|
8311
8311
|
const s = 4 + n + 4 + t.length;
|
|
8312
8312
|
let o = this._protocol._packetRW.write.allocStartKEX;
|
|
8313
8313
|
const a = this._protocol._packetRW.write.alloc(1 + 4 + l.length + 4 + c.length + 4 + s, true);
|
|
8314
|
-
a[o] =
|
|
8314
|
+
a[o] = y.KEXDH_REPLY;
|
|
8315
8315
|
O(a, l.length, ++o);
|
|
8316
8316
|
a.set(l, o += 4);
|
|
8317
8317
|
O(a, c.length, o += l.length);
|
|
@@ -8361,8 +8361,8 @@ function requireKex() {
|
|
|
8361
8361
|
e.set(o, 4);
|
|
8362
8362
|
o = e;
|
|
8363
8363
|
}
|
|
8364
|
-
const n =
|
|
8365
|
-
const s =
|
|
8364
|
+
const n = v[r.cs.cipher];
|
|
8365
|
+
const s = v[r.sc.cipher];
|
|
8366
8366
|
const a = G(n.ivLen, this.hashName, o, u, this.sessionID, "A");
|
|
8367
8367
|
const l = G(s.ivLen, this.hashName, o, u, this.sessionID, "B");
|
|
8368
8368
|
const c = G(n.keyLen, this.hashName, o, u, this.sessionID, "C");
|
|
@@ -8374,10 +8374,10 @@ function requireKex() {
|
|
|
8374
8374
|
_ = G(m.len, this.hashName, o, u, this.sessionID, "E");
|
|
8375
8375
|
}
|
|
8376
8376
|
let E;
|
|
8377
|
-
let
|
|
8377
|
+
let y;
|
|
8378
8378
|
if (!s.authLen) {
|
|
8379
8379
|
E = b[r.sc.mac];
|
|
8380
|
-
|
|
8380
|
+
y = G(E.len, this.hashName, o, u, this.sessionID, "F");
|
|
8381
8381
|
}
|
|
8382
8382
|
const C = {
|
|
8383
8383
|
inbound: {
|
|
@@ -8387,7 +8387,7 @@ function requireKex() {
|
|
|
8387
8387
|
decipherIV: !t ? l : a,
|
|
8388
8388
|
decipherKey: !t ? g : c,
|
|
8389
8389
|
macInfo: !t ? E : m,
|
|
8390
|
-
macKey: !t ?
|
|
8390
|
+
macKey: !t ? y : _
|
|
8391
8391
|
},
|
|
8392
8392
|
outbound: {
|
|
8393
8393
|
onWrite: this._protocol._onWrite,
|
|
@@ -8396,7 +8396,7 @@ function requireKex() {
|
|
|
8396
8396
|
cipherIV: t ? l : a,
|
|
8397
8397
|
cipherKey: t ? g : c,
|
|
8398
8398
|
macInfo: t ? E : m,
|
|
8399
|
-
macKey: t ?
|
|
8399
|
+
macKey: t ? y : _
|
|
8400
8400
|
}
|
|
8401
8401
|
};
|
|
8402
8402
|
this._protocol._decipher.free();
|
|
@@ -8418,7 +8418,7 @@ function requireKex() {
|
|
|
8418
8418
|
}
|
|
8419
8419
|
|
|
8420
8420
|
default:
|
|
8421
|
-
if (t) w.read = new
|
|
8421
|
+
if (t) w.read = new $; else w.write = new B(this._protocol);
|
|
8422
8422
|
}
|
|
8423
8423
|
switch (r.sc.compress) {
|
|
8424
8424
|
case "zlib":
|
|
@@ -8432,7 +8432,7 @@ function requireKex() {
|
|
|
8432
8432
|
}
|
|
8433
8433
|
|
|
8434
8434
|
default:
|
|
8435
|
-
if (t) w.write = new
|
|
8435
|
+
if (t) w.write = new B(this._protocol); else w.read = new $;
|
|
8436
8436
|
}
|
|
8437
8437
|
this._protocol._packetRW.read.cleanup();
|
|
8438
8438
|
this._protocol._packetRW.write.cleanup();
|
|
@@ -8470,7 +8470,7 @@ function requireKex() {
|
|
|
8470
8470
|
const e = this.getPublicKey();
|
|
8471
8471
|
let t = this._protocol._packetRW.write.allocStartKEX;
|
|
8472
8472
|
const r = this._protocol._packetRW.write.alloc(1 + 4 + e.length, true);
|
|
8473
|
-
r[t] =
|
|
8473
|
+
r[t] = y.KEXDH_INIT;
|
|
8474
8474
|
O(r, e.length, ++t);
|
|
8475
8475
|
r.set(e, t += 4);
|
|
8476
8476
|
this._protocol._cipher.encrypt(this._protocol._packetRW.write.finalize(r, true));
|
|
@@ -8515,8 +8515,8 @@ function requireKex() {
|
|
|
8515
8515
|
switch (this._step) {
|
|
8516
8516
|
case 1:
|
|
8517
8517
|
if (this._protocol._server) {
|
|
8518
|
-
if (t !==
|
|
8519
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8518
|
+
if (t !== y.KEXDH_INIT) {
|
|
8519
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.KEXDH_INIT}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8520
8520
|
}
|
|
8521
8521
|
this._protocol._debug && this._protocol._debug("Received DH Init");
|
|
8522
8522
|
I.init(e, 1);
|
|
@@ -8531,8 +8531,8 @@ function requireKex() {
|
|
|
8531
8531
|
this._hostKey = n;
|
|
8532
8532
|
this.finish();
|
|
8533
8533
|
} else {
|
|
8534
|
-
if (t !==
|
|
8535
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8534
|
+
if (t !== y.KEXDH_REPLY) {
|
|
8535
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.KEXDH_REPLY}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8536
8536
|
}
|
|
8537
8537
|
this._protocol._debug && this._protocol._debug("Received DH Reply");
|
|
8538
8538
|
I.init(e, 1);
|
|
@@ -8598,8 +8598,8 @@ function requireKex() {
|
|
|
8598
8598
|
break;
|
|
8599
8599
|
|
|
8600
8600
|
case 2:
|
|
8601
|
-
if (t !==
|
|
8602
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8601
|
+
if (t !== y.NEWKEYS) {
|
|
8602
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.NEWKEYS}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8603
8603
|
}
|
|
8604
8604
|
this._protocol._debug && this._protocol._debug("Inbound: NEWKEYS");
|
|
8605
8605
|
this._receivedNEWKEYS = true;
|
|
@@ -8705,7 +8705,7 @@ function requireKex() {
|
|
|
8705
8705
|
this._protocol._debug && this._protocol._debug("Outbound: Sending KEXDH_GEX_REQUEST");
|
|
8706
8706
|
let e = this._protocol._packetRW.write.allocStartKEX;
|
|
8707
8707
|
const t = this._protocol._packetRW.write.alloc(1 + 4 + 4 + 4, true);
|
|
8708
|
-
t[e] =
|
|
8708
|
+
t[e] = y.KEXDH_GEX_REQUEST;
|
|
8709
8709
|
O(t, this._minBits, ++e);
|
|
8710
8710
|
O(t, this._prefBits, e += 4);
|
|
8711
8711
|
O(t, this._maxBits, e += 4);
|
|
@@ -8737,13 +8737,13 @@ function requireKex() {
|
|
|
8737
8737
|
case 1:
|
|
8738
8738
|
{
|
|
8739
8739
|
if (this._protocol._server) {
|
|
8740
|
-
if (t !==
|
|
8741
|
-
return R(this._protocol, `Received packet ${t} instead of ` +
|
|
8740
|
+
if (t !== y.KEXDH_GEX_REQUEST) {
|
|
8741
|
+
return R(this._protocol, `Received packet ${t} instead of ` + y.KEXDH_GEX_REQUEST, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8742
8742
|
}
|
|
8743
8743
|
return R(this._protocol, "Group exchange not implemented for server", "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8744
8744
|
}
|
|
8745
|
-
if (t !==
|
|
8746
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8745
|
+
if (t !== y.KEXDH_GEX_GROUP) {
|
|
8746
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.KEXDH_GEX_GROUP}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8747
8747
|
}
|
|
8748
8748
|
this._protocol._debug && this._protocol._debug("Received DH GEX Group");
|
|
8749
8749
|
I.init(e, 1);
|
|
@@ -8760,7 +8760,7 @@ function requireKex() {
|
|
|
8760
8760
|
this._protocol._debug && this._protocol._debug("Outbound: Sending KEXDH_GEX_INIT");
|
|
8761
8761
|
let o = this._protocol._packetRW.write.allocStartKEX;
|
|
8762
8762
|
const a = this._protocol._packetRW.write.alloc(1 + 4 + s.length, true);
|
|
8763
|
-
a[o] =
|
|
8763
|
+
a[o] = y.KEXDH_GEX_INIT;
|
|
8764
8764
|
O(a, s.length, ++o);
|
|
8765
8765
|
a.set(s, o += 4);
|
|
8766
8766
|
this._protocol._cipher.encrypt(this._protocol._packetRW.write.finalize(a, true));
|
|
@@ -8770,17 +8770,17 @@ function requireKex() {
|
|
|
8770
8770
|
|
|
8771
8771
|
case 2:
|
|
8772
8772
|
if (this._protocol._server) {
|
|
8773
|
-
if (t !==
|
|
8774
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8773
|
+
if (t !== y.KEXDH_GEX_INIT) {
|
|
8774
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.KEXDH_GEX_INIT}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8775
8775
|
}
|
|
8776
8776
|
this._protocol._debug && this._protocol._debug("Received DH GEX Init");
|
|
8777
8777
|
return R(this._protocol, "Group exchange not implemented for server", "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8778
|
-
} else if (t !==
|
|
8779
|
-
return R(this._protocol, `Received packet ${t} instead of ${
|
|
8778
|
+
} else if (t !== y.KEXDH_GEX_REPLY) {
|
|
8779
|
+
return R(this._protocol, `Received packet ${t} instead of ${y.KEXDH_GEX_REPLY}`, "handshake", E.KEY_EXCHANGE_FAILED);
|
|
8780
8780
|
}
|
|
8781
8781
|
this._protocol._debug && this._protocol._debug("Received DH GEX Reply");
|
|
8782
8782
|
this._step = 1;
|
|
8783
|
-
e[0] =
|
|
8783
|
+
e[0] = y.KEXDH_REPLY;
|
|
8784
8784
|
this.parse = KeyExchange.prototype.parse;
|
|
8785
8785
|
this.parse(e);
|
|
8786
8786
|
}
|
|
@@ -8799,7 +8799,7 @@ function requireKex() {
|
|
|
8799
8799
|
const e = this.getPublicKey();
|
|
8800
8800
|
let t = this._protocol._packetRW.write.allocStartKEX;
|
|
8801
8801
|
const r = this._protocol._packetRW.write.alloc(1 + 4 + e.length, true);
|
|
8802
|
-
r[t] =
|
|
8802
|
+
r[t] = y.KEXDH_INIT;
|
|
8803
8803
|
O(r, e.length, ++t);
|
|
8804
8804
|
r.set(e, t += 4);
|
|
8805
8805
|
this._protocol._cipher.encrypt(this._protocol._packetRW.write.finalize(r, true));
|
|
@@ -8991,19 +8991,19 @@ function requireKex() {
|
|
|
8991
8991
|
const r = t[0];
|
|
8992
8992
|
if (!this._strictMode) {
|
|
8993
8993
|
switch (r) {
|
|
8994
|
-
case
|
|
8995
|
-
case
|
|
8996
|
-
case
|
|
8994
|
+
case y.IGNORE:
|
|
8995
|
+
case y.UNIMPLEMENTED:
|
|
8996
|
+
case y.DEBUG:
|
|
8997
8997
|
if (!L) L = requireHandlers();
|
|
8998
8998
|
return L[r](this, t);
|
|
8999
8999
|
}
|
|
9000
9000
|
}
|
|
9001
9001
|
switch (r) {
|
|
9002
|
-
case
|
|
9002
|
+
case y.DISCONNECT:
|
|
9003
9003
|
if (!L) L = requireHandlers();
|
|
9004
9004
|
return L[r](this, t);
|
|
9005
9005
|
|
|
9006
|
-
case
|
|
9006
|
+
case y.KEXINIT:
|
|
9007
9007
|
if (!e.firstPacket) {
|
|
9008
9008
|
return R(this, "Received extra KEXINIT during handshake", "handshake", E.KEY_EXCHANGE_FAILED);
|
|
9009
9009
|
}
|
|
@@ -9018,8 +9018,8 @@ function requireKex() {
|
|
|
9018
9018
|
return this._kex.parse(t);
|
|
9019
9019
|
}
|
|
9020
9020
|
function z(e) {
|
|
9021
|
-
const t =
|
|
9022
|
-
const r =
|
|
9021
|
+
const t = v[e.cs.cipher];
|
|
9022
|
+
const r = v[e.sc.cipher];
|
|
9023
9023
|
const n = Math.max(0, t.sslName === "des-ede3-cbc" ? 14 : t.keyLen, t.blockLen, t.ivLen, r.sslName === "des-ede3-cbc" ? 14 : r.keyLen, r.blockLen, r.ivLen) * 8;
|
|
9024
9024
|
if (n <= 112) return 2048;
|
|
9025
9025
|
if (n <= 128) return 3072;
|
|
@@ -9031,7 +9031,7 @@ function requireKex() {
|
|
|
9031
9031
|
e._protocol._debug && e._protocol._debug("Outbound: Sending NEWKEYS");
|
|
9032
9032
|
const t = e._protocol._packetRW.write.allocStartKEX;
|
|
9033
9033
|
const r = e._protocol._packetRW.write.alloc(1, true);
|
|
9034
|
-
r[t] =
|
|
9034
|
+
r[t] = y.NEWKEYS;
|
|
9035
9035
|
e._protocol._cipher.encrypt(e._protocol._packetRW.write.finalize(r, true));
|
|
9036
9036
|
e._sentNEWKEYS = true;
|
|
9037
9037
|
if (e._protocol._strictMode) e._protocol._cipher.outSeqno = 0;
|
|
@@ -9074,7 +9074,7 @@ function requireKex() {
|
|
|
9074
9074
|
}
|
|
9075
9075
|
}),
|
|
9076
9076
|
HANDLERS: {
|
|
9077
|
-
[
|
|
9077
|
+
[y.KEXINIT]: q
|
|
9078
9078
|
}
|
|
9079
9079
|
};
|
|
9080
9080
|
return kex;
|
|
@@ -11959,8 +11959,8 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
11959
11959
|
let m = false;
|
|
11960
11960
|
let _;
|
|
11961
11961
|
let E;
|
|
11962
|
-
let
|
|
11963
|
-
let
|
|
11962
|
+
let y;
|
|
11963
|
+
let v = l * a;
|
|
11964
11964
|
function S(r) {
|
|
11965
11965
|
if (m) return;
|
|
11966
11966
|
m = true;
|
|
@@ -12000,16 +12000,16 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12000
12000
|
if (r) return S(r);
|
|
12001
12001
|
E = s;
|
|
12002
12002
|
if (h <= 0) return S();
|
|
12003
|
-
while (
|
|
12003
|
+
while (v > h) {
|
|
12004
12004
|
if (a === 1) {
|
|
12005
|
-
|
|
12005
|
+
v = h;
|
|
12006
12006
|
break;
|
|
12007
12007
|
}
|
|
12008
|
-
|
|
12008
|
+
v -= l;
|
|
12009
12009
|
--a;
|
|
12010
12010
|
}
|
|
12011
|
-
|
|
12012
|
-
if (
|
|
12011
|
+
y = tryCreateBuffer(v);
|
|
12012
|
+
if (y instanceof Error) return S(y);
|
|
12013
12013
|
if (u !== undefined) {
|
|
12014
12014
|
t.fchmod(E, u, function e(r) {
|
|
12015
12015
|
if (r) {
|
|
@@ -12024,7 +12024,7 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12024
12024
|
function d(r, n, s, a, u, d) {
|
|
12025
12025
|
if (r) return S(r);
|
|
12026
12026
|
u = u || 0;
|
|
12027
|
-
t.write(E,
|
|
12027
|
+
t.write(E, y, u, n, a, m);
|
|
12028
12028
|
function m(r) {
|
|
12029
12029
|
if (r) return S(r);
|
|
12030
12030
|
g += n;
|
|
@@ -12054,7 +12054,7 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12054
12054
|
};
|
|
12055
12055
|
}
|
|
12056
12056
|
function A(t, r, n) {
|
|
12057
|
-
e.read(_,
|
|
12057
|
+
e.read(_, y, t, n, r, m(t, r, n));
|
|
12058
12058
|
}
|
|
12059
12059
|
function b() {
|
|
12060
12060
|
let e = 0;
|
|
@@ -13848,7 +13848,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
13848
13848
|
c.end();
|
|
13849
13849
|
},
|
|
13850
13850
|
SERVICE_ACCEPT: (e, t) => {
|
|
13851
|
-
if (t === "ssh-userauth")
|
|
13851
|
+
if (t === "ssh-userauth") $();
|
|
13852
13852
|
},
|
|
13853
13853
|
EXT_INFO: (e, t) => {
|
|
13854
13854
|
if (p === undefined) {
|
|
@@ -13892,7 +13892,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
13892
13892
|
n.message = `Error while signing with key: ${n.message}`;
|
|
13893
13893
|
n.level = "client-authentication";
|
|
13894
13894
|
this.emit("error", n);
|
|
13895
|
-
return
|
|
13895
|
+
return $();
|
|
13896
13896
|
}
|
|
13897
13897
|
r(n);
|
|
13898
13898
|
});
|
|
@@ -13905,12 +13905,12 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
13905
13905
|
if (w.type === "agent") {
|
|
13906
13906
|
const e = w.agentCtx.pos();
|
|
13907
13907
|
s && s(`Client: Agent key #${e + 1} failed`);
|
|
13908
|
-
return
|
|
13908
|
+
return B();
|
|
13909
13909
|
}
|
|
13910
13910
|
s && s(`Client: ${w.type} auth failed`);
|
|
13911
13911
|
I = r;
|
|
13912
13912
|
T = t;
|
|
13913
|
-
|
|
13913
|
+
$();
|
|
13914
13914
|
},
|
|
13915
13915
|
USERAUTH_PASSWD_CHANGEREQ: (e, t) => {
|
|
13916
13916
|
if (w.type === "password") {
|
|
@@ -13936,7 +13936,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
13936
13936
|
} else {
|
|
13937
13937
|
return n(t);
|
|
13938
13938
|
}
|
|
13939
|
-
|
|
13939
|
+
B();
|
|
13940
13940
|
});
|
|
13941
13941
|
});
|
|
13942
13942
|
} else if (w.type === "publickey") {
|
|
@@ -13946,7 +13946,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
13946
13946
|
n.message = `Error signing data with key: ${n.message}`;
|
|
13947
13947
|
n.level = "client-authentication";
|
|
13948
13948
|
this.emit("error", n);
|
|
13949
|
-
return
|
|
13949
|
+
return $();
|
|
13950
13950
|
}
|
|
13951
13951
|
t(n);
|
|
13952
13952
|
});
|
|
@@ -14108,10 +14108,10 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14108
14108
|
const m = this.config.keepaliveInterval;
|
|
14109
14109
|
const _ = this.config.keepaliveCountMax;
|
|
14110
14110
|
let E = 0;
|
|
14111
|
-
let
|
|
14112
|
-
const
|
|
14111
|
+
let y;
|
|
14112
|
+
const v = () => {
|
|
14113
14113
|
if (++E > _) {
|
|
14114
|
-
clearInterval(
|
|
14114
|
+
clearInterval(y);
|
|
14115
14115
|
if (c.readable) {
|
|
14116
14116
|
const e = new Error("Keepalive timeout");
|
|
14117
14117
|
e.level = "client-timeout";
|
|
@@ -14124,14 +14124,14 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14124
14124
|
o.push(S);
|
|
14125
14125
|
g.ping();
|
|
14126
14126
|
} else {
|
|
14127
|
-
clearInterval(
|
|
14127
|
+
clearInterval(y);
|
|
14128
14128
|
}
|
|
14129
14129
|
};
|
|
14130
14130
|
function S() {
|
|
14131
14131
|
if (m > 0) {
|
|
14132
14132
|
E = 0;
|
|
14133
|
-
clearInterval(
|
|
14134
|
-
if (isWritable$1(c))
|
|
14133
|
+
clearInterval(y);
|
|
14134
|
+
if (isWritable$1(c)) y = setInterval(v, m);
|
|
14135
14135
|
}
|
|
14136
14136
|
}
|
|
14137
14137
|
this._resetKA = S;
|
|
@@ -14189,14 +14189,14 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14189
14189
|
A();
|
|
14190
14190
|
g.cleanup();
|
|
14191
14191
|
clearTimeout(this._readyTimeout);
|
|
14192
|
-
clearInterval(
|
|
14192
|
+
clearInterval(y);
|
|
14193
14193
|
this.emit("end");
|
|
14194
14194
|
}).on("close", () => {
|
|
14195
14195
|
s && s("Socket closed");
|
|
14196
14196
|
A();
|
|
14197
14197
|
g.cleanup();
|
|
14198
14198
|
clearTimeout(this._readyTimeout);
|
|
14199
|
-
clearInterval(
|
|
14199
|
+
clearInterval(y);
|
|
14200
14200
|
this.emit("close");
|
|
14201
14201
|
const e = o;
|
|
14202
14202
|
o = this._callbacks = [];
|
|
@@ -14418,7 +14418,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14418
14418
|
n.message = `Error while signing with key: ${n.message}`;
|
|
14419
14419
|
n.level = "client-authentication";
|
|
14420
14420
|
this.emit("error", n);
|
|
14421
|
-
return
|
|
14421
|
+
return $();
|
|
14422
14422
|
}
|
|
14423
14423
|
t(n);
|
|
14424
14424
|
});
|
|
@@ -14430,9 +14430,9 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14430
14430
|
if (e) {
|
|
14431
14431
|
e.level = "agent";
|
|
14432
14432
|
this.emit("error", e);
|
|
14433
|
-
return
|
|
14433
|
+
return $();
|
|
14434
14434
|
}
|
|
14435
|
-
|
|
14435
|
+
B();
|
|
14436
14436
|
});
|
|
14437
14437
|
break;
|
|
14438
14438
|
|
|
@@ -14450,21 +14450,21 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14450
14450
|
};
|
|
14451
14451
|
function O(e) {
|
|
14452
14452
|
s && s(e);
|
|
14453
|
-
process.nextTick(
|
|
14453
|
+
process.nextTick($);
|
|
14454
14454
|
}
|
|
14455
|
-
function
|
|
14455
|
+
function $() {
|
|
14456
14456
|
k = false;
|
|
14457
14457
|
const e = n(T, I, P);
|
|
14458
14458
|
if (k || e === undefined) return;
|
|
14459
14459
|
P(e);
|
|
14460
14460
|
}
|
|
14461
|
-
const
|
|
14461
|
+
const B = () => {
|
|
14462
14462
|
if (w.type === "agent") {
|
|
14463
14463
|
const e = w.agentCtx.nextKey();
|
|
14464
14464
|
if (e === false) {
|
|
14465
14465
|
s && s("Agent: No more keys left to try");
|
|
14466
14466
|
s && s("Client: agent auth failed");
|
|
14467
|
-
|
|
14467
|
+
$();
|
|
14468
14468
|
} else {
|
|
14469
14469
|
const t = w.agentCtx.pos();
|
|
14470
14470
|
let r;
|
|
@@ -14474,7 +14474,7 @@ let Client$2 = class Client extends EventEmitter$3 {
|
|
|
14474
14474
|
r = w.keyAlgos[0][0];
|
|
14475
14475
|
} else {
|
|
14476
14476
|
s && s(`Agent: Skipping key #${t + 1} (no mutual hash algorithm)`);
|
|
14477
|
-
|
|
14477
|
+
B();
|
|
14478
14478
|
return;
|
|
14479
14479
|
}
|
|
14480
14480
|
}
|
|
@@ -15624,16 +15624,16 @@ let Client$1 = class Client extends EventEmitter$2 {
|
|
|
15624
15624
|
s(`Debug output from client: ${JSON.stringify(r)}`);
|
|
15625
15625
|
};
|
|
15626
15626
|
const E = typeof a.keepaliveInterval === "number" && isFinite(a.keepaliveInterval) && a.keepaliveInterval > 0 ? a.keepaliveInterval : typeof Server$1.KEEPALIVE_CLIENT_INTERVAL === "number" && isFinite(Server$1.KEEPALIVE_CLIENT_INTERVAL) && Server$1.KEEPALIVE_CLIENT_INTERVAL > 0 ? Server$1.KEEPALIVE_CLIENT_INTERVAL : -1;
|
|
15627
|
-
const
|
|
15628
|
-
let
|
|
15629
|
-
if (E !== -1 &&
|
|
15627
|
+
const y = typeof a.keepaliveCountMax === "number" && isFinite(a.keepaliveCountMax) && a.keepaliveCountMax >= 0 ? a.keepaliveCountMax : typeof Server$1.KEEPALIVE_CLIENT_COUNT_MAX === "number" && isFinite(Server$1.KEEPALIVE_CLIENT_COUNT_MAX) && Server$1.KEEPALIVE_CLIENT_COUNT_MAX >= 0 ? Server$1.KEEPALIVE_CLIENT_COUNT_MAX : -1;
|
|
15628
|
+
let v = 0;
|
|
15629
|
+
if (E !== -1 && y !== -1) {
|
|
15630
15630
|
this.once("ready", () => {
|
|
15631
15631
|
const e = () => {
|
|
15632
15632
|
clearInterval(h);
|
|
15633
15633
|
};
|
|
15634
15634
|
this.on("close", e).on("end", e);
|
|
15635
15635
|
h = setInterval(() => {
|
|
15636
|
-
if (++
|
|
15636
|
+
if (++v > y) {
|
|
15637
15637
|
clearInterval(h);
|
|
15638
15638
|
const e = new Error("Keepalive timeout");
|
|
15639
15639
|
e.level = "client-timeout";
|
|
@@ -15646,7 +15646,7 @@ let Client$1 = class Client extends EventEmitter$2 {
|
|
|
15646
15646
|
});
|
|
15647
15647
|
p = () => {
|
|
15648
15648
|
h && h.refresh();
|
|
15649
|
-
|
|
15649
|
+
v = 0;
|
|
15650
15650
|
};
|
|
15651
15651
|
}
|
|
15652
15652
|
const S = this._protocol = new Protocol({
|
|
@@ -16653,7 +16653,7 @@ function convertKeys(e, t, r, n) {
|
|
|
16653
16653
|
for (let e = 1; (m + _.length) % d; ++e) _.push(e & 255);
|
|
16654
16654
|
_ = Buffer.from(_);
|
|
16655
16655
|
let E = Buffer.allocUnsafe(m + _.length);
|
|
16656
|
-
let
|
|
16656
|
+
let y;
|
|
16657
16657
|
{
|
|
16658
16658
|
let e = 0;
|
|
16659
16659
|
E.set(p, e += 0);
|
|
@@ -16670,18 +16670,18 @@ function convertKeys(e, t, r, n) {
|
|
|
16670
16670
|
const t = createCipheriv(o.cipher.sslName, o.key, o.iv, e);
|
|
16671
16671
|
t.setAutoPadding(false);
|
|
16672
16672
|
E = Buffer.concat([ t.update(E), t.final() ]);
|
|
16673
|
-
if (o.cipher.authLen > 0)
|
|
16673
|
+
if (o.cipher.authLen > 0) y = t.getAuthTag(); else y = Buffer.alloc(0);
|
|
16674
16674
|
o.key.fill(0);
|
|
16675
16675
|
o.iv.fill(0);
|
|
16676
16676
|
} else {
|
|
16677
|
-
|
|
16677
|
+
y = Buffer.alloc(0);
|
|
16678
16678
|
}
|
|
16679
|
-
const
|
|
16680
|
-
const S = Buffer.allocUnsafe(
|
|
16679
|
+
const v = Buffer.from("openssh-key-v1\0");
|
|
16680
|
+
const S = Buffer.allocUnsafe(v.length + 4 + l.length + 4 + c.length + 4 + u.length + 4 + 4 + h.pub.length + 4 + E.length + y.length);
|
|
16681
16681
|
{
|
|
16682
16682
|
let e = 0;
|
|
16683
|
-
S.set(
|
|
16684
|
-
S.writeUInt32BE(l.length, e +=
|
|
16683
|
+
S.set(v, e += 0);
|
|
16684
|
+
S.writeUInt32BE(l.length, e += v.length);
|
|
16685
16685
|
S.set(l, e += 4);
|
|
16686
16686
|
S.writeUInt32BE(c.length, e += l.length);
|
|
16687
16687
|
S.set(c, e += 4);
|
|
@@ -16692,7 +16692,7 @@ function convertKeys(e, t, r, n) {
|
|
|
16692
16692
|
S.set(h.pub, e += 4);
|
|
16693
16693
|
S.writeUInt32BE(E.length, e += h.pub.length);
|
|
16694
16694
|
S.set(E, e += 4);
|
|
16695
|
-
S.set(
|
|
16695
|
+
S.set(y, e += E.length);
|
|
16696
16696
|
}
|
|
16697
16697
|
{
|
|
16698
16698
|
const e = S.base64Slice(0, S.length);
|
|
@@ -17334,7 +17334,7 @@ function require_stream_writable() {
|
|
|
17334
17334
|
}
|
|
17335
17335
|
var c = requireDestroy();
|
|
17336
17336
|
var u = requireState(), d = u.getHighWaterMark;
|
|
17337
|
-
var h = requireErrors().codes, p = h.ERR_INVALID_ARG_TYPE, g = h.ERR_METHOD_NOT_IMPLEMENTED, m = h.ERR_MULTIPLE_CALLBACK, _ = h.ERR_STREAM_CANNOT_PIPE, E = h.ERR_STREAM_DESTROYED,
|
|
17337
|
+
var h = requireErrors().codes, p = h.ERR_INVALID_ARG_TYPE, g = h.ERR_METHOD_NOT_IMPLEMENTED, m = h.ERR_MULTIPLE_CALLBACK, _ = h.ERR_STREAM_CANNOT_PIPE, E = h.ERR_STREAM_DESTROYED, y = h.ERR_STREAM_NULL_VALUES, v = h.ERR_STREAM_WRITE_AFTER_END, S = h.ERR_UNKNOWN_ENCODING;
|
|
17338
17338
|
var A = c.errorOrDestroy;
|
|
17339
17339
|
requireInherits()(I, n);
|
|
17340
17340
|
function b() {}
|
|
@@ -17425,14 +17425,14 @@ function require_stream_writable() {
|
|
|
17425
17425
|
A(this, new _);
|
|
17426
17426
|
};
|
|
17427
17427
|
function T(e, t) {
|
|
17428
|
-
var r = new
|
|
17428
|
+
var r = new v;
|
|
17429
17429
|
A(e, r);
|
|
17430
17430
|
process.nextTick(t, r);
|
|
17431
17431
|
}
|
|
17432
17432
|
function R(e, t, r, n) {
|
|
17433
17433
|
var s;
|
|
17434
17434
|
if (r === null) {
|
|
17435
|
-
s = new
|
|
17435
|
+
s = new y;
|
|
17436
17436
|
} else if (typeof r !== "string" && !t.objectMode) {
|
|
17437
17437
|
s = new p("chunk", [ "string", "Buffer" ], r);
|
|
17438
17438
|
}
|
|
@@ -17537,7 +17537,7 @@ function require_stream_writable() {
|
|
|
17537
17537
|
if (t.destroyed) t.onwrite(new E("write")); else if (r) e._writev(s, t.onwrite); else e._write(s, o, t.onwrite);
|
|
17538
17538
|
t.sync = false;
|
|
17539
17539
|
}
|
|
17540
|
-
function
|
|
17540
|
+
function $(e, t, r, n, s) {
|
|
17541
17541
|
--t.pendingcb;
|
|
17542
17542
|
if (r) {
|
|
17543
17543
|
process.nextTick(s, n);
|
|
@@ -17551,7 +17551,7 @@ function require_stream_writable() {
|
|
|
17551
17551
|
q(e, t);
|
|
17552
17552
|
}
|
|
17553
17553
|
}
|
|
17554
|
-
function
|
|
17554
|
+
function B(e) {
|
|
17555
17555
|
e.writing = false;
|
|
17556
17556
|
e.writecb = null;
|
|
17557
17557
|
e.length -= e.writelen;
|
|
@@ -17562,8 +17562,8 @@ function require_stream_writable() {
|
|
|
17562
17562
|
var n = r.sync;
|
|
17563
17563
|
var s = r.writecb;
|
|
17564
17564
|
if (typeof s !== "function") throw new m;
|
|
17565
|
-
|
|
17566
|
-
if (t)
|
|
17565
|
+
B(r);
|
|
17566
|
+
if (t) $(e, r, n, t, s); else {
|
|
17567
17567
|
var o = M(r) || e.destroyed;
|
|
17568
17568
|
if (!o && !r.corked && !r.bufferProcessing && r.bufferedRequest) {
|
|
17569
17569
|
U(e, r);
|
|
@@ -18130,13 +18130,13 @@ function requireEndOfStream() {
|
|
|
18130
18130
|
return l.call(o, r);
|
|
18131
18131
|
}
|
|
18132
18132
|
};
|
|
18133
|
-
var
|
|
18133
|
+
var y = function e() {
|
|
18134
18134
|
o.req.on("finish", p);
|
|
18135
18135
|
};
|
|
18136
18136
|
if (n(o)) {
|
|
18137
18137
|
o.on("complete", p);
|
|
18138
18138
|
o.on("abort", E);
|
|
18139
|
-
if (o.req)
|
|
18139
|
+
if (o.req) y(); else o.on("request", y);
|
|
18140
18140
|
} else if (u && !o._writableState) {
|
|
18141
18141
|
o.on("end", d);
|
|
18142
18142
|
o.on("close", d);
|
|
@@ -18148,7 +18148,7 @@ function requireEndOfStream() {
|
|
|
18148
18148
|
return function() {
|
|
18149
18149
|
o.removeListener("complete", p);
|
|
18150
18150
|
o.removeListener("abort", E);
|
|
18151
|
-
o.removeListener("request",
|
|
18151
|
+
o.removeListener("request", y);
|
|
18152
18152
|
if (o.req) o.req.removeListener("finish", p);
|
|
18153
18153
|
o.removeListener("end", d);
|
|
18154
18154
|
o.removeListener("close", d);
|
|
@@ -18239,7 +18239,7 @@ function requireAsync_iterator() {
|
|
|
18239
18239
|
};
|
|
18240
18240
|
}
|
|
18241
18241
|
var E = Object.getPrototypeOf(function() {});
|
|
18242
|
-
var
|
|
18242
|
+
var y = Object.setPrototypeOf((e = {
|
|
18243
18243
|
get stream() {
|
|
18244
18244
|
return this[h];
|
|
18245
18245
|
},
|
|
@@ -18291,9 +18291,9 @@ function requireAsync_iterator() {
|
|
|
18291
18291
|
});
|
|
18292
18292
|
});
|
|
18293
18293
|
}), e), E);
|
|
18294
|
-
var
|
|
18294
|
+
var v = function e(r) {
|
|
18295
18295
|
var n;
|
|
18296
|
-
var g = Object.create(
|
|
18296
|
+
var g = Object.create(y, (n = {}, t(n, h, {
|
|
18297
18297
|
value: r,
|
|
18298
18298
|
writable: true
|
|
18299
18299
|
}), t(n, o, {
|
|
@@ -18348,7 +18348,7 @@ function requireAsync_iterator() {
|
|
|
18348
18348
|
r.on("readable", m.bind(null, g));
|
|
18349
18349
|
return g;
|
|
18350
18350
|
};
|
|
18351
|
-
async_iterator =
|
|
18351
|
+
async_iterator = v;
|
|
18352
18352
|
return async_iterator;
|
|
18353
18353
|
}
|
|
18354
18354
|
|
|
@@ -18512,8 +18512,8 @@ function require_stream_readable() {
|
|
|
18512
18512
|
var u = requireBuffer_list();
|
|
18513
18513
|
var d = requireDestroy();
|
|
18514
18514
|
var h = requireState(), p = h.getHighWaterMark;
|
|
18515
|
-
var g = requireErrors().codes, m = g.ERR_INVALID_ARG_TYPE, _ = g.ERR_STREAM_PUSH_AFTER_EOF, E = g.ERR_METHOD_NOT_IMPLEMENTED,
|
|
18516
|
-
var
|
|
18515
|
+
var g = requireErrors().codes, m = g.ERR_INVALID_ARG_TYPE, _ = g.ERR_STREAM_PUSH_AFTER_EOF, E = g.ERR_METHOD_NOT_IMPLEMENTED, y = g.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
|
|
18516
|
+
var v;
|
|
18517
18517
|
var S;
|
|
18518
18518
|
var A;
|
|
18519
18519
|
requireInherits()(T, r);
|
|
@@ -18553,8 +18553,8 @@ function require_stream_readable() {
|
|
|
18553
18553
|
this.decoder = null;
|
|
18554
18554
|
this.encoding = null;
|
|
18555
18555
|
if (t.encoding) {
|
|
18556
|
-
if (!
|
|
18557
|
-
this.decoder = new
|
|
18556
|
+
if (!v) v = requireString_decoder().StringDecoder;
|
|
18557
|
+
this.decoder = new v(t.encoding);
|
|
18558
18558
|
this.encoding = t.encoding;
|
|
18559
18559
|
}
|
|
18560
18560
|
}
|
|
@@ -18626,7 +18626,7 @@ function require_stream_readable() {
|
|
|
18626
18626
|
t = o(t);
|
|
18627
18627
|
}
|
|
18628
18628
|
if (s) {
|
|
18629
|
-
if (l.endEmitted) b(e, new
|
|
18629
|
+
if (l.endEmitted) b(e, new y); else k(e, l, t, true);
|
|
18630
18630
|
} else if (l.ended) {
|
|
18631
18631
|
b(e, new _);
|
|
18632
18632
|
} else if (l.destroyed) {
|
|
@@ -18669,8 +18669,8 @@ function require_stream_readable() {
|
|
|
18669
18669
|
return this._readableState.flowing === false;
|
|
18670
18670
|
};
|
|
18671
18671
|
T.prototype.setEncoding = function(e) {
|
|
18672
|
-
if (!
|
|
18673
|
-
var t = new
|
|
18672
|
+
if (!v) v = requireString_decoder().StringDecoder;
|
|
18673
|
+
var t = new v(e);
|
|
18674
18674
|
this._readableState.decoder = t;
|
|
18675
18675
|
this._readableState.encoding = this._readableState.decoder.encoding;
|
|
18676
18676
|
var r = this._readableState.buffer.head;
|
|
@@ -18685,7 +18685,7 @@ function require_stream_readable() {
|
|
|
18685
18685
|
return this;
|
|
18686
18686
|
};
|
|
18687
18687
|
var O = 1073741824;
|
|
18688
|
-
function
|
|
18688
|
+
function $(e) {
|
|
18689
18689
|
if (e >= O) {
|
|
18690
18690
|
e = O;
|
|
18691
18691
|
} else {
|
|
@@ -18699,13 +18699,13 @@ function require_stream_readable() {
|
|
|
18699
18699
|
}
|
|
18700
18700
|
return e;
|
|
18701
18701
|
}
|
|
18702
|
-
function
|
|
18702
|
+
function B(e, t) {
|
|
18703
18703
|
if (e <= 0 || t.length === 0 && t.ended) return 0;
|
|
18704
18704
|
if (t.objectMode) return 1;
|
|
18705
18705
|
if (e !== e) {
|
|
18706
18706
|
if (t.flowing && t.length) return t.buffer.head.data.length; else return t.length;
|
|
18707
18707
|
}
|
|
18708
|
-
if (e > t.highWaterMark) t.highWaterMark =
|
|
18708
|
+
if (e > t.highWaterMark) t.highWaterMark = $(e);
|
|
18709
18709
|
if (e <= t.length) return e;
|
|
18710
18710
|
if (!t.ended) {
|
|
18711
18711
|
t.needReadable = true;
|
|
@@ -18724,7 +18724,7 @@ function require_stream_readable() {
|
|
|
18724
18724
|
if (t.length === 0 && t.ended) K(this); else D(this);
|
|
18725
18725
|
return null;
|
|
18726
18726
|
}
|
|
18727
|
-
e =
|
|
18727
|
+
e = B(e, t);
|
|
18728
18728
|
if (e === 0 && t.ended) {
|
|
18729
18729
|
if (t.length === 0) K(this);
|
|
18730
18730
|
return null;
|
|
@@ -18745,7 +18745,7 @@ function require_stream_readable() {
|
|
|
18745
18745
|
if (t.length === 0) t.needReadable = true;
|
|
18746
18746
|
this._read(t.highWaterMark);
|
|
18747
18747
|
t.sync = false;
|
|
18748
|
-
if (!t.reading) e =
|
|
18748
|
+
if (!t.reading) e = B(r, t);
|
|
18749
18749
|
}
|
|
18750
18750
|
var s;
|
|
18751
18751
|
if (e > 0) s = G(e, t); else s = null;
|
|
@@ -18841,7 +18841,7 @@ function require_stream_readable() {
|
|
|
18841
18841
|
s.pipesCount += 1;
|
|
18842
18842
|
c("pipe count=%d opts=%j", s.pipesCount, r);
|
|
18843
18843
|
var o = (!r || r.end !== false) && e !== process.stdout && e !== process.stderr;
|
|
18844
|
-
var a = o ? u :
|
|
18844
|
+
var a = o ? u : y;
|
|
18845
18845
|
if (s.endEmitted) process.nextTick(a); else n.once("end", a);
|
|
18846
18846
|
e.on("unpipe", l);
|
|
18847
18847
|
function l(e, t) {
|
|
@@ -18868,7 +18868,7 @@ function require_stream_readable() {
|
|
|
18868
18868
|
e.removeListener("error", m);
|
|
18869
18869
|
e.removeListener("unpipe", l);
|
|
18870
18870
|
n.removeListener("end", u);
|
|
18871
|
-
n.removeListener("end",
|
|
18871
|
+
n.removeListener("end", y);
|
|
18872
18872
|
n.removeListener("data", g);
|
|
18873
18873
|
h = true;
|
|
18874
18874
|
if (s.awaitDrain && (!e._writableState || e._writableState.needDrain)) d();
|
|
@@ -18888,23 +18888,23 @@ function require_stream_readable() {
|
|
|
18888
18888
|
}
|
|
18889
18889
|
function m(r) {
|
|
18890
18890
|
c("onerror", r);
|
|
18891
|
-
|
|
18891
|
+
y();
|
|
18892
18892
|
e.removeListener("error", m);
|
|
18893
18893
|
if (t(e, "error") === 0) b(e, r);
|
|
18894
18894
|
}
|
|
18895
18895
|
w(e, "error", m);
|
|
18896
18896
|
function _() {
|
|
18897
18897
|
e.removeListener("finish", E);
|
|
18898
|
-
|
|
18898
|
+
y();
|
|
18899
18899
|
}
|
|
18900
18900
|
e.once("close", _);
|
|
18901
18901
|
function E() {
|
|
18902
18902
|
c("onfinish");
|
|
18903
18903
|
e.removeListener("close", _);
|
|
18904
|
-
|
|
18904
|
+
y();
|
|
18905
18905
|
}
|
|
18906
18906
|
e.once("finish", E);
|
|
18907
|
-
function
|
|
18907
|
+
function y() {
|
|
18908
18908
|
c("unpipe");
|
|
18909
18909
|
n.unpipe(e);
|
|
18910
18910
|
}
|
|
@@ -19410,9 +19410,9 @@ var readableExports = readable.exports;
|
|
|
19410
19410
|
|
|
19411
19411
|
var http_duplex = HttpDuplex$1;
|
|
19412
19412
|
|
|
19413
|
-
var util$
|
|
19413
|
+
var util$s = require$$1__default, stream$1 = readableExports;
|
|
19414
19414
|
|
|
19415
|
-
util$
|
|
19415
|
+
util$s.inherits(HttpDuplex$1, stream$1.Duplex);
|
|
19416
19416
|
|
|
19417
19417
|
function HttpDuplex$1(e, t, r) {
|
|
19418
19418
|
var n = this;
|
|
@@ -19486,7 +19486,7 @@ var splitCa = function(e, t, r) {
|
|
|
19486
19486
|
return n;
|
|
19487
19487
|
};
|
|
19488
19488
|
|
|
19489
|
-
var querystring = require$$0$8, http$1 = httpExports, fs$5 = require$$0$4, path$6 = require$$0__default, url = require$$4__default, ssh = ssh$1, HttpDuplex = http_duplex, debug = srcExports$1("modem"), utils = utils$3, util$
|
|
19489
|
+
var querystring = require$$0$8, http$1 = httpExports, fs$5 = require$$0$4, path$6 = require$$0__default, url = require$$4__default, ssh = ssh$1, HttpDuplex = http_duplex, debug = srcExports$1("modem"), utils = utils$3, util$r = require$$1__default, splitca = splitCa, os$2 = require$$1$2, isWin = os$2.type() === "Windows_NT", stream = require$$0$6;
|
|
19490
19490
|
|
|
19491
19491
|
var defaultOpts = function() {
|
|
19492
19492
|
var e;
|
|
@@ -19698,7 +19698,7 @@ Modem$1.prototype.buildRequest = function(e, t, r, n) {
|
|
|
19698
19698
|
protocol: "http:"
|
|
19699
19699
|
}) : e;
|
|
19700
19700
|
var c = http$1[s.protocol === "ssh" ? "http" : s.protocol].request(l, function() {});
|
|
19701
|
-
debug("Sending: %s", util$
|
|
19701
|
+
debug("Sending: %s", util$r.inspect(e, {
|
|
19702
19702
|
showHidden: true,
|
|
19703
19703
|
depth: null
|
|
19704
19704
|
}));
|
|
@@ -19928,7 +19928,7 @@ Modem$1.prototype.buildQuerystring = function(e) {
|
|
|
19928
19928
|
|
|
19929
19929
|
var modem = Modem$1;
|
|
19930
19930
|
|
|
19931
|
-
var util$
|
|
19931
|
+
var util$q = {
|
|
19932
19932
|
exports: {}
|
|
19933
19933
|
};
|
|
19934
19934
|
|
|
@@ -20946,7 +20946,7 @@ headers$2.decode = function(e, t, r) {
|
|
|
20946
20946
|
};
|
|
20947
20947
|
};
|
|
20948
20948
|
|
|
20949
|
-
var util$
|
|
20949
|
+
var util$p = require$$1__default;
|
|
20950
20950
|
|
|
20951
20951
|
var bl = blExports;
|
|
20952
20952
|
|
|
@@ -20985,7 +20985,7 @@ var Source = function(e, t) {
|
|
|
20985
20985
|
});
|
|
20986
20986
|
};
|
|
20987
20987
|
|
|
20988
|
-
util$
|
|
20988
|
+
util$p.inherits(Source, PassThrough);
|
|
20989
20989
|
|
|
20990
20990
|
Source.prototype.destroy = function(e) {
|
|
20991
20991
|
this._parent.destroy(e);
|
|
@@ -21117,7 +21117,7 @@ var Extract = function(e) {
|
|
|
21117
21117
|
this._parse(512, h);
|
|
21118
21118
|
};
|
|
21119
21119
|
|
|
21120
|
-
util$
|
|
21120
|
+
util$p.inherits(Extract, Writable$1);
|
|
21121
21121
|
|
|
21122
21122
|
Extract.prototype.destroy = function(e) {
|
|
21123
21123
|
if (this._destroyed) return;
|
|
@@ -21630,16 +21630,16 @@ tarFs.pack = function(e, t) {
|
|
|
21630
21630
|
if (l) return h.destroy(new Error("unsupported type for " + a));
|
|
21631
21631
|
return _();
|
|
21632
21632
|
}
|
|
21633
|
-
var
|
|
21634
|
-
if (!
|
|
21635
|
-
var
|
|
21633
|
+
var y = h.entry(E, _);
|
|
21634
|
+
if (!y) return;
|
|
21635
|
+
var v = o(r.createReadStream(path$2.join(e, a), {
|
|
21636
21636
|
start: 0,
|
|
21637
21637
|
end: E.size > 0 ? E.size - 1 : E.size
|
|
21638
21638
|
}), E);
|
|
21639
|
-
|
|
21640
|
-
|
|
21639
|
+
v.on("error", function(e) {
|
|
21640
|
+
y.destroy(e);
|
|
21641
21641
|
});
|
|
21642
|
-
pump(
|
|
21642
|
+
pump(v, y);
|
|
21643
21643
|
};
|
|
21644
21644
|
var _ = function(e) {
|
|
21645
21645
|
if (e) return h.destroy(e);
|
|
@@ -21737,7 +21737,7 @@ tarFs.extract = function(e, t) {
|
|
|
21737
21737
|
r.symlink(l.linkname, h, p);
|
|
21738
21738
|
});
|
|
21739
21739
|
};
|
|
21740
|
-
var
|
|
21740
|
+
var y = function() {
|
|
21741
21741
|
if (win32) return d();
|
|
21742
21742
|
r.unlink(h, function() {
|
|
21743
21743
|
var n = path$2.join(e, path$2.join("/", l.linkname));
|
|
@@ -21746,14 +21746,14 @@ tarFs.extract = function(e, t) {
|
|
|
21746
21746
|
r.link(o, h, function(e) {
|
|
21747
21747
|
if (e && e.code === "EPERM" && t.hardlinkAsFilesFallback) {
|
|
21748
21748
|
u = r.createReadStream(n);
|
|
21749
|
-
return
|
|
21749
|
+
return v();
|
|
21750
21750
|
}
|
|
21751
21751
|
p(e);
|
|
21752
21752
|
});
|
|
21753
21753
|
});
|
|
21754
21754
|
});
|
|
21755
21755
|
};
|
|
21756
|
-
var
|
|
21756
|
+
var v = function() {
|
|
21757
21757
|
var e = r.createWriteStream(h);
|
|
21758
21758
|
var t = o(u, l);
|
|
21759
21759
|
e.on("error", function(e) {
|
|
@@ -21786,10 +21786,10 @@ tarFs.extract = function(e, t) {
|
|
|
21786
21786
|
if (e) return d(e);
|
|
21787
21787
|
switch (l.type) {
|
|
21788
21788
|
case "file":
|
|
21789
|
-
return
|
|
21789
|
+
return v();
|
|
21790
21790
|
|
|
21791
21791
|
case "link":
|
|
21792
|
-
return
|
|
21792
|
+
return y();
|
|
21793
21793
|
|
|
21794
21794
|
case "symlink":
|
|
21795
21795
|
return m();
|
|
@@ -21830,7 +21830,7 @@ function inCwd(e, t) {
|
|
|
21830
21830
|
return t === e || e.startsWith(t + path$2.sep);
|
|
21831
21831
|
}
|
|
21832
21832
|
|
|
21833
|
-
util$
|
|
21833
|
+
util$q.exports;
|
|
21834
21834
|
|
|
21835
21835
|
(function(e) {
|
|
21836
21836
|
var t = ignore;
|
|
@@ -21908,11 +21908,11 @@ util$o.exports;
|
|
|
21908
21908
|
a(e);
|
|
21909
21909
|
}
|
|
21910
21910
|
};
|
|
21911
|
-
})(util$
|
|
21911
|
+
})(util$q);
|
|
21912
21912
|
|
|
21913
|
-
var utilExports = util$
|
|
21913
|
+
var utilExports = util$q.exports;
|
|
21914
21914
|
|
|
21915
|
-
var util$
|
|
21915
|
+
var util$o = utilExports;
|
|
21916
21916
|
|
|
21917
21917
|
var Exec$2 = function(e, t) {
|
|
21918
21918
|
this.modem = e;
|
|
@@ -21925,7 +21925,7 @@ Exec$2.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
21925
21925
|
|
|
21926
21926
|
Exec$2.prototype.start = function(e, t) {
|
|
21927
21927
|
var r = this;
|
|
21928
|
-
var n = util$
|
|
21928
|
+
var n = util$o.processArgs(e, t);
|
|
21929
21929
|
var s = {
|
|
21930
21930
|
path: "/exec/" + this.id + "/start",
|
|
21931
21931
|
method: "POST",
|
|
@@ -21962,7 +21962,7 @@ Exec$2.prototype.start = function(e, t) {
|
|
|
21962
21962
|
|
|
21963
21963
|
Exec$2.prototype.resize = function(e, t) {
|
|
21964
21964
|
var r = this;
|
|
21965
|
-
var n = util$
|
|
21965
|
+
var n = util$o.processArgs(e, t);
|
|
21966
21966
|
var s = {
|
|
21967
21967
|
path: "/exec/" + this.id + "/resize?",
|
|
21968
21968
|
method: "POST",
|
|
@@ -21993,7 +21993,7 @@ Exec$2.prototype.resize = function(e, t) {
|
|
|
21993
21993
|
|
|
21994
21994
|
Exec$2.prototype.inspect = function(e, t) {
|
|
21995
21995
|
var r = this;
|
|
21996
|
-
var n = util$
|
|
21996
|
+
var n = util$o.processArgs(e, t);
|
|
21997
21997
|
var s = {
|
|
21998
21998
|
path: "/exec/" + this.id + "/json",
|
|
21999
21999
|
method: "GET",
|
|
@@ -22025,7 +22025,7 @@ var exec = Exec$2;
|
|
|
22025
22025
|
|
|
22026
22026
|
utilExports.extend;
|
|
22027
22027
|
|
|
22028
|
-
var Exec$1 = exec, util$
|
|
22028
|
+
var Exec$1 = exec, util$n = utilExports;
|
|
22029
22029
|
|
|
22030
22030
|
var Container$2 = function(e, t) {
|
|
22031
22031
|
this.modem = e;
|
|
@@ -22061,7 +22061,7 @@ Container$2.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
22061
22061
|
|
|
22062
22062
|
Container$2.prototype.inspect = function(e, t) {
|
|
22063
22063
|
var r = this;
|
|
22064
|
-
var n = util$
|
|
22064
|
+
var n = util$n.processArgs(e, t);
|
|
22065
22065
|
var s = {
|
|
22066
22066
|
path: "/containers/" + this.id + "/json?",
|
|
22067
22067
|
method: "GET",
|
|
@@ -22091,7 +22091,7 @@ Container$2.prototype.inspect = function(e, t) {
|
|
|
22091
22091
|
|
|
22092
22092
|
Container$2.prototype.rename = function(e, t) {
|
|
22093
22093
|
var r = this;
|
|
22094
|
-
var n = util$
|
|
22094
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.rename);
|
|
22095
22095
|
var s = {
|
|
22096
22096
|
path: "/containers/" + this.id + "/rename?",
|
|
22097
22097
|
method: "POST",
|
|
@@ -22122,7 +22122,7 @@ Container$2.prototype.rename = function(e, t) {
|
|
|
22122
22122
|
|
|
22123
22123
|
Container$2.prototype.update = function(e, t) {
|
|
22124
22124
|
var r = this;
|
|
22125
|
-
var n = util$
|
|
22125
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.update);
|
|
22126
22126
|
var s = {
|
|
22127
22127
|
path: "/containers/" + this.id + "/update",
|
|
22128
22128
|
method: "POST",
|
|
@@ -22154,7 +22154,7 @@ Container$2.prototype.update = function(e, t) {
|
|
|
22154
22154
|
|
|
22155
22155
|
Container$2.prototype.top = function(e, t) {
|
|
22156
22156
|
var r = this;
|
|
22157
|
-
var n = util$
|
|
22157
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.top);
|
|
22158
22158
|
var s = {
|
|
22159
22159
|
path: "/containers/" + this.id + "/top?",
|
|
22160
22160
|
method: "GET",
|
|
@@ -22184,7 +22184,7 @@ Container$2.prototype.top = function(e, t) {
|
|
|
22184
22184
|
|
|
22185
22185
|
Container$2.prototype.changes = function(e, t) {
|
|
22186
22186
|
var r = this;
|
|
22187
|
-
var n = util$
|
|
22187
|
+
var n = util$n.processArgs(e, t);
|
|
22188
22188
|
var s = {
|
|
22189
22189
|
path: "/containers/" + this.id + "/changes",
|
|
22190
22190
|
method: "GET",
|
|
@@ -22213,7 +22213,7 @@ Container$2.prototype.changes = function(e, t) {
|
|
|
22213
22213
|
|
|
22214
22214
|
Container$2.prototype.listCheckpoint = function(e, t) {
|
|
22215
22215
|
var r = this;
|
|
22216
|
-
var n = util$
|
|
22216
|
+
var n = util$n.processArgs(e, t);
|
|
22217
22217
|
var s = {
|
|
22218
22218
|
path: "/containers/" + this.id + "/checkpoints?",
|
|
22219
22219
|
method: "GET",
|
|
@@ -22243,7 +22243,7 @@ Container$2.prototype.listCheckpoint = function(e, t) {
|
|
|
22243
22243
|
|
|
22244
22244
|
Container$2.prototype.deleteCheckpoint = function(e, t, r) {
|
|
22245
22245
|
var n = this;
|
|
22246
|
-
var s = util$
|
|
22246
|
+
var s = util$n.processArgs(t, r);
|
|
22247
22247
|
var o = {
|
|
22248
22248
|
path: "/containers/" + this.id + "/checkpoints/" + e + "?",
|
|
22249
22249
|
method: "DELETE",
|
|
@@ -22274,7 +22274,7 @@ Container$2.prototype.deleteCheckpoint = function(e, t, r) {
|
|
|
22274
22274
|
|
|
22275
22275
|
Container$2.prototype.createCheckpoint = function(e, t) {
|
|
22276
22276
|
var r = this;
|
|
22277
|
-
var n = util$
|
|
22277
|
+
var n = util$n.processArgs(e, t);
|
|
22278
22278
|
var s = {
|
|
22279
22279
|
path: "/containers/" + this.id + "/checkpoints",
|
|
22280
22280
|
method: "POST",
|
|
@@ -22307,7 +22307,7 @@ Container$2.prototype.createCheckpoint = function(e, t) {
|
|
|
22307
22307
|
|
|
22308
22308
|
Container$2.prototype.export = function(e, t) {
|
|
22309
22309
|
var r = this;
|
|
22310
|
-
var n = util$
|
|
22310
|
+
var n = util$n.processArgs(e, t);
|
|
22311
22311
|
var s = {
|
|
22312
22312
|
path: "/containers/" + this.id + "/export",
|
|
22313
22313
|
method: "GET",
|
|
@@ -22337,7 +22337,7 @@ Container$2.prototype.export = function(e, t) {
|
|
|
22337
22337
|
|
|
22338
22338
|
Container$2.prototype.start = function(e, t) {
|
|
22339
22339
|
var r = this;
|
|
22340
|
-
var n = util$
|
|
22340
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.start);
|
|
22341
22341
|
var s = {
|
|
22342
22342
|
path: "/containers/" + this.id + "/start?",
|
|
22343
22343
|
method: "POST",
|
|
@@ -22369,7 +22369,7 @@ Container$2.prototype.start = function(e, t) {
|
|
|
22369
22369
|
|
|
22370
22370
|
Container$2.prototype.pause = function(e, t) {
|
|
22371
22371
|
var r = this;
|
|
22372
|
-
var n = util$
|
|
22372
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.pause);
|
|
22373
22373
|
var s = {
|
|
22374
22374
|
path: "/containers/" + this.id + "/pause",
|
|
22375
22375
|
method: "POST",
|
|
@@ -22399,7 +22399,7 @@ Container$2.prototype.pause = function(e, t) {
|
|
|
22399
22399
|
|
|
22400
22400
|
Container$2.prototype.unpause = function(e, t) {
|
|
22401
22401
|
var r = this;
|
|
22402
|
-
var n = util$
|
|
22402
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.unpause);
|
|
22403
22403
|
var s = {
|
|
22404
22404
|
path: "/containers/" + this.id + "/unpause",
|
|
22405
22405
|
method: "POST",
|
|
@@ -22430,7 +22430,7 @@ Container$2.prototype.unpause = function(e, t) {
|
|
|
22430
22430
|
|
|
22431
22431
|
Container$2.prototype.exec = function(e, t) {
|
|
22432
22432
|
var r = this;
|
|
22433
|
-
var n = util$
|
|
22433
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.exec);
|
|
22434
22434
|
var s = {
|
|
22435
22435
|
path: "/containers/" + this.id + "/exec",
|
|
22436
22436
|
method: "POST",
|
|
@@ -22463,7 +22463,7 @@ Container$2.prototype.exec = function(e, t) {
|
|
|
22463
22463
|
|
|
22464
22464
|
Container$2.prototype.commit = function(e, t) {
|
|
22465
22465
|
var r = this;
|
|
22466
|
-
var n = util$
|
|
22466
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.commit);
|
|
22467
22467
|
n.opts.container = this.id;
|
|
22468
22468
|
var s = {
|
|
22469
22469
|
path: "/commit?",
|
|
@@ -22495,7 +22495,7 @@ Container$2.prototype.commit = function(e, t) {
|
|
|
22495
22495
|
|
|
22496
22496
|
Container$2.prototype.stop = function(e, t) {
|
|
22497
22497
|
var r = this;
|
|
22498
|
-
var n = util$
|
|
22498
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.stop);
|
|
22499
22499
|
var s = {
|
|
22500
22500
|
path: "/containers/" + this.id + "/stop?",
|
|
22501
22501
|
method: "POST",
|
|
@@ -22527,7 +22527,7 @@ Container$2.prototype.stop = function(e, t) {
|
|
|
22527
22527
|
|
|
22528
22528
|
Container$2.prototype.restart = function(e, t) {
|
|
22529
22529
|
var r = this;
|
|
22530
|
-
var n = util$
|
|
22530
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.restart);
|
|
22531
22531
|
var s = {
|
|
22532
22532
|
path: "/containers/" + this.id + "/restart?",
|
|
22533
22533
|
method: "POST",
|
|
@@ -22558,7 +22558,7 @@ Container$2.prototype.restart = function(e, t) {
|
|
|
22558
22558
|
|
|
22559
22559
|
Container$2.prototype.kill = function(e, t) {
|
|
22560
22560
|
var r = this;
|
|
22561
|
-
var n = util$
|
|
22561
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.kill);
|
|
22562
22562
|
var s = {
|
|
22563
22563
|
path: "/containers/" + this.id + "/kill?",
|
|
22564
22564
|
method: "POST",
|
|
@@ -22589,7 +22589,7 @@ Container$2.prototype.kill = function(e, t) {
|
|
|
22589
22589
|
|
|
22590
22590
|
Container$2.prototype.resize = function(e, t) {
|
|
22591
22591
|
var r = this;
|
|
22592
|
-
var n = util$
|
|
22592
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.resize);
|
|
22593
22593
|
var s = {
|
|
22594
22594
|
path: "/containers/" + this.id + "/resize?",
|
|
22595
22595
|
method: "POST",
|
|
@@ -22620,7 +22620,7 @@ Container$2.prototype.resize = function(e, t) {
|
|
|
22620
22620
|
|
|
22621
22621
|
Container$2.prototype.attach = function(e, t) {
|
|
22622
22622
|
var r = this;
|
|
22623
|
-
var n = util$
|
|
22623
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.attach);
|
|
22624
22624
|
var s = {
|
|
22625
22625
|
path: "/containers/" + this.id + "/attach?",
|
|
22626
22626
|
method: "POST",
|
|
@@ -22653,7 +22653,7 @@ Container$2.prototype.attach = function(e, t) {
|
|
|
22653
22653
|
|
|
22654
22654
|
Container$2.prototype.wait = function(e, t) {
|
|
22655
22655
|
var r = this;
|
|
22656
|
-
var n = util$
|
|
22656
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.wait);
|
|
22657
22657
|
var s = {
|
|
22658
22658
|
path: "/containers/" + this.id + "/wait?",
|
|
22659
22659
|
method: "POST",
|
|
@@ -22684,7 +22684,7 @@ Container$2.prototype.wait = function(e, t) {
|
|
|
22684
22684
|
|
|
22685
22685
|
Container$2.prototype.remove = function(e, t) {
|
|
22686
22686
|
var r = this;
|
|
22687
|
-
var n = util$
|
|
22687
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.remove);
|
|
22688
22688
|
var s = {
|
|
22689
22689
|
path: "/containers/" + this.id + "?",
|
|
22690
22690
|
method: "DELETE",
|
|
@@ -22717,7 +22717,7 @@ Container$2.prototype.remove = function(e, t) {
|
|
|
22717
22717
|
Container$2.prototype.copy = function(e, t) {
|
|
22718
22718
|
var r = this;
|
|
22719
22719
|
console.log("container.copy is deprecated since Docker v1.8.x");
|
|
22720
|
-
var n = util$
|
|
22720
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.copy);
|
|
22721
22721
|
var s = {
|
|
22722
22722
|
path: "/containers/" + this.id + "/copy",
|
|
22723
22723
|
method: "POST",
|
|
@@ -22748,7 +22748,7 @@ Container$2.prototype.copy = function(e, t) {
|
|
|
22748
22748
|
|
|
22749
22749
|
Container$2.prototype.getArchive = function(e, t) {
|
|
22750
22750
|
var r = this;
|
|
22751
|
-
var n = util$
|
|
22751
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.getArchive);
|
|
22752
22752
|
var s = {
|
|
22753
22753
|
path: "/containers/" + this.id + "/archive?",
|
|
22754
22754
|
method: "GET",
|
|
@@ -22780,7 +22780,7 @@ Container$2.prototype.getArchive = function(e, t) {
|
|
|
22780
22780
|
|
|
22781
22781
|
Container$2.prototype.infoArchive = function(e, t) {
|
|
22782
22782
|
var r = this;
|
|
22783
|
-
var n = util$
|
|
22783
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.infoArchive);
|
|
22784
22784
|
var s = {
|
|
22785
22785
|
path: "/containers/" + this.id + "/archive?",
|
|
22786
22786
|
method: "HEAD",
|
|
@@ -22812,7 +22812,7 @@ Container$2.prototype.infoArchive = function(e, t) {
|
|
|
22812
22812
|
|
|
22813
22813
|
Container$2.prototype.putArchive = function(e, t, r) {
|
|
22814
22814
|
var n = this;
|
|
22815
|
-
var s = util$
|
|
22815
|
+
var s = util$n.processArgs(t, r, this.defaultOptions.putArchive);
|
|
22816
22816
|
var o = {
|
|
22817
22817
|
path: "/containers/" + this.id + "/archive?",
|
|
22818
22818
|
method: "PUT",
|
|
@@ -22845,7 +22845,7 @@ Container$2.prototype.putArchive = function(e, t, r) {
|
|
|
22845
22845
|
|
|
22846
22846
|
Container$2.prototype.logs = function(e, t) {
|
|
22847
22847
|
var r = this;
|
|
22848
|
-
var n = util$
|
|
22848
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.log);
|
|
22849
22849
|
var s = {
|
|
22850
22850
|
path: "/containers/" + this.id + "/logs?",
|
|
22851
22851
|
method: "GET",
|
|
@@ -22876,7 +22876,7 @@ Container$2.prototype.logs = function(e, t) {
|
|
|
22876
22876
|
|
|
22877
22877
|
Container$2.prototype.stats = function(e, t) {
|
|
22878
22878
|
var r = this;
|
|
22879
|
-
var n = util$
|
|
22879
|
+
var n = util$n.processArgs(e, t, this.defaultOptions.stats);
|
|
22880
22880
|
var s = true;
|
|
22881
22881
|
if (n.opts.stream === false) {
|
|
22882
22882
|
s = false;
|
|
@@ -22911,7 +22911,7 @@ Container$2.prototype.stats = function(e, t) {
|
|
|
22911
22911
|
|
|
22912
22912
|
var container = Container$2;
|
|
22913
22913
|
|
|
22914
|
-
var util$
|
|
22914
|
+
var util$m = utilExports;
|
|
22915
22915
|
|
|
22916
22916
|
var Image$1 = function(e, t) {
|
|
22917
22917
|
this.modem = e;
|
|
@@ -22923,7 +22923,7 @@ Image$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
22923
22923
|
};
|
|
22924
22924
|
|
|
22925
22925
|
Image$1.prototype.inspect = function(e, t) {
|
|
22926
|
-
var r = util$
|
|
22926
|
+
var r = util$m.processArgs(e, t);
|
|
22927
22927
|
var n = this;
|
|
22928
22928
|
var e = {
|
|
22929
22929
|
path: "/images/" + this.name + "/json",
|
|
@@ -22953,7 +22953,7 @@ Image$1.prototype.inspect = function(e, t) {
|
|
|
22953
22953
|
};
|
|
22954
22954
|
|
|
22955
22955
|
Image$1.prototype.distribution = function(e, t) {
|
|
22956
|
-
var r = util$
|
|
22956
|
+
var r = util$m.processArgs(e, t);
|
|
22957
22957
|
var n = this;
|
|
22958
22958
|
var s = {
|
|
22959
22959
|
path: "/distribution/" + this.name + "/json",
|
|
@@ -23040,7 +23040,7 @@ Image$1.prototype.get = function(e) {
|
|
|
23040
23040
|
|
|
23041
23041
|
Image$1.prototype.push = function(e, t, r) {
|
|
23042
23042
|
var n = this;
|
|
23043
|
-
var s = util$
|
|
23043
|
+
var s = util$m.processArgs(e, t);
|
|
23044
23044
|
var o = true;
|
|
23045
23045
|
if (s.opts.stream === false) {
|
|
23046
23046
|
o = false;
|
|
@@ -23109,7 +23109,7 @@ Image$1.prototype.tag = function(e, t) {
|
|
|
23109
23109
|
|
|
23110
23110
|
Image$1.prototype.remove = function(e, t) {
|
|
23111
23111
|
var r = this;
|
|
23112
|
-
var n = util$
|
|
23112
|
+
var n = util$m.processArgs(e, t);
|
|
23113
23113
|
var s = {
|
|
23114
23114
|
path: "/images/" + this.name + "?",
|
|
23115
23115
|
method: "DELETE",
|
|
@@ -23140,7 +23140,7 @@ Image$1.prototype.remove = function(e, t) {
|
|
|
23140
23140
|
|
|
23141
23141
|
var image = Image$1;
|
|
23142
23142
|
|
|
23143
|
-
var util$
|
|
23143
|
+
var util$l = utilExports;
|
|
23144
23144
|
|
|
23145
23145
|
var Volume$1 = function(e, t) {
|
|
23146
23146
|
this.modem = e;
|
|
@@ -23153,7 +23153,7 @@ Volume$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23153
23153
|
|
|
23154
23154
|
Volume$1.prototype.inspect = function(e, t) {
|
|
23155
23155
|
var r = this;
|
|
23156
|
-
var n = util$
|
|
23156
|
+
var n = util$l.processArgs(e, t);
|
|
23157
23157
|
var s = {
|
|
23158
23158
|
path: "/volumes/" + this.name,
|
|
23159
23159
|
method: "GET",
|
|
@@ -23182,7 +23182,7 @@ Volume$1.prototype.inspect = function(e, t) {
|
|
|
23182
23182
|
|
|
23183
23183
|
Volume$1.prototype.remove = function(e, t) {
|
|
23184
23184
|
var r = this;
|
|
23185
|
-
var n = util$
|
|
23185
|
+
var n = util$l.processArgs(e, t);
|
|
23186
23186
|
var s = {
|
|
23187
23187
|
path: "/volumes/" + this.name,
|
|
23188
23188
|
method: "DELETE",
|
|
@@ -23213,7 +23213,7 @@ Volume$1.prototype.remove = function(e, t) {
|
|
|
23213
23213
|
|
|
23214
23214
|
var volume = Volume$1;
|
|
23215
23215
|
|
|
23216
|
-
var util$
|
|
23216
|
+
var util$k = utilExports;
|
|
23217
23217
|
|
|
23218
23218
|
var Network$1 = function(e, t) {
|
|
23219
23219
|
this.modem = e;
|
|
@@ -23226,7 +23226,7 @@ Network$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23226
23226
|
|
|
23227
23227
|
Network$1.prototype.inspect = function(e, t) {
|
|
23228
23228
|
var r = this;
|
|
23229
|
-
var n = util$
|
|
23229
|
+
var n = util$k.processArgs(e, t);
|
|
23230
23230
|
var e = {
|
|
23231
23231
|
path: "/networks/" + this.id + "?",
|
|
23232
23232
|
method: "GET",
|
|
@@ -23255,7 +23255,7 @@ Network$1.prototype.inspect = function(e, t) {
|
|
|
23255
23255
|
|
|
23256
23256
|
Network$1.prototype.remove = function(e, t) {
|
|
23257
23257
|
var r = this;
|
|
23258
|
-
var n = util$
|
|
23258
|
+
var n = util$k.processArgs(e, t);
|
|
23259
23259
|
var s = {
|
|
23260
23260
|
path: "/networks/" + this.id,
|
|
23261
23261
|
method: "DELETE",
|
|
@@ -23287,7 +23287,7 @@ Network$1.prototype.remove = function(e, t) {
|
|
|
23287
23287
|
|
|
23288
23288
|
Network$1.prototype.connect = function(e, t) {
|
|
23289
23289
|
var r = this;
|
|
23290
|
-
var n = util$
|
|
23290
|
+
var n = util$k.processArgs(e, t);
|
|
23291
23291
|
var s = {
|
|
23292
23292
|
path: "/networks/" + this.id + "/connect",
|
|
23293
23293
|
method: "POST",
|
|
@@ -23318,7 +23318,7 @@ Network$1.prototype.connect = function(e, t) {
|
|
|
23318
23318
|
|
|
23319
23319
|
Network$1.prototype.disconnect = function(e, t) {
|
|
23320
23320
|
var r = this;
|
|
23321
|
-
var n = util$
|
|
23321
|
+
var n = util$k.processArgs(e, t);
|
|
23322
23322
|
var s = {
|
|
23323
23323
|
path: "/networks/" + this.id + "/disconnect",
|
|
23324
23324
|
method: "POST",
|
|
@@ -23349,7 +23349,7 @@ Network$1.prototype.disconnect = function(e, t) {
|
|
|
23349
23349
|
|
|
23350
23350
|
var network = Network$1;
|
|
23351
23351
|
|
|
23352
|
-
var util$
|
|
23352
|
+
var util$j = utilExports;
|
|
23353
23353
|
|
|
23354
23354
|
var Service$3 = function(e, t) {
|
|
23355
23355
|
this.modem = e;
|
|
@@ -23362,7 +23362,7 @@ Service$3.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23362
23362
|
|
|
23363
23363
|
Service$3.prototype.inspect = function(e, t) {
|
|
23364
23364
|
var r = this;
|
|
23365
|
-
var n = util$
|
|
23365
|
+
var n = util$j.processArgs(e, t);
|
|
23366
23366
|
var s = {
|
|
23367
23367
|
path: "/services/" + this.id,
|
|
23368
23368
|
method: "GET",
|
|
@@ -23391,7 +23391,7 @@ Service$3.prototype.inspect = function(e, t) {
|
|
|
23391
23391
|
|
|
23392
23392
|
Service$3.prototype.remove = function(e, t) {
|
|
23393
23393
|
var r = this;
|
|
23394
|
-
var n = util$
|
|
23394
|
+
var n = util$j.processArgs(e, t);
|
|
23395
23395
|
var s = {
|
|
23396
23396
|
path: "/services/" + this.id,
|
|
23397
23397
|
method: "DELETE",
|
|
@@ -23462,7 +23462,7 @@ Service$3.prototype.update = function(e, t, r) {
|
|
|
23462
23462
|
|
|
23463
23463
|
Service$3.prototype.logs = function(e, t) {
|
|
23464
23464
|
var r = this;
|
|
23465
|
-
var n = util$
|
|
23465
|
+
var n = util$j.processArgs(e, t, {});
|
|
23466
23466
|
var s = {
|
|
23467
23467
|
path: "/services/" + this.id + "/logs?",
|
|
23468
23468
|
method: "GET",
|
|
@@ -23494,7 +23494,7 @@ Service$3.prototype.logs = function(e, t) {
|
|
|
23494
23494
|
|
|
23495
23495
|
var service$2 = Service$3;
|
|
23496
23496
|
|
|
23497
|
-
var util$
|
|
23497
|
+
var util$i = utilExports;
|
|
23498
23498
|
|
|
23499
23499
|
var Plugin$1 = function(e, t, r) {
|
|
23500
23500
|
this.modem = e;
|
|
@@ -23508,7 +23508,7 @@ Plugin$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23508
23508
|
|
|
23509
23509
|
Plugin$1.prototype.inspect = function(e, t) {
|
|
23510
23510
|
var r = this;
|
|
23511
|
-
var n = util$
|
|
23511
|
+
var n = util$i.processArgs(e, t);
|
|
23512
23512
|
var s = {
|
|
23513
23513
|
path: "/plugins/" + this.name + "/json",
|
|
23514
23514
|
method: "GET",
|
|
@@ -23537,7 +23537,7 @@ Plugin$1.prototype.inspect = function(e, t) {
|
|
|
23537
23537
|
|
|
23538
23538
|
Plugin$1.prototype.remove = function(e, t) {
|
|
23539
23539
|
var r = this;
|
|
23540
|
-
var n = util$
|
|
23540
|
+
var n = util$i.processArgs(e, t);
|
|
23541
23541
|
var s = {
|
|
23542
23542
|
path: "/plugins/" + this.name + "?",
|
|
23543
23543
|
method: "DELETE",
|
|
@@ -23568,7 +23568,7 @@ Plugin$1.prototype.remove = function(e, t) {
|
|
|
23568
23568
|
|
|
23569
23569
|
Plugin$1.prototype.privileges = function(e, t) {
|
|
23570
23570
|
var r = this;
|
|
23571
|
-
var n = util$
|
|
23571
|
+
var n = util$i.processArgs(e, t);
|
|
23572
23572
|
var s = {
|
|
23573
23573
|
path: "/plugins/privileges?",
|
|
23574
23574
|
method: "GET",
|
|
@@ -23599,7 +23599,7 @@ Plugin$1.prototype.privileges = function(e, t) {
|
|
|
23599
23599
|
|
|
23600
23600
|
Plugin$1.prototype.pull = function(e, t) {
|
|
23601
23601
|
var r = this;
|
|
23602
|
-
var n = util$
|
|
23602
|
+
var n = util$i.processArgs(e, t);
|
|
23603
23603
|
if (n.opts._query && !n.opts._query.name) {
|
|
23604
23604
|
n.opts._query.name = this.name;
|
|
23605
23605
|
}
|
|
@@ -23636,7 +23636,7 @@ Plugin$1.prototype.pull = function(e, t) {
|
|
|
23636
23636
|
|
|
23637
23637
|
Plugin$1.prototype.enable = function(e, t) {
|
|
23638
23638
|
var r = this;
|
|
23639
|
-
var n = util$
|
|
23639
|
+
var n = util$i.processArgs(e, t);
|
|
23640
23640
|
var s = {
|
|
23641
23641
|
path: "/plugins/" + this.name + "/enable?",
|
|
23642
23642
|
method: "POST",
|
|
@@ -23665,7 +23665,7 @@ Plugin$1.prototype.enable = function(e, t) {
|
|
|
23665
23665
|
|
|
23666
23666
|
Plugin$1.prototype.disable = function(e, t) {
|
|
23667
23667
|
var r = this;
|
|
23668
|
-
var n = util$
|
|
23668
|
+
var n = util$i.processArgs(e, t);
|
|
23669
23669
|
var s = {
|
|
23670
23670
|
path: "/plugins/" + this.name + "/disable",
|
|
23671
23671
|
method: "POST",
|
|
@@ -23694,7 +23694,7 @@ Plugin$1.prototype.disable = function(e, t) {
|
|
|
23694
23694
|
|
|
23695
23695
|
Plugin$1.prototype.push = function(e, t) {
|
|
23696
23696
|
var r = this;
|
|
23697
|
-
var n = util$
|
|
23697
|
+
var n = util$i.processArgs(e, t);
|
|
23698
23698
|
var s = {
|
|
23699
23699
|
path: "/plugins/" + this.name + "/push",
|
|
23700
23700
|
method: "POST",
|
|
@@ -23724,7 +23724,7 @@ Plugin$1.prototype.push = function(e, t) {
|
|
|
23724
23724
|
|
|
23725
23725
|
Plugin$1.prototype.configure = function(e, t) {
|
|
23726
23726
|
var r = this;
|
|
23727
|
-
var n = util$
|
|
23727
|
+
var n = util$i.processArgs(e, t);
|
|
23728
23728
|
var s = {
|
|
23729
23729
|
path: "/plugins/" + this.name + "/set",
|
|
23730
23730
|
method: "POST",
|
|
@@ -23791,7 +23791,7 @@ Plugin$1.prototype.upgrade = function(e, t, r) {
|
|
|
23791
23791
|
|
|
23792
23792
|
var plugin = Plugin$1;
|
|
23793
23793
|
|
|
23794
|
-
var util$
|
|
23794
|
+
var util$h = utilExports;
|
|
23795
23795
|
|
|
23796
23796
|
var Secret$1 = function(e, t) {
|
|
23797
23797
|
this.modem = e;
|
|
@@ -23804,7 +23804,7 @@ Secret$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23804
23804
|
|
|
23805
23805
|
Secret$1.prototype.inspect = function(e, t) {
|
|
23806
23806
|
var r = this;
|
|
23807
|
-
var n = util$
|
|
23807
|
+
var n = util$h.processArgs(e, t);
|
|
23808
23808
|
var s = {
|
|
23809
23809
|
path: "/secrets/" + this.id,
|
|
23810
23810
|
method: "GET",
|
|
@@ -23866,7 +23866,7 @@ Secret$1.prototype.update = function(e, t) {
|
|
|
23866
23866
|
|
|
23867
23867
|
Secret$1.prototype.remove = function(e, t) {
|
|
23868
23868
|
var r = this;
|
|
23869
|
-
var n = util$
|
|
23869
|
+
var n = util$h.processArgs(e, t);
|
|
23870
23870
|
var s = {
|
|
23871
23871
|
path: "/secrets/" + this.id,
|
|
23872
23872
|
method: "DELETE",
|
|
@@ -23897,7 +23897,7 @@ Secret$1.prototype.remove = function(e, t) {
|
|
|
23897
23897
|
|
|
23898
23898
|
var secret = Secret$1;
|
|
23899
23899
|
|
|
23900
|
-
var util$
|
|
23900
|
+
var util$g = utilExports;
|
|
23901
23901
|
|
|
23902
23902
|
var Config$1 = function(e, t) {
|
|
23903
23903
|
this.modem = e;
|
|
@@ -23910,7 +23910,7 @@ Config$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
23910
23910
|
|
|
23911
23911
|
Config$1.prototype.inspect = function(e, t) {
|
|
23912
23912
|
var r = this;
|
|
23913
|
-
var n = util$
|
|
23913
|
+
var n = util$g.processArgs(e, t);
|
|
23914
23914
|
var s = {
|
|
23915
23915
|
path: "/configs/" + this.id,
|
|
23916
23916
|
method: "GET",
|
|
@@ -23940,7 +23940,7 @@ Config$1.prototype.inspect = function(e, t) {
|
|
|
23940
23940
|
|
|
23941
23941
|
Config$1.prototype.update = function(e, t) {
|
|
23942
23942
|
var r = this;
|
|
23943
|
-
var n = util$
|
|
23943
|
+
var n = util$g.processArgs(e, t);
|
|
23944
23944
|
var s = {
|
|
23945
23945
|
path: "/configs/" + this.id + "/update?",
|
|
23946
23946
|
method: "POST",
|
|
@@ -23971,7 +23971,7 @@ Config$1.prototype.update = function(e, t) {
|
|
|
23971
23971
|
|
|
23972
23972
|
Config$1.prototype.remove = function(e, t) {
|
|
23973
23973
|
var r = this;
|
|
23974
|
-
var n = util$
|
|
23974
|
+
var n = util$g.processArgs(e, t);
|
|
23975
23975
|
var s = {
|
|
23976
23976
|
path: "/configs/" + this.id,
|
|
23977
23977
|
method: "DELETE",
|
|
@@ -24003,7 +24003,7 @@ Config$1.prototype.remove = function(e, t) {
|
|
|
24003
24003
|
|
|
24004
24004
|
var config = Config$1;
|
|
24005
24005
|
|
|
24006
|
-
var util$
|
|
24006
|
+
var util$f = utilExports;
|
|
24007
24007
|
|
|
24008
24008
|
var Task$1 = function(e, t) {
|
|
24009
24009
|
this.modem = e;
|
|
@@ -24019,7 +24019,7 @@ Task$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
24019
24019
|
|
|
24020
24020
|
Task$1.prototype.inspect = function(e, t) {
|
|
24021
24021
|
var r = this;
|
|
24022
|
-
var n = util$
|
|
24022
|
+
var n = util$f.processArgs(e, t);
|
|
24023
24023
|
var s = {
|
|
24024
24024
|
path: "/tasks/" + this.id,
|
|
24025
24025
|
method: "GET",
|
|
@@ -24048,7 +24048,7 @@ Task$1.prototype.inspect = function(e, t) {
|
|
|
24048
24048
|
|
|
24049
24049
|
Task$1.prototype.logs = function(e, t) {
|
|
24050
24050
|
var r = this;
|
|
24051
|
-
var n = util$
|
|
24051
|
+
var n = util$f.processArgs(e, t, this.defaultOptions.log);
|
|
24052
24052
|
var s = {
|
|
24053
24053
|
path: "/tasks/" + this.id + "/logs?",
|
|
24054
24054
|
method: "GET",
|
|
@@ -24081,7 +24081,7 @@ Task$1.prototype.logs = function(e, t) {
|
|
|
24081
24081
|
|
|
24082
24082
|
var task = Task$1;
|
|
24083
24083
|
|
|
24084
|
-
var util$
|
|
24084
|
+
var util$e = utilExports;
|
|
24085
24085
|
|
|
24086
24086
|
var Node$1 = function(e, t) {
|
|
24087
24087
|
this.modem = e;
|
|
@@ -24094,7 +24094,7 @@ Node$1.prototype[require$$1__default.inspect.custom] = function() {
|
|
|
24094
24094
|
|
|
24095
24095
|
Node$1.prototype.inspect = function(e, t) {
|
|
24096
24096
|
var r = this;
|
|
24097
|
-
var n = util$
|
|
24097
|
+
var n = util$e.processArgs(e, t);
|
|
24098
24098
|
var s = {
|
|
24099
24099
|
path: "/nodes/" + this.id,
|
|
24100
24100
|
method: "GET",
|
|
@@ -24156,7 +24156,7 @@ Node$1.prototype.update = function(e, t) {
|
|
|
24156
24156
|
|
|
24157
24157
|
Node$1.prototype.remove = function(e, t) {
|
|
24158
24158
|
var r = this;
|
|
24159
|
-
var n = util$
|
|
24159
|
+
var n = util$e.processArgs(e, t);
|
|
24160
24160
|
var s = {
|
|
24161
24161
|
path: "/nodes/" + this.id + "?",
|
|
24162
24162
|
method: "DELETE",
|
|
@@ -24331,23 +24331,23 @@ const require$$12 = {
|
|
|
24331
24331
|
};
|
|
24332
24332
|
e.log = _;
|
|
24333
24333
|
const E = (s = (n = process.env.GRPC_NODE_TRACE) !== null && n !== void 0 ? n : process.env.GRPC_TRACE) !== null && s !== void 0 ? s : "";
|
|
24334
|
-
const v = new Set;
|
|
24335
24334
|
const y = new Set;
|
|
24335
|
+
const v = new Set;
|
|
24336
24336
|
for (const e of E.split(",")) {
|
|
24337
24337
|
if (e.startsWith("-")) {
|
|
24338
|
-
|
|
24338
|
+
v.add(e.substring(1));
|
|
24339
24339
|
} else {
|
|
24340
|
-
|
|
24340
|
+
y.add(e);
|
|
24341
24341
|
}
|
|
24342
24342
|
}
|
|
24343
|
-
const S =
|
|
24343
|
+
const S = y.has("all");
|
|
24344
24344
|
function A(t, r, n) {
|
|
24345
24345
|
if (b(r)) {
|
|
24346
24346
|
(0, e.log)(t, (new Date).toISOString() + " | v" + l + " " + a.pid + " | " + r + " | " + n);
|
|
24347
24347
|
}
|
|
24348
24348
|
}
|
|
24349
24349
|
function b(e) {
|
|
24350
|
-
return !
|
|
24350
|
+
return !v.has(e) && (S || y.has(e));
|
|
24351
24351
|
}
|
|
24352
24352
|
})(logging$8);
|
|
24353
24353
|
|
|
@@ -28294,8 +28294,8 @@ function requireClient() {
|
|
|
28294
28294
|
}
|
|
28295
28295
|
makeUnaryRequest(t, r, s, d, p, g, m) {
|
|
28296
28296
|
var _, E;
|
|
28297
|
-
const
|
|
28298
|
-
const
|
|
28297
|
+
const y = this.checkOptionalUnaryResponseArguments(p, g, m);
|
|
28298
|
+
const v = {
|
|
28299
28299
|
path: t,
|
|
28300
28300
|
requestStream: false,
|
|
28301
28301
|
responseStream: false,
|
|
@@ -28304,12 +28304,12 @@ function requireClient() {
|
|
|
28304
28304
|
};
|
|
28305
28305
|
let S = {
|
|
28306
28306
|
argument: d,
|
|
28307
|
-
metadata:
|
|
28307
|
+
metadata: y.metadata,
|
|
28308
28308
|
call: new e.ClientUnaryCallImpl,
|
|
28309
28309
|
channel: this[a],
|
|
28310
|
-
methodDefinition:
|
|
28311
|
-
callOptions:
|
|
28312
|
-
callback:
|
|
28310
|
+
methodDefinition: v,
|
|
28311
|
+
callOptions: y.options,
|
|
28312
|
+
callback: y.callback
|
|
28313
28313
|
};
|
|
28314
28314
|
if (this[u]) {
|
|
28315
28315
|
S = this[u](S);
|
|
@@ -28367,37 +28367,37 @@ function requireClient() {
|
|
|
28367
28367
|
makeClientStreamRequest(t, r, s, d, p, g) {
|
|
28368
28368
|
var m, _;
|
|
28369
28369
|
const E = this.checkOptionalUnaryResponseArguments(d, p, g);
|
|
28370
|
-
const
|
|
28370
|
+
const y = {
|
|
28371
28371
|
path: t,
|
|
28372
28372
|
requestStream: true,
|
|
28373
28373
|
responseStream: false,
|
|
28374
28374
|
requestSerialize: r,
|
|
28375
28375
|
responseDeserialize: s
|
|
28376
28376
|
};
|
|
28377
|
-
let
|
|
28377
|
+
let v = {
|
|
28378
28378
|
metadata: E.metadata,
|
|
28379
28379
|
call: new e.ClientWritableStreamImpl(r),
|
|
28380
28380
|
channel: this[a],
|
|
28381
|
-
methodDefinition:
|
|
28381
|
+
methodDefinition: y,
|
|
28382
28382
|
callOptions: E.options,
|
|
28383
28383
|
callback: E.callback
|
|
28384
28384
|
};
|
|
28385
28385
|
if (this[u]) {
|
|
28386
|
-
|
|
28386
|
+
v = this[u](v);
|
|
28387
28387
|
}
|
|
28388
|
-
const S =
|
|
28388
|
+
const S = v.call;
|
|
28389
28389
|
const A = {
|
|
28390
28390
|
clientInterceptors: this[l],
|
|
28391
28391
|
clientInterceptorProviders: this[c],
|
|
28392
|
-
callInterceptors: (m =
|
|
28393
|
-
callInterceptorProviders: (_ =
|
|
28392
|
+
callInterceptors: (m = v.callOptions.interceptors) !== null && m !== void 0 ? m : [],
|
|
28393
|
+
callInterceptorProviders: (_ = v.callOptions.interceptor_providers) !== null && _ !== void 0 ? _ : []
|
|
28394
28394
|
};
|
|
28395
|
-
const b = (0, o.getInterceptingCall)(A,
|
|
28395
|
+
const b = (0, o.getInterceptingCall)(A, v.methodDefinition, v.callOptions, v.channel);
|
|
28396
28396
|
S.call = b;
|
|
28397
28397
|
let C = null;
|
|
28398
28398
|
let w = false;
|
|
28399
28399
|
let I = new Error;
|
|
28400
|
-
b.start(
|
|
28400
|
+
b.start(v.metadata, {
|
|
28401
28401
|
onReceiveMetadata: e => {
|
|
28402
28402
|
S.emit("metadata", e);
|
|
28403
28403
|
},
|
|
@@ -28416,17 +28416,17 @@ function requireClient() {
|
|
|
28416
28416
|
if (t.code === n.Status.OK) {
|
|
28417
28417
|
if (C === null) {
|
|
28418
28418
|
const r = h(I);
|
|
28419
|
-
|
|
28419
|
+
v.callback((0, e.callErrorFromStatus)({
|
|
28420
28420
|
code: n.Status.UNIMPLEMENTED,
|
|
28421
28421
|
details: "No message received",
|
|
28422
28422
|
metadata: t.metadata
|
|
28423
28423
|
}, r));
|
|
28424
28424
|
} else {
|
|
28425
|
-
|
|
28425
|
+
v.callback(null, C);
|
|
28426
28426
|
}
|
|
28427
28427
|
} else {
|
|
28428
28428
|
const r = h(I);
|
|
28429
|
-
|
|
28429
|
+
v.callback((0, e.callErrorFromStatus)(t, r));
|
|
28430
28430
|
}
|
|
28431
28431
|
I = null;
|
|
28432
28432
|
S.emit("status", t);
|
|
@@ -28460,36 +28460,36 @@ function requireClient() {
|
|
|
28460
28460
|
makeServerStreamRequest(t, r, s, d, p, g) {
|
|
28461
28461
|
var m, _;
|
|
28462
28462
|
const E = this.checkMetadataAndOptions(p, g);
|
|
28463
|
-
const
|
|
28463
|
+
const y = {
|
|
28464
28464
|
path: t,
|
|
28465
28465
|
requestStream: false,
|
|
28466
28466
|
responseStream: true,
|
|
28467
28467
|
requestSerialize: r,
|
|
28468
28468
|
responseDeserialize: s
|
|
28469
28469
|
};
|
|
28470
|
-
let
|
|
28470
|
+
let v = {
|
|
28471
28471
|
argument: d,
|
|
28472
28472
|
metadata: E.metadata,
|
|
28473
28473
|
call: new e.ClientReadableStreamImpl(s),
|
|
28474
28474
|
channel: this[a],
|
|
28475
|
-
methodDefinition:
|
|
28475
|
+
methodDefinition: y,
|
|
28476
28476
|
callOptions: E.options
|
|
28477
28477
|
};
|
|
28478
28478
|
if (this[u]) {
|
|
28479
|
-
|
|
28479
|
+
v = this[u](v);
|
|
28480
28480
|
}
|
|
28481
|
-
const S =
|
|
28481
|
+
const S = v.call;
|
|
28482
28482
|
const A = {
|
|
28483
28483
|
clientInterceptors: this[l],
|
|
28484
28484
|
clientInterceptorProviders: this[c],
|
|
28485
|
-
callInterceptors: (m =
|
|
28486
|
-
callInterceptorProviders: (_ =
|
|
28485
|
+
callInterceptors: (m = v.callOptions.interceptors) !== null && m !== void 0 ? m : [],
|
|
28486
|
+
callInterceptorProviders: (_ = v.callOptions.interceptor_providers) !== null && _ !== void 0 ? _ : []
|
|
28487
28487
|
};
|
|
28488
|
-
const b = (0, o.getInterceptingCall)(A,
|
|
28488
|
+
const b = (0, o.getInterceptingCall)(A, v.methodDefinition, v.callOptions, v.channel);
|
|
28489
28489
|
S.call = b;
|
|
28490
28490
|
let C = false;
|
|
28491
28491
|
let w = new Error;
|
|
28492
|
-
b.start(
|
|
28492
|
+
b.start(v.metadata, {
|
|
28493
28493
|
onReceiveMetadata(e) {
|
|
28494
28494
|
S.emit("metadata", e);
|
|
28495
28495
|
},
|
|
@@ -28524,7 +28524,7 @@ function requireClient() {
|
|
|
28524
28524
|
requestSerialize: r,
|
|
28525
28525
|
responseDeserialize: s
|
|
28526
28526
|
};
|
|
28527
|
-
let
|
|
28527
|
+
let y = {
|
|
28528
28528
|
metadata: _.metadata,
|
|
28529
28529
|
call: new e.ClientDuplexStreamImpl(r, s),
|
|
28530
28530
|
channel: this[a],
|
|
@@ -28532,41 +28532,41 @@ function requireClient() {
|
|
|
28532
28532
|
callOptions: _.options
|
|
28533
28533
|
};
|
|
28534
28534
|
if (this[u]) {
|
|
28535
|
-
|
|
28535
|
+
y = this[u](y);
|
|
28536
28536
|
}
|
|
28537
|
-
const
|
|
28537
|
+
const v = y.call;
|
|
28538
28538
|
const S = {
|
|
28539
28539
|
clientInterceptors: this[l],
|
|
28540
28540
|
clientInterceptorProviders: this[c],
|
|
28541
|
-
callInterceptors: (g =
|
|
28542
|
-
callInterceptorProviders: (m =
|
|
28541
|
+
callInterceptors: (g = y.callOptions.interceptors) !== null && g !== void 0 ? g : [],
|
|
28542
|
+
callInterceptorProviders: (m = y.callOptions.interceptor_providers) !== null && m !== void 0 ? m : []
|
|
28543
28543
|
};
|
|
28544
|
-
const A = (0, o.getInterceptingCall)(S,
|
|
28545
|
-
|
|
28544
|
+
const A = (0, o.getInterceptingCall)(S, y.methodDefinition, y.callOptions, y.channel);
|
|
28545
|
+
v.call = A;
|
|
28546
28546
|
let b = false;
|
|
28547
28547
|
let C = new Error;
|
|
28548
|
-
A.start(
|
|
28548
|
+
A.start(y.metadata, {
|
|
28549
28549
|
onReceiveMetadata(e) {
|
|
28550
|
-
|
|
28550
|
+
v.emit("metadata", e);
|
|
28551
28551
|
},
|
|
28552
28552
|
onReceiveMessage(e) {
|
|
28553
|
-
|
|
28553
|
+
v.push(e);
|
|
28554
28554
|
},
|
|
28555
28555
|
onReceiveStatus(t) {
|
|
28556
28556
|
if (b) {
|
|
28557
28557
|
return;
|
|
28558
28558
|
}
|
|
28559
28559
|
b = true;
|
|
28560
|
-
|
|
28560
|
+
v.push(null);
|
|
28561
28561
|
if (t.code !== n.Status.OK) {
|
|
28562
28562
|
const r = h(C);
|
|
28563
|
-
|
|
28563
|
+
v.emit("error", (0, e.callErrorFromStatus)(t, r));
|
|
28564
28564
|
}
|
|
28565
28565
|
C = null;
|
|
28566
|
-
|
|
28566
|
+
v.emit("status", t);
|
|
28567
28567
|
}
|
|
28568
28568
|
});
|
|
28569
|
-
return
|
|
28569
|
+
return v;
|
|
28570
28570
|
}
|
|
28571
28571
|
}
|
|
28572
28572
|
client.Client = Client;
|
|
@@ -29696,11 +29696,11 @@ function requireMinimal() {
|
|
|
29696
29696
|
|
|
29697
29697
|
var writer = Writer$1;
|
|
29698
29698
|
|
|
29699
|
-
var util$
|
|
29699
|
+
var util$d = requireMinimal();
|
|
29700
29700
|
|
|
29701
29701
|
var BufferWriter$1;
|
|
29702
29702
|
|
|
29703
|
-
var LongBits$1 = util$
|
|
29703
|
+
var LongBits$1 = util$d.LongBits, base64 = util$d.base64, utf8$1 = util$d.utf8;
|
|
29704
29704
|
|
|
29705
29705
|
function Op(e, t, r) {
|
|
29706
29706
|
this.fn = e;
|
|
@@ -29726,7 +29726,7 @@ function Writer$1() {
|
|
|
29726
29726
|
}
|
|
29727
29727
|
|
|
29728
29728
|
var create$1 = function e() {
|
|
29729
|
-
return util$
|
|
29729
|
+
return util$d.Buffer ? function e() {
|
|
29730
29730
|
return (Writer$1.create = function e() {
|
|
29731
29731
|
return new BufferWriter$1;
|
|
29732
29732
|
})();
|
|
@@ -29738,10 +29738,10 @@ var create$1 = function e() {
|
|
|
29738
29738
|
Writer$1.create = create$1();
|
|
29739
29739
|
|
|
29740
29740
|
Writer$1.alloc = function e(t) {
|
|
29741
|
-
return new util$
|
|
29741
|
+
return new util$d.Array(t);
|
|
29742
29742
|
};
|
|
29743
29743
|
|
|
29744
|
-
if (util$
|
|
29744
|
+
if (util$d.Array !== Array) Writer$1.alloc = util$d.pool(Writer$1.alloc, util$d.Array.prototype.subarray);
|
|
29745
29745
|
|
|
29746
29746
|
Writer$1.prototype._push = function e(t, r, n) {
|
|
29747
29747
|
this.tail = this.tail.next = new Op(t, r, n);
|
|
@@ -29834,14 +29834,14 @@ Writer$1.prototype.fixed64 = function e(t) {
|
|
|
29834
29834
|
Writer$1.prototype.sfixed64 = Writer$1.prototype.fixed64;
|
|
29835
29835
|
|
|
29836
29836
|
Writer$1.prototype.float = function e(t) {
|
|
29837
|
-
return this._push(util$
|
|
29837
|
+
return this._push(util$d.float.writeFloatLE, 4, t);
|
|
29838
29838
|
};
|
|
29839
29839
|
|
|
29840
29840
|
Writer$1.prototype.double = function e(t) {
|
|
29841
|
-
return this._push(util$
|
|
29841
|
+
return this._push(util$d.float.writeDoubleLE, 8, t);
|
|
29842
29842
|
};
|
|
29843
29843
|
|
|
29844
|
-
var writeBytes = util$
|
|
29844
|
+
var writeBytes = util$d.Array.prototype.set ? function e(t, r, n) {
|
|
29845
29845
|
r.set(t, n);
|
|
29846
29846
|
} : function e(t, r, n) {
|
|
29847
29847
|
for (var s = 0; s < t.length; ++s) r[n + s] = t[s];
|
|
@@ -29850,7 +29850,7 @@ var writeBytes = util$b.Array.prototype.set ? function e(t, r, n) {
|
|
|
29850
29850
|
Writer$1.prototype.bytes = function e(t) {
|
|
29851
29851
|
var r = t.length >>> 0;
|
|
29852
29852
|
if (!r) return this._push(writeByte, 1, 0);
|
|
29853
|
-
if (util$
|
|
29853
|
+
if (util$d.isString(t)) {
|
|
29854
29854
|
var n = Writer$1.alloc(r = base64.length(t));
|
|
29855
29855
|
base64.decode(t, n, 0);
|
|
29856
29856
|
t = n;
|
|
@@ -29916,15 +29916,15 @@ var Writer = writer;
|
|
|
29916
29916
|
|
|
29917
29917
|
(BufferWriter.prototype = Object.create(Writer.prototype)).constructor = BufferWriter;
|
|
29918
29918
|
|
|
29919
|
-
var util$
|
|
29919
|
+
var util$c = requireMinimal();
|
|
29920
29920
|
|
|
29921
29921
|
function BufferWriter() {
|
|
29922
29922
|
Writer.call(this);
|
|
29923
29923
|
}
|
|
29924
29924
|
|
|
29925
29925
|
BufferWriter._configure = function() {
|
|
29926
|
-
BufferWriter.alloc = util$
|
|
29927
|
-
BufferWriter.writeBytesBuffer = util$
|
|
29926
|
+
BufferWriter.alloc = util$c._Buffer_allocUnsafe;
|
|
29927
|
+
BufferWriter.writeBytesBuffer = util$c.Buffer && util$c.Buffer.prototype instanceof Uint8Array && util$c.Buffer.prototype.set.name === "set" ? function e(t, r, n) {
|
|
29928
29928
|
r.set(t, n);
|
|
29929
29929
|
} : function e(t, r, n) {
|
|
29930
29930
|
if (t.copy) t.copy(r, n, 0, t.length); else for (var s = 0; s < t.length; ) r[n++] = t[s++];
|
|
@@ -29932,7 +29932,7 @@ BufferWriter._configure = function() {
|
|
|
29932
29932
|
};
|
|
29933
29933
|
|
|
29934
29934
|
BufferWriter.prototype.bytes = function e(t) {
|
|
29935
|
-
if (util$
|
|
29935
|
+
if (util$c.isString(t)) t = util$c._Buffer_from(t, "base64");
|
|
29936
29936
|
var r = t.length >>> 0;
|
|
29937
29937
|
this.uint32(r);
|
|
29938
29938
|
if (r) this._push(BufferWriter.writeBytesBuffer, r, t);
|
|
@@ -29940,11 +29940,11 @@ BufferWriter.prototype.bytes = function e(t) {
|
|
|
29940
29940
|
};
|
|
29941
29941
|
|
|
29942
29942
|
function writeStringBuffer(e, t, r) {
|
|
29943
|
-
if (e.length < 40) util$
|
|
29943
|
+
if (e.length < 40) util$c.utf8.write(e, t, r); else if (t.utf8Write) t.utf8Write(e, r); else t.write(e, r);
|
|
29944
29944
|
}
|
|
29945
29945
|
|
|
29946
29946
|
BufferWriter.prototype.string = function e(t) {
|
|
29947
|
-
var r = util$
|
|
29947
|
+
var r = util$c.Buffer.byteLength(t);
|
|
29948
29948
|
this.uint32(r);
|
|
29949
29949
|
if (r) this._push(writeStringBuffer, r, t);
|
|
29950
29950
|
return this;
|
|
@@ -29954,11 +29954,11 @@ BufferWriter._configure();
|
|
|
29954
29954
|
|
|
29955
29955
|
var reader = Reader$1;
|
|
29956
29956
|
|
|
29957
|
-
var util$
|
|
29957
|
+
var util$b = requireMinimal();
|
|
29958
29958
|
|
|
29959
29959
|
var BufferReader$1;
|
|
29960
29960
|
|
|
29961
|
-
var LongBits = util$
|
|
29961
|
+
var LongBits = util$b.LongBits, utf8 = util$b.utf8;
|
|
29962
29962
|
|
|
29963
29963
|
function indexOutOfRange(e, t) {
|
|
29964
29964
|
return RangeError("index out of range: " + e.pos + " + " + (t || 1) + " > " + e.len);
|
|
@@ -29979,16 +29979,16 @@ var create_array = typeof Uint8Array !== "undefined" ? function e(t) {
|
|
|
29979
29979
|
};
|
|
29980
29980
|
|
|
29981
29981
|
var create = function e() {
|
|
29982
|
-
return util$
|
|
29982
|
+
return util$b.Buffer ? function e(t) {
|
|
29983
29983
|
return (Reader$1.create = function e(t) {
|
|
29984
|
-
return util$
|
|
29984
|
+
return util$b.Buffer.isBuffer(t) ? new BufferReader$1(t) : create_array(t);
|
|
29985
29985
|
})(t);
|
|
29986
29986
|
} : create_array;
|
|
29987
29987
|
};
|
|
29988
29988
|
|
|
29989
29989
|
Reader$1.create = create();
|
|
29990
29990
|
|
|
29991
|
-
Reader$1.prototype._slice = util$
|
|
29991
|
+
Reader$1.prototype._slice = util$b.Array.prototype.subarray || util$b.Array.prototype.slice;
|
|
29992
29992
|
|
|
29993
29993
|
Reader$1.prototype.uint32 = function e() {
|
|
29994
29994
|
var t = 4294967295;
|
|
@@ -30081,14 +30081,14 @@ function readFixed64() {
|
|
|
30081
30081
|
|
|
30082
30082
|
Reader$1.prototype.float = function e() {
|
|
30083
30083
|
if (this.pos + 4 > this.len) throw indexOutOfRange(this, 4);
|
|
30084
|
-
var t = util$
|
|
30084
|
+
var t = util$b.float.readFloatLE(this.buf, this.pos);
|
|
30085
30085
|
this.pos += 4;
|
|
30086
30086
|
return t;
|
|
30087
30087
|
};
|
|
30088
30088
|
|
|
30089
30089
|
Reader$1.prototype.double = function e() {
|
|
30090
30090
|
if (this.pos + 8 > this.len) throw indexOutOfRange(this, 4);
|
|
30091
|
-
var t = util$
|
|
30091
|
+
var t = util$b.float.readDoubleLE(this.buf, this.pos);
|
|
30092
30092
|
this.pos += 8;
|
|
30093
30093
|
return t;
|
|
30094
30094
|
};
|
|
@@ -30099,7 +30099,7 @@ Reader$1.prototype.bytes = function e() {
|
|
|
30099
30099
|
this.pos += t;
|
|
30100
30100
|
if (Array.isArray(this.buf)) return this.buf.slice(r, n);
|
|
30101
30101
|
if (r === n) {
|
|
30102
|
-
var s = util$
|
|
30102
|
+
var s = util$b.Buffer;
|
|
30103
30103
|
return s ? s.alloc(0) : new this.buf.constructor(0);
|
|
30104
30104
|
}
|
|
30105
30105
|
return this._slice.call(this.buf, r, n);
|
|
@@ -30156,8 +30156,8 @@ Reader$1._configure = function(e) {
|
|
|
30156
30156
|
BufferReader$1 = e;
|
|
30157
30157
|
Reader$1.create = create();
|
|
30158
30158
|
BufferReader$1._configure();
|
|
30159
|
-
var t = util$
|
|
30160
|
-
util$
|
|
30159
|
+
var t = util$b.Long ? "toLong" : "toNumber";
|
|
30160
|
+
util$b.merge(Reader$1.prototype, {
|
|
30161
30161
|
int64: function e() {
|
|
30162
30162
|
return readLongVarint.call(this)[t](false);
|
|
30163
30163
|
},
|
|
@@ -30182,14 +30182,14 @@ var Reader = reader;
|
|
|
30182
30182
|
|
|
30183
30183
|
(BufferReader.prototype = Object.create(Reader.prototype)).constructor = BufferReader;
|
|
30184
30184
|
|
|
30185
|
-
var util$
|
|
30185
|
+
var util$a = requireMinimal();
|
|
30186
30186
|
|
|
30187
30187
|
function BufferReader(e) {
|
|
30188
30188
|
Reader.call(this, e);
|
|
30189
30189
|
}
|
|
30190
30190
|
|
|
30191
30191
|
BufferReader._configure = function() {
|
|
30192
|
-
if (util$
|
|
30192
|
+
if (util$a.Buffer) BufferReader.prototype._slice = util$a.Buffer.prototype.slice;
|
|
30193
30193
|
};
|
|
30194
30194
|
|
|
30195
30195
|
BufferReader.prototype.string = function e() {
|
|
@@ -30203,13 +30203,13 @@ var rpc = {};
|
|
|
30203
30203
|
|
|
30204
30204
|
var service$1 = Service$2;
|
|
30205
30205
|
|
|
30206
|
-
var util$
|
|
30206
|
+
var util$9 = requireMinimal();
|
|
30207
30207
|
|
|
30208
|
-
(Service$2.prototype = Object.create(util$
|
|
30208
|
+
(Service$2.prototype = Object.create(util$9.EventEmitter.prototype)).constructor = Service$2;
|
|
30209
30209
|
|
|
30210
30210
|
function Service$2(e, t, r) {
|
|
30211
30211
|
if (typeof e !== "function") throw TypeError("rpcImpl must be a function");
|
|
30212
|
-
util$
|
|
30212
|
+
util$9.EventEmitter.call(this);
|
|
30213
30213
|
this.rpcImpl = e;
|
|
30214
30214
|
this.requestDelimited = Boolean(t);
|
|
30215
30215
|
this.responseDelimited = Boolean(r);
|
|
@@ -30218,7 +30218,7 @@ function Service$2(e, t, r) {
|
|
|
30218
30218
|
Service$2.prototype.rpcCall = function e(t, r, n, s, o) {
|
|
30219
30219
|
if (!s) throw TypeError("request must be specified");
|
|
30220
30220
|
var a = this;
|
|
30221
|
-
if (!o) return util$
|
|
30221
|
+
if (!o) return util$9.asPromise(e, a, t, r, n, s);
|
|
30222
30222
|
if (!a.rpcImpl) {
|
|
30223
30223
|
setTimeout(function() {
|
|
30224
30224
|
o(Error("already ended"));
|
|
@@ -30290,9 +30290,9 @@ var roots = {};
|
|
|
30290
30290
|
r();
|
|
30291
30291
|
})(indexMinimal);
|
|
30292
30292
|
|
|
30293
|
-
var types$
|
|
30293
|
+
var types$2 = {};
|
|
30294
30294
|
|
|
30295
|
-
var util$
|
|
30295
|
+
var util$8 = {
|
|
30296
30296
|
exports: {}
|
|
30297
30297
|
};
|
|
30298
30298
|
|
|
@@ -30660,94 +30660,91 @@ function requireNamespace() {
|
|
|
30660
30660
|
return namespace;
|
|
30661
30661
|
}
|
|
30662
30662
|
|
|
30663
|
-
var mapfield;
|
|
30663
|
+
var mapfield = MapField$1;
|
|
30664
30664
|
|
|
30665
|
-
var
|
|
30665
|
+
var Field$1 = requireField();
|
|
30666
30666
|
|
|
30667
|
-
|
|
30668
|
-
|
|
30669
|
-
|
|
30670
|
-
|
|
30671
|
-
|
|
30672
|
-
(
|
|
30673
|
-
|
|
30674
|
-
|
|
30675
|
-
|
|
30676
|
-
|
|
30677
|
-
this.keyType = s;
|
|
30678
|
-
this.resolvedKeyType = null;
|
|
30679
|
-
this.map = true;
|
|
30680
|
-
}
|
|
30681
|
-
n.fromJSON = function e(t, r) {
|
|
30682
|
-
return new n(t, r.id, r.keyType, r.type, r.options, r.comment);
|
|
30683
|
-
};
|
|
30684
|
-
n.prototype.toJSON = function e(t) {
|
|
30685
|
-
var n = t ? Boolean(t.keepComments) : false;
|
|
30686
|
-
return r.toObject([ "keyType", this.keyType, "type", this.type, "id", this.id, "extend", this.extend, "options", this.options, "comment", n ? this.comment : undefined ]);
|
|
30687
|
-
};
|
|
30688
|
-
n.prototype.resolve = function r() {
|
|
30689
|
-
if (this.resolved) return this;
|
|
30690
|
-
if (t.mapKey[this.keyType] === undefined) throw Error("invalid key type: " + this.keyType);
|
|
30691
|
-
return e.prototype.resolve.call(this);
|
|
30692
|
-
};
|
|
30693
|
-
n.d = function e(t, s, o) {
|
|
30694
|
-
if (typeof o === "function") o = r.decorateType(o).name; else if (o && typeof o === "object") o = r.decorateEnum(o).name;
|
|
30695
|
-
return function e(a, l) {
|
|
30696
|
-
r.decorateType(a.constructor).add(new n(l, t, s, o));
|
|
30697
|
-
};
|
|
30698
|
-
};
|
|
30699
|
-
return mapfield;
|
|
30667
|
+
((MapField$1.prototype = Object.create(Field$1.prototype)).constructor = MapField$1).className = "MapField";
|
|
30668
|
+
|
|
30669
|
+
var types$1 = requireTypes(), util$7 = requireUtil$1();
|
|
30670
|
+
|
|
30671
|
+
function MapField$1(e, t, r, n, s, o) {
|
|
30672
|
+
Field$1.call(this, e, t, n, undefined, undefined, s, o);
|
|
30673
|
+
if (!util$7.isString(r)) throw TypeError("keyType must be a string");
|
|
30674
|
+
this.keyType = r;
|
|
30675
|
+
this.resolvedKeyType = null;
|
|
30676
|
+
this.map = true;
|
|
30700
30677
|
}
|
|
30701
30678
|
|
|
30702
|
-
|
|
30679
|
+
MapField$1.fromJSON = function e(t, r) {
|
|
30680
|
+
return new MapField$1(t, r.id, r.keyType, r.type, r.options, r.comment);
|
|
30681
|
+
};
|
|
30682
|
+
|
|
30683
|
+
MapField$1.prototype.toJSON = function e(t) {
|
|
30684
|
+
var r = t ? Boolean(t.keepComments) : false;
|
|
30685
|
+
return util$7.toObject([ "keyType", this.keyType, "type", this.type, "id", this.id, "extend", this.extend, "options", this.options, "comment", r ? this.comment : undefined ]);
|
|
30686
|
+
};
|
|
30703
30687
|
|
|
30704
|
-
|
|
30688
|
+
MapField$1.prototype.resolve = function e() {
|
|
30689
|
+
if (this.resolved) return this;
|
|
30690
|
+
if (types$1.mapKey[this.keyType] === undefined) throw Error("invalid key type: " + this.keyType);
|
|
30691
|
+
return Field$1.prototype.resolve.call(this);
|
|
30692
|
+
};
|
|
30705
30693
|
|
|
30706
|
-
function
|
|
30707
|
-
if (
|
|
30708
|
-
|
|
30709
|
-
|
|
30710
|
-
var e = requireObject();
|
|
30711
|
-
((r.prototype = Object.create(e.prototype)).constructor = r).className = "Method";
|
|
30712
|
-
var t = requireUtil$1();
|
|
30713
|
-
function r(r, n, s, o, a, l, c, u, d) {
|
|
30714
|
-
if (t.isObject(a)) {
|
|
30715
|
-
c = a;
|
|
30716
|
-
a = l = undefined;
|
|
30717
|
-
} else if (t.isObject(l)) {
|
|
30718
|
-
c = l;
|
|
30719
|
-
l = undefined;
|
|
30720
|
-
}
|
|
30721
|
-
if (!(n === undefined || t.isString(n))) throw TypeError("type must be a string");
|
|
30722
|
-
if (!t.isString(s)) throw TypeError("requestType must be a string");
|
|
30723
|
-
if (!t.isString(o)) throw TypeError("responseType must be a string");
|
|
30724
|
-
e.call(this, r, c);
|
|
30725
|
-
this.type = n || "rpc";
|
|
30726
|
-
this.requestType = s;
|
|
30727
|
-
this.requestStream = a ? true : undefined;
|
|
30728
|
-
this.responseType = o;
|
|
30729
|
-
this.responseStream = l ? true : undefined;
|
|
30730
|
-
this.resolvedRequestType = null;
|
|
30731
|
-
this.resolvedResponseType = null;
|
|
30732
|
-
this.comment = u;
|
|
30733
|
-
this.parsedOptions = d;
|
|
30734
|
-
}
|
|
30735
|
-
r.fromJSON = function e(t, n) {
|
|
30736
|
-
return new r(t, n.type, n.requestType, n.responseType, n.requestStream, n.responseStream, n.options, n.comment, n.parsedOptions);
|
|
30737
|
-
};
|
|
30738
|
-
r.prototype.toJSON = function e(r) {
|
|
30739
|
-
var n = r ? Boolean(r.keepComments) : false;
|
|
30740
|
-
return t.toObject([ "type", this.type !== "rpc" && this.type || undefined, "requestType", this.requestType, "requestStream", this.requestStream, "responseType", this.responseType, "responseStream", this.responseStream, "options", this.options, "comment", n ? this.comment : undefined, "parsedOptions", this.parsedOptions ]);
|
|
30741
|
-
};
|
|
30742
|
-
r.prototype.resolve = function t() {
|
|
30743
|
-
if (this.resolved) return this;
|
|
30744
|
-
this.resolvedRequestType = this.parent.lookupType(this.requestType);
|
|
30745
|
-
this.resolvedResponseType = this.parent.lookupType(this.responseType);
|
|
30746
|
-
return e.prototype.resolve.call(this);
|
|
30694
|
+
MapField$1.d = function e(t, r, n) {
|
|
30695
|
+
if (typeof n === "function") n = util$7.decorateType(n).name; else if (n && typeof n === "object") n = util$7.decorateEnum(n).name;
|
|
30696
|
+
return function e(s, o) {
|
|
30697
|
+
util$7.decorateType(s.constructor).add(new MapField$1(o, t, r, n));
|
|
30747
30698
|
};
|
|
30748
|
-
|
|
30699
|
+
};
|
|
30700
|
+
|
|
30701
|
+
var method = Method$1;
|
|
30702
|
+
|
|
30703
|
+
var ReflectionObject$1 = requireObject();
|
|
30704
|
+
|
|
30705
|
+
((Method$1.prototype = Object.create(ReflectionObject$1.prototype)).constructor = Method$1).className = "Method";
|
|
30706
|
+
|
|
30707
|
+
var util$6 = requireUtil$1();
|
|
30708
|
+
|
|
30709
|
+
function Method$1(e, t, r, n, s, o, a, l, c) {
|
|
30710
|
+
if (util$6.isObject(s)) {
|
|
30711
|
+
a = s;
|
|
30712
|
+
s = o = undefined;
|
|
30713
|
+
} else if (util$6.isObject(o)) {
|
|
30714
|
+
a = o;
|
|
30715
|
+
o = undefined;
|
|
30716
|
+
}
|
|
30717
|
+
if (!(t === undefined || util$6.isString(t))) throw TypeError("type must be a string");
|
|
30718
|
+
if (!util$6.isString(r)) throw TypeError("requestType must be a string");
|
|
30719
|
+
if (!util$6.isString(n)) throw TypeError("responseType must be a string");
|
|
30720
|
+
ReflectionObject$1.call(this, e, a);
|
|
30721
|
+
this.type = t || "rpc";
|
|
30722
|
+
this.requestType = r;
|
|
30723
|
+
this.requestStream = s ? true : undefined;
|
|
30724
|
+
this.responseType = n;
|
|
30725
|
+
this.responseStream = o ? true : undefined;
|
|
30726
|
+
this.resolvedRequestType = null;
|
|
30727
|
+
this.resolvedResponseType = null;
|
|
30728
|
+
this.comment = l;
|
|
30729
|
+
this.parsedOptions = c;
|
|
30749
30730
|
}
|
|
30750
30731
|
|
|
30732
|
+
Method$1.fromJSON = function e(t, r) {
|
|
30733
|
+
return new Method$1(t, r.type, r.requestType, r.responseType, r.requestStream, r.responseStream, r.options, r.comment, r.parsedOptions);
|
|
30734
|
+
};
|
|
30735
|
+
|
|
30736
|
+
Method$1.prototype.toJSON = function e(t) {
|
|
30737
|
+
var r = t ? Boolean(t.keepComments) : false;
|
|
30738
|
+
return util$6.toObject([ "type", this.type !== "rpc" && this.type || undefined, "requestType", this.requestType, "requestStream", this.requestStream, "responseType", this.responseType, "responseStream", this.responseStream, "options", this.options, "comment", r ? this.comment : undefined, "parsedOptions", this.parsedOptions ]);
|
|
30739
|
+
};
|
|
30740
|
+
|
|
30741
|
+
Method$1.prototype.resolve = function e() {
|
|
30742
|
+
if (this.resolved) return this;
|
|
30743
|
+
this.resolvedRequestType = this.parent.lookupType(this.requestType);
|
|
30744
|
+
this.resolvedResponseType = this.parent.lookupType(this.responseType);
|
|
30745
|
+
return ReflectionObject$1.prototype.resolve.call(this);
|
|
30746
|
+
};
|
|
30747
|
+
|
|
30751
30748
|
var service;
|
|
30752
30749
|
|
|
30753
30750
|
var hasRequiredService;
|
|
@@ -30758,7 +30755,7 @@ function requireService() {
|
|
|
30758
30755
|
service = s;
|
|
30759
30756
|
var e = requireNamespace();
|
|
30760
30757
|
((s.prototype = Object.create(e.prototype)).constructor = s).className = "Service";
|
|
30761
|
-
var t =
|
|
30758
|
+
var t = method, r = requireUtil$1(), n = rpc;
|
|
30762
30759
|
function s(t, r) {
|
|
30763
30760
|
e.call(this, t, r);
|
|
30764
30761
|
this.methods = {};
|
|
@@ -31274,7 +31271,7 @@ function requireType() {
|
|
|
31274
31271
|
type = _;
|
|
31275
31272
|
var e = requireNamespace();
|
|
31276
31273
|
((_.prototype = Object.create(e.prototype)).constructor = _).className = "Type";
|
|
31277
|
-
var t = require_enum(), r = requireOneof(), n = requireField(), s =
|
|
31274
|
+
var t = require_enum(), r = requireOneof(), n = requireField(), s = mapfield, o = requireService(), a = message, l = reader, c = writer, u = requireUtil$1(), d = requireEncoder(), h = requireDecoder(), p = requireVerifier(), g = requireConverter(), m = wrappers;
|
|
31278
31275
|
function _(t, r) {
|
|
31279
31276
|
e.call(this, t, r);
|
|
31280
31277
|
this.fields = {};
|
|
@@ -31706,14 +31703,14 @@ function requireRoot() {
|
|
|
31706
31703
|
return root;
|
|
31707
31704
|
}
|
|
31708
31705
|
|
|
31709
|
-
util$
|
|
31706
|
+
util$8.exports;
|
|
31710
31707
|
|
|
31711
31708
|
var hasRequiredUtil$1;
|
|
31712
31709
|
|
|
31713
31710
|
function requireUtil$1() {
|
|
31714
|
-
if (hasRequiredUtil$1) return util$
|
|
31711
|
+
if (hasRequiredUtil$1) return util$8.exports;
|
|
31715
31712
|
hasRequiredUtil$1 = 1;
|
|
31716
|
-
var e = util$
|
|
31713
|
+
var e = util$8.exports = requireMinimal();
|
|
31717
31714
|
var t = roots;
|
|
31718
31715
|
var r, n;
|
|
31719
31716
|
e.codegen = requireCodegen();
|
|
@@ -31817,13 +31814,13 @@ function requireUtil$1() {
|
|
|
31817
31814
|
return t["decorated"] || (t["decorated"] = new (requireRoot()));
|
|
31818
31815
|
}
|
|
31819
31816
|
});
|
|
31820
|
-
return util$
|
|
31817
|
+
return util$8.exports;
|
|
31821
31818
|
}
|
|
31822
31819
|
|
|
31823
31820
|
var hasRequiredTypes;
|
|
31824
31821
|
|
|
31825
31822
|
function requireTypes() {
|
|
31826
|
-
if (hasRequiredTypes) return types$
|
|
31823
|
+
if (hasRequiredTypes) return types$2;
|
|
31827
31824
|
hasRequiredTypes = 1;
|
|
31828
31825
|
(function(e) {
|
|
31829
31826
|
var t = e;
|
|
@@ -31840,8 +31837,8 @@ function requireTypes() {
|
|
|
31840
31837
|
t.long = s([ 0, 0, 0, 1, 1 ], 7);
|
|
31841
31838
|
t.mapKey = s([ 0, 0, 0, 5, 5, 0, 0, 0, 1, 1, 0, 2 ], 2);
|
|
31842
31839
|
t.packed = s([ 1, 5, 0, 0, 0, 5, 5, 0, 0, 0, 1, 1, 0 ]);
|
|
31843
|
-
})(types$
|
|
31844
|
-
return types$
|
|
31840
|
+
})(types$2);
|
|
31841
|
+
return types$2;
|
|
31845
31842
|
}
|
|
31846
31843
|
|
|
31847
31844
|
var field;
|
|
@@ -32448,11 +32445,11 @@ protobuf$1.Field = requireField();
|
|
|
32448
32445
|
|
|
32449
32446
|
protobuf$1.OneOf = requireOneof();
|
|
32450
32447
|
|
|
32451
|
-
protobuf$1.MapField =
|
|
32448
|
+
protobuf$1.MapField = mapfield;
|
|
32452
32449
|
|
|
32453
32450
|
protobuf$1.Service = requireService();
|
|
32454
32451
|
|
|
32455
|
-
protobuf$1.Method =
|
|
32452
|
+
protobuf$1.Method = method;
|
|
32456
32453
|
|
|
32457
32454
|
protobuf$1.Message = message;
|
|
32458
32455
|
|
|
@@ -32562,13 +32559,13 @@ function tokenize$1(e, t) {
|
|
|
32562
32559
|
function _() {
|
|
32563
32560
|
if (l.length > 0) return l.shift();
|
|
32564
32561
|
if (c) return d();
|
|
32565
|
-
var o, a, _, E,
|
|
32562
|
+
var o, a, _, E, y, v = r === 0;
|
|
32566
32563
|
do {
|
|
32567
32564
|
if (r === n) return null;
|
|
32568
32565
|
o = false;
|
|
32569
32566
|
while (whitespaceRe.test(_ = h(r))) {
|
|
32570
32567
|
if (_ === "\n") {
|
|
32571
|
-
|
|
32568
|
+
v = true;
|
|
32572
32569
|
++s;
|
|
32573
32570
|
}
|
|
32574
32571
|
if (++r === n) return null;
|
|
@@ -32579,47 +32576,47 @@ function tokenize$1(e, t) {
|
|
|
32579
32576
|
}
|
|
32580
32577
|
if (h(r) === "/") {
|
|
32581
32578
|
if (!t) {
|
|
32582
|
-
|
|
32579
|
+
y = h(E = r + 1) === "/";
|
|
32583
32580
|
while (h(++r) !== "\n") {
|
|
32584
32581
|
if (r === n) {
|
|
32585
32582
|
return null;
|
|
32586
32583
|
}
|
|
32587
32584
|
}
|
|
32588
32585
|
++r;
|
|
32589
|
-
if (
|
|
32590
|
-
p(E, r - 1,
|
|
32591
|
-
|
|
32586
|
+
if (y) {
|
|
32587
|
+
p(E, r - 1, v);
|
|
32588
|
+
v = true;
|
|
32592
32589
|
}
|
|
32593
32590
|
++s;
|
|
32594
32591
|
o = true;
|
|
32595
32592
|
} else {
|
|
32596
32593
|
E = r;
|
|
32597
|
-
|
|
32594
|
+
y = false;
|
|
32598
32595
|
if (g(r - 1)) {
|
|
32599
|
-
|
|
32596
|
+
y = true;
|
|
32600
32597
|
do {
|
|
32601
32598
|
r = m(r);
|
|
32602
32599
|
if (r === n) {
|
|
32603
32600
|
break;
|
|
32604
32601
|
}
|
|
32605
32602
|
r++;
|
|
32606
|
-
if (!
|
|
32603
|
+
if (!v) {
|
|
32607
32604
|
break;
|
|
32608
32605
|
}
|
|
32609
32606
|
} while (g(r));
|
|
32610
32607
|
} else {
|
|
32611
32608
|
r = Math.min(n, m(r) + 1);
|
|
32612
32609
|
}
|
|
32613
|
-
if (
|
|
32614
|
-
p(E, r,
|
|
32615
|
-
|
|
32610
|
+
if (y) {
|
|
32611
|
+
p(E, r, v);
|
|
32612
|
+
v = true;
|
|
32616
32613
|
}
|
|
32617
32614
|
s++;
|
|
32618
32615
|
o = true;
|
|
32619
32616
|
}
|
|
32620
32617
|
} else if ((_ = h(r)) === "*") {
|
|
32621
32618
|
E = r + 1;
|
|
32622
|
-
|
|
32619
|
+
y = t || h(E) === "*";
|
|
32623
32620
|
do {
|
|
32624
32621
|
if (_ === "\n") {
|
|
32625
32622
|
++s;
|
|
@@ -32631,9 +32628,9 @@ function tokenize$1(e, t) {
|
|
|
32631
32628
|
_ = h(r);
|
|
32632
32629
|
} while (a !== "*" || _ !== "/");
|
|
32633
32630
|
++r;
|
|
32634
|
-
if (
|
|
32635
|
-
p(E, r - 2,
|
|
32636
|
-
|
|
32631
|
+
if (y) {
|
|
32632
|
+
p(E, r - 2, v);
|
|
32633
|
+
v = true;
|
|
32637
32634
|
}
|
|
32638
32635
|
o = true;
|
|
32639
32636
|
} else {
|
|
@@ -32652,7 +32649,7 @@ function tokenize$1(e, t) {
|
|
|
32652
32649
|
function E(e) {
|
|
32653
32650
|
l.push(e);
|
|
32654
32651
|
}
|
|
32655
|
-
function
|
|
32652
|
+
function y() {
|
|
32656
32653
|
if (!l.length) {
|
|
32657
32654
|
var e = _();
|
|
32658
32655
|
if (e === null) return null;
|
|
@@ -32660,8 +32657,8 @@ function tokenize$1(e, t) {
|
|
|
32660
32657
|
}
|
|
32661
32658
|
return l[0];
|
|
32662
32659
|
}
|
|
32663
|
-
function
|
|
32664
|
-
var r =
|
|
32660
|
+
function v(e, t) {
|
|
32661
|
+
var r = y(), n = r === e;
|
|
32665
32662
|
if (n) {
|
|
32666
32663
|
_();
|
|
32667
32664
|
return true;
|
|
@@ -32680,7 +32677,7 @@ function tokenize$1(e, t) {
|
|
|
32680
32677
|
}
|
|
32681
32678
|
} else {
|
|
32682
32679
|
if (o < e) {
|
|
32683
|
-
|
|
32680
|
+
y();
|
|
32684
32681
|
}
|
|
32685
32682
|
n = a[e];
|
|
32686
32683
|
delete a[e];
|
|
@@ -32692,9 +32689,9 @@ function tokenize$1(e, t) {
|
|
|
32692
32689
|
}
|
|
32693
32690
|
return Object.defineProperty({
|
|
32694
32691
|
next: _,
|
|
32695
|
-
peek:
|
|
32692
|
+
peek: y,
|
|
32696
32693
|
push: E,
|
|
32697
|
-
skip:
|
|
32694
|
+
skip: v,
|
|
32698
32695
|
cmnt: S
|
|
32699
32696
|
}, "line", {
|
|
32700
32697
|
get: function() {
|
|
@@ -32711,7 +32708,7 @@ parse$1.defaults = {
|
|
|
32711
32708
|
keepCase: false
|
|
32712
32709
|
};
|
|
32713
32710
|
|
|
32714
|
-
var tokenize = tokenize_1, Root = requireRoot(), Type = requireType(), Field = requireField(), MapField =
|
|
32711
|
+
var tokenize = tokenize_1, Root = requireRoot(), Type = requireType(), Field = requireField(), MapField = mapfield, OneOf = requireOneof(), Enum = require_enum(), Service$1 = requireService(), Method = method, ReflectionObject = requireObject(), types = requireTypes(), util$4 = requireUtil$1();
|
|
32715
32712
|
|
|
32716
32713
|
var base10Re = /^[1-9][0-9]*$/, base10NegRe = /^-?[1-9][0-9]*$/, base16Re = /^0[x][0-9a-fA-F]+$/, base16NegRe = /^-?0[x][0-9a-fA-F]+$/, base8Re = /^0[0-7]+$/, base8NegRe = /^-?0[0-7]+$/, numberRe = /^(?![eE])[0-9]*(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?$/, nameRe = /^[a-zA-Z_][a-zA-Z_0-9]*$/, typeRefRe = /^(?:\.?[a-zA-Z_][a-zA-Z_0-9]*)(?:\.[a-zA-Z_][a-zA-Z_0-9]*)*$/;
|
|
32717
32714
|
|
|
@@ -32726,16 +32723,16 @@ function parse$1(e, t, r) {
|
|
|
32726
32723
|
var d = true, h, p, g, m = "proto2";
|
|
32727
32724
|
var _ = t;
|
|
32728
32725
|
var E = [];
|
|
32729
|
-
var
|
|
32730
|
-
var
|
|
32726
|
+
var y = {};
|
|
32727
|
+
var v = r.keepCase ? function(e) {
|
|
32731
32728
|
return e;
|
|
32732
32729
|
} : util$4.camelCase;
|
|
32733
32730
|
function S() {
|
|
32734
32731
|
E.forEach(e => {
|
|
32735
32732
|
e._edition = m;
|
|
32736
|
-
Object.keys(
|
|
32733
|
+
Object.keys(y).forEach(t => {
|
|
32737
32734
|
if (e.getOption(t) !== undefined) return;
|
|
32738
|
-
e.setOption(t,
|
|
32735
|
+
e.setOption(t, y[t], true);
|
|
32739
32736
|
});
|
|
32740
32737
|
});
|
|
32741
32738
|
}
|
|
@@ -32805,7 +32802,7 @@ function parse$1(e, t, r) {
|
|
|
32805
32802
|
if (this.options === undefined) this.options = {};
|
|
32806
32803
|
this.options[e] = t;
|
|
32807
32804
|
};
|
|
32808
|
-
|
|
32805
|
+
B(a, function e(t) {
|
|
32809
32806
|
if (t === "option") {
|
|
32810
32807
|
q(a, t);
|
|
32811
32808
|
c(";");
|
|
@@ -32897,7 +32894,7 @@ function parse$1(e, t, r) {
|
|
|
32897
32894
|
if (!e.includes(m)) throw A(m, "edition");
|
|
32898
32895
|
c(";");
|
|
32899
32896
|
}
|
|
32900
|
-
function
|
|
32897
|
+
function $(e, t) {
|
|
32901
32898
|
switch (t) {
|
|
32902
32899
|
case "option":
|
|
32903
32900
|
q(e, t);
|
|
@@ -32922,7 +32919,7 @@ function parse$1(e, t, r) {
|
|
|
32922
32919
|
}
|
|
32923
32920
|
return false;
|
|
32924
32921
|
}
|
|
32925
|
-
function
|
|
32922
|
+
function B(e, t, r) {
|
|
32926
32923
|
var a = s.line;
|
|
32927
32924
|
if (e) {
|
|
32928
32925
|
if (typeof e.comment !== "string") {
|
|
@@ -32943,8 +32940,8 @@ function parse$1(e, t, r) {
|
|
|
32943
32940
|
function N(e, t) {
|
|
32944
32941
|
if (!nameRe.test(t = o())) throw A(t, "type name");
|
|
32945
32942
|
var r = new Type(t);
|
|
32946
|
-
|
|
32947
|
-
if (
|
|
32943
|
+
B(r, function e(t) {
|
|
32944
|
+
if ($(r, t)) return;
|
|
32948
32945
|
switch (t) {
|
|
32949
32946
|
case "map":
|
|
32950
32947
|
U(r);
|
|
@@ -33005,10 +33002,10 @@ function parse$1(e, t, r) {
|
|
|
33005
33002
|
if (!typeRefRe.test(n)) throw A(n, "type");
|
|
33006
33003
|
var s = o();
|
|
33007
33004
|
if (!nameRe.test(s)) throw A(s, "name");
|
|
33008
|
-
s =
|
|
33005
|
+
s = v(s);
|
|
33009
33006
|
c("=");
|
|
33010
33007
|
var a = new Field(s, T(o()), n, t, r);
|
|
33011
|
-
|
|
33008
|
+
B(a, function e(t) {
|
|
33012
33009
|
if (t === "option") {
|
|
33013
33010
|
q(a, t);
|
|
33014
33011
|
c(";");
|
|
@@ -33042,7 +33039,7 @@ function parse$1(e, t, r) {
|
|
|
33042
33039
|
a.group = true;
|
|
33043
33040
|
var l = new Field(n, s, r, t);
|
|
33044
33041
|
l.filename = parse$1.filename;
|
|
33045
|
-
|
|
33042
|
+
B(a, function e(t) {
|
|
33046
33043
|
switch (t) {
|
|
33047
33044
|
case "option":
|
|
33048
33045
|
q(a, t);
|
|
@@ -33091,8 +33088,8 @@ function parse$1(e, t, r) {
|
|
|
33091
33088
|
var n = o();
|
|
33092
33089
|
if (!nameRe.test(n)) throw A(n, "name");
|
|
33093
33090
|
c("=");
|
|
33094
|
-
var s = new MapField(
|
|
33095
|
-
|
|
33091
|
+
var s = new MapField(v(n), T(o()), t, r);
|
|
33092
|
+
B(s, function e(t) {
|
|
33096
33093
|
if (t === "option") {
|
|
33097
33094
|
q(s, t);
|
|
33098
33095
|
c(";");
|
|
@@ -33104,8 +33101,8 @@ function parse$1(e, t, r) {
|
|
|
33104
33101
|
}
|
|
33105
33102
|
function M(e, t) {
|
|
33106
33103
|
if (!nameRe.test(t = o())) throw A(t, "name");
|
|
33107
|
-
var r = new OneOf(
|
|
33108
|
-
|
|
33104
|
+
var r = new OneOf(v(t));
|
|
33105
|
+
B(r, function e(t) {
|
|
33109
33106
|
if (t === "option") {
|
|
33110
33107
|
q(r, t);
|
|
33111
33108
|
c(";");
|
|
@@ -33119,7 +33116,7 @@ function parse$1(e, t, r) {
|
|
|
33119
33116
|
function x(e, t) {
|
|
33120
33117
|
if (!nameRe.test(t = o())) throw A(t, "name");
|
|
33121
33118
|
var r = new Enum(t);
|
|
33122
|
-
|
|
33119
|
+
B(r, function e(t) {
|
|
33123
33120
|
switch (t) {
|
|
33124
33121
|
case "option":
|
|
33125
33122
|
q(r, t);
|
|
@@ -33155,7 +33152,7 @@ function parse$1(e, t, r) {
|
|
|
33155
33152
|
n.setParsedOption = function() {
|
|
33156
33153
|
return undefined;
|
|
33157
33154
|
};
|
|
33158
|
-
|
|
33155
|
+
B(n, function e(t) {
|
|
33159
33156
|
if (t === "option") {
|
|
33160
33157
|
q(n, t);
|
|
33161
33158
|
c(";");
|
|
@@ -33244,7 +33241,7 @@ function parse$1(e, t, r) {
|
|
|
33244
33241
|
}
|
|
33245
33242
|
function j(e, t, r) {
|
|
33246
33243
|
if (_ === e && /^features\./.test(t)) {
|
|
33247
|
-
|
|
33244
|
+
y[t] = r;
|
|
33248
33245
|
return;
|
|
33249
33246
|
}
|
|
33250
33247
|
if (e.setOption) e.setOption(t, r);
|
|
@@ -33264,8 +33261,8 @@ function parse$1(e, t, r) {
|
|
|
33264
33261
|
function K(e, t) {
|
|
33265
33262
|
if (!nameRe.test(t = o())) throw A(t, "service name");
|
|
33266
33263
|
var r = new Service$1(t);
|
|
33267
|
-
|
|
33268
|
-
if (
|
|
33264
|
+
B(r, function e(t) {
|
|
33265
|
+
if ($(r, t)) {
|
|
33269
33266
|
return;
|
|
33270
33267
|
}
|
|
33271
33268
|
if (t === "rpc") z(r, t); else throw A(t);
|
|
@@ -33293,7 +33290,7 @@ function parse$1(e, t, r) {
|
|
|
33293
33290
|
c(")");
|
|
33294
33291
|
var p = new Method(s, n, a, d, l, h);
|
|
33295
33292
|
p.comment = r;
|
|
33296
|
-
|
|
33293
|
+
B(p, function e(t) {
|
|
33297
33294
|
if (t === "option") {
|
|
33298
33295
|
q(p, t);
|
|
33299
33296
|
c(";");
|
|
@@ -33304,7 +33301,7 @@ function parse$1(e, t, r) {
|
|
|
33304
33301
|
function Y(e, t) {
|
|
33305
33302
|
if (!typeRefRe.test(t = o())) throw A(t, "reference");
|
|
33306
33303
|
var r = t;
|
|
33307
|
-
|
|
33304
|
+
B(null, function t(n) {
|
|
33308
33305
|
switch (n) {
|
|
33309
33306
|
case "required":
|
|
33310
33307
|
case "repeated":
|
|
@@ -33356,7 +33353,7 @@ function parse$1(e, t, r) {
|
|
|
33356
33353
|
break;
|
|
33357
33354
|
|
|
33358
33355
|
default:
|
|
33359
|
-
if (
|
|
33356
|
+
if ($(_, V)) {
|
|
33360
33357
|
d = false;
|
|
33361
33358
|
continue;
|
|
33362
33359
|
}
|
|
@@ -35101,10 +35098,10 @@ descriptor.exports;
|
|
|
35101
35098
|
name: this.name
|
|
35102
35099
|
});
|
|
35103
35100
|
};
|
|
35104
|
-
var
|
|
35101
|
+
var y = 0;
|
|
35105
35102
|
d.fromDescriptor = function e(r, n, s) {
|
|
35106
35103
|
if (typeof r.length === "number") r = t.ServiceDescriptorProto.decode(r);
|
|
35107
|
-
var o = new d(r.name && r.name.length ? r.name : "Service" +
|
|
35104
|
+
var o = new d(r.name && r.name.length ? r.name : "Service" + y++, w(r.options, t.ServiceOptions));
|
|
35108
35105
|
if (!s) o._edition = n;
|
|
35109
35106
|
if (r.method) for (var a = 0; a < r.method.length; ++a) o.add(h.fromDescriptor(r.method[a]));
|
|
35110
35107
|
return o;
|
|
@@ -35118,10 +35115,10 @@ descriptor.exports;
|
|
|
35118
35115
|
options: T(this.options, t.ServiceOptions)
|
|
35119
35116
|
});
|
|
35120
35117
|
};
|
|
35121
|
-
var
|
|
35118
|
+
var v = 0;
|
|
35122
35119
|
h.fromDescriptor = function e(r) {
|
|
35123
35120
|
if (typeof r.length === "number") r = t.MethodDescriptorProto.decode(r);
|
|
35124
|
-
return new h(r.name && r.name.length ? r.name : "Method" +
|
|
35121
|
+
return new h(r.name && r.name.length ? r.name : "Method" + v++, "rpc", r.inputType, r.outputType, Boolean(r.clientStreaming), Boolean(r.serverStreaming), w(r.options, t.MethodOptions));
|
|
35125
35122
|
};
|
|
35126
35123
|
h.prototype.toDescriptor = function e() {
|
|
35127
35124
|
return t.MethodDescriptorProto.create({
|
|
@@ -35841,8 +35838,8 @@ umd.exports;
|
|
|
35841
35838
|
if (e < 0) return A;
|
|
35842
35839
|
if (e >= E) return T;
|
|
35843
35840
|
} else {
|
|
35844
|
-
if (e <= -
|
|
35845
|
-
if (e + 1 >=
|
|
35841
|
+
if (e <= -y) return R;
|
|
35842
|
+
if (e + 1 >= y) return I;
|
|
35846
35843
|
}
|
|
35847
35844
|
if (e < 0) return c(-e, t).neg();
|
|
35848
35845
|
return u(e % _ | 0, e / _ | 0, t);
|
|
@@ -35894,8 +35891,8 @@ umd.exports;
|
|
|
35894
35891
|
var m = 1 << 24;
|
|
35895
35892
|
var _ = g * g;
|
|
35896
35893
|
var E = _ * _;
|
|
35897
|
-
var
|
|
35898
|
-
var
|
|
35894
|
+
var y = E / 2;
|
|
35895
|
+
var v = l(m);
|
|
35899
35896
|
var S = l(0);
|
|
35900
35897
|
r.ZERO = S;
|
|
35901
35898
|
var A = l(0, true);
|
|
@@ -36067,7 +36064,7 @@ umd.exports;
|
|
|
36067
36064
|
if (this.isNegative()) {
|
|
36068
36065
|
if (r.isNegative()) return this.neg().mul(r.neg()); else return this.neg().mul(r).neg();
|
|
36069
36066
|
} else if (r.isNegative()) return this.mul(r.neg()).neg();
|
|
36070
|
-
if (this.lt(
|
|
36067
|
+
if (this.lt(v) && r.lt(v)) return c(this.toNumber() * r.toNumber(), this.unsigned);
|
|
36071
36068
|
var o = this.high >>> 16;
|
|
36072
36069
|
var a = this.high & 65535;
|
|
36073
36070
|
var l = this.low >>> 16;
|
|
@@ -36076,28 +36073,28 @@ umd.exports;
|
|
|
36076
36073
|
var g = r.high & 65535;
|
|
36077
36074
|
var m = r.low >>> 16;
|
|
36078
36075
|
var _ = r.low & 65535;
|
|
36079
|
-
var E = 0,
|
|
36076
|
+
var E = 0, y = 0, b = 0, C = 0;
|
|
36080
36077
|
C += d * _;
|
|
36081
36078
|
b += C >>> 16;
|
|
36082
36079
|
C &= 65535;
|
|
36083
36080
|
b += l * _;
|
|
36084
|
-
|
|
36081
|
+
y += b >>> 16;
|
|
36085
36082
|
b &= 65535;
|
|
36086
36083
|
b += d * m;
|
|
36087
|
-
|
|
36084
|
+
y += b >>> 16;
|
|
36088
36085
|
b &= 65535;
|
|
36089
|
-
|
|
36090
|
-
E +=
|
|
36091
|
-
|
|
36092
|
-
|
|
36093
|
-
E +=
|
|
36094
|
-
|
|
36095
|
-
|
|
36096
|
-
E +=
|
|
36097
|
-
|
|
36086
|
+
y += a * _;
|
|
36087
|
+
E += y >>> 16;
|
|
36088
|
+
y &= 65535;
|
|
36089
|
+
y += l * m;
|
|
36090
|
+
E += y >>> 16;
|
|
36091
|
+
y &= 65535;
|
|
36092
|
+
y += d * g;
|
|
36093
|
+
E += y >>> 16;
|
|
36094
|
+
y &= 65535;
|
|
36098
36095
|
E += o * _ + a * m + l * g + d * h;
|
|
36099
36096
|
E &= 65535;
|
|
36100
|
-
return u(b << 16 | C, E << 16 |
|
|
36097
|
+
return u(b << 16 | C, E << 16 | y, this.unsigned);
|
|
36101
36098
|
};
|
|
36102
36099
|
k.mul = k.multiply;
|
|
36103
36100
|
k.divide = function e(r) {
|
|
@@ -36386,19 +36383,19 @@ function requireSrc() {
|
|
|
36386
36383
|
responseSerialize: m(a),
|
|
36387
36384
|
responseDeserialize: g(a, n),
|
|
36388
36385
|
originalName: t(e.name),
|
|
36389
|
-
requestType:
|
|
36390
|
-
responseType:
|
|
36386
|
+
requestType: v(o, n, s),
|
|
36387
|
+
responseType: v(a, n, s),
|
|
36391
36388
|
options: _(e.parsedOptions)
|
|
36392
36389
|
};
|
|
36393
36390
|
}
|
|
36394
|
-
function
|
|
36391
|
+
function y(e, t, r, n) {
|
|
36395
36392
|
const s = {};
|
|
36396
36393
|
for (const o of e.methodsArray) {
|
|
36397
36394
|
s[o.name] = E(o, t, r, n);
|
|
36398
36395
|
}
|
|
36399
36396
|
return s;
|
|
36400
36397
|
}
|
|
36401
|
-
function
|
|
36398
|
+
function v(e, t, r) {
|
|
36402
36399
|
const n = e.toDescriptor("proto3");
|
|
36403
36400
|
return {
|
|
36404
36401
|
format: "Protocol Buffer 3 DescriptorProto",
|
|
@@ -36418,9 +36415,9 @@ function requireSrc() {
|
|
|
36418
36415
|
}
|
|
36419
36416
|
function A(e, t, n, s) {
|
|
36420
36417
|
if (e instanceof r.Service) {
|
|
36421
|
-
return
|
|
36418
|
+
return y(e, t, n, s);
|
|
36422
36419
|
} else if (e instanceof r.Type) {
|
|
36423
|
-
return
|
|
36420
|
+
return v(e, n, s);
|
|
36424
36421
|
} else if (e instanceof r.Enum) {
|
|
36425
36422
|
return S(e, s);
|
|
36426
36423
|
} else {
|
|
@@ -36681,7 +36678,7 @@ function requireChannelz() {
|
|
|
36681
36678
|
const t = Number.parseInt(e, 16);
|
|
36682
36679
|
return [ t / 256 | 0, t % 256 ];
|
|
36683
36680
|
}
|
|
36684
|
-
function
|
|
36681
|
+
function y(e) {
|
|
36685
36682
|
if (e === "") {
|
|
36686
36683
|
return [];
|
|
36687
36684
|
}
|
|
@@ -36689,7 +36686,7 @@ function requireChannelz() {
|
|
|
36689
36686
|
const r = [];
|
|
36690
36687
|
return r.concat(...t);
|
|
36691
36688
|
}
|
|
36692
|
-
function
|
|
36689
|
+
function v(t) {
|
|
36693
36690
|
return (0, e.isIPv6)(t) && t.toLowerCase().startsWith("::ffff:") && (0, e.isIPv4)(t.substring(7));
|
|
36694
36691
|
}
|
|
36695
36692
|
function S(e) {
|
|
@@ -36698,7 +36695,7 @@ function requireChannelz() {
|
|
|
36698
36695
|
function A(t) {
|
|
36699
36696
|
if ((0, e.isIPv4)(t)) {
|
|
36700
36697
|
return S(t);
|
|
36701
|
-
} else if (
|
|
36698
|
+
} else if (v(t)) {
|
|
36702
36699
|
return S(t.substring(7));
|
|
36703
36700
|
} else if ((0, e.isIPv6)(t)) {
|
|
36704
36701
|
let e;
|
|
@@ -36711,8 +36708,8 @@ function requireChannelz() {
|
|
|
36711
36708
|
e = t.substring(0, n);
|
|
36712
36709
|
r = t.substring(n + 2);
|
|
36713
36710
|
}
|
|
36714
|
-
const s = Buffer.from(
|
|
36715
|
-
const o = Buffer.from(
|
|
36711
|
+
const s = Buffer.from(y(e));
|
|
36712
|
+
const o = Buffer.from(y(r));
|
|
36716
36713
|
const a = Buffer.alloc(16 - s.length - o.length, 0);
|
|
36717
36714
|
return Buffer.concat([ s, a, o ]);
|
|
36718
36715
|
} else {
|
|
@@ -36894,7 +36891,7 @@ function requireChannelz() {
|
|
|
36894
36891
|
subchannel: l
|
|
36895
36892
|
});
|
|
36896
36893
|
}
|
|
36897
|
-
function
|
|
36894
|
+
function $(e) {
|
|
36898
36895
|
var t;
|
|
36899
36896
|
if ((0, s.isTcpSubchannelAddress)(e)) {
|
|
36900
36897
|
return {
|
|
@@ -36913,7 +36910,7 @@ function requireChannelz() {
|
|
|
36913
36910
|
};
|
|
36914
36911
|
}
|
|
36915
36912
|
}
|
|
36916
|
-
function
|
|
36913
|
+
function B(e, t) {
|
|
36917
36914
|
var r, s, o, a, l;
|
|
36918
36915
|
const c = parseInt(e.request.socket_id, 10);
|
|
36919
36916
|
const u = g["socket"].getElementByKey(c);
|
|
@@ -36937,8 +36934,8 @@ function requireChannelz() {
|
|
|
36937
36934
|
} : null;
|
|
36938
36935
|
const m = {
|
|
36939
36936
|
ref: d(u.ref),
|
|
36940
|
-
local: h.localAddress ?
|
|
36941
|
-
remote: h.remoteAddress ?
|
|
36937
|
+
local: h.localAddress ? $(h.localAddress) : null,
|
|
36938
|
+
remote: h.remoteAddress ? $(h.remoteAddress) : null,
|
|
36942
36939
|
remote_name: (l = h.remoteName) !== null && l !== void 0 ? l : undefined,
|
|
36943
36940
|
security: p,
|
|
36944
36941
|
data: {
|
|
@@ -36995,7 +36992,7 @@ function requireChannelz() {
|
|
|
36995
36992
|
GetServer: k,
|
|
36996
36993
|
GetServers: P,
|
|
36997
36994
|
GetSubchannel: O,
|
|
36998
|
-
GetSocket:
|
|
36995
|
+
GetSocket: B,
|
|
36999
36996
|
GetServerSockets: N
|
|
37000
36997
|
};
|
|
37001
36998
|
}
|
|
@@ -39121,7 +39118,7 @@ function requireTransport() {
|
|
|
39121
39118
|
const p = "transport";
|
|
39122
39119
|
const g = "transport_flowctrl";
|
|
39123
39120
|
const m = require$$12.version;
|
|
39124
|
-
const {HTTP2_HEADER_AUTHORITY: _, HTTP2_HEADER_CONTENT_TYPE: E, HTTP2_HEADER_METHOD:
|
|
39121
|
+
const {HTTP2_HEADER_AUTHORITY: _, HTTP2_HEADER_CONTENT_TYPE: E, HTTP2_HEADER_METHOD: y, HTTP2_HEADER_PATH: v, HTTP2_HEADER_TE: S, HTTP2_HEADER_USER_AGENT: A} = e.constants;
|
|
39125
39122
|
const b = 2e4;
|
|
39126
39123
|
const C = Buffer.from("too_many_pings", "ascii");
|
|
39127
39124
|
class Http2Transport {
|
|
@@ -39365,8 +39362,8 @@ function requireTransport() {
|
|
|
39365
39362
|
o[_] = t;
|
|
39366
39363
|
o[A] = this.userAgent;
|
|
39367
39364
|
o[E] = "application/grpc";
|
|
39368
|
-
o[
|
|
39369
|
-
o[
|
|
39365
|
+
o[y] = "POST";
|
|
39366
|
+
o[v] = r;
|
|
39370
39367
|
o[S] = "trailers";
|
|
39371
39368
|
let a;
|
|
39372
39369
|
try {
|
|
@@ -39470,16 +39467,16 @@ function requireTransport() {
|
|
|
39470
39467
|
return new Promise((s, o) => {
|
|
39471
39468
|
var l, u, d, h, p, g, m, _;
|
|
39472
39469
|
let E = null;
|
|
39473
|
-
let
|
|
39470
|
+
let y = this.channelTarget;
|
|
39474
39471
|
if ("grpc.http_connect_target" in n) {
|
|
39475
39472
|
const e = (0, c.parseUri)(n["grpc.http_connect_target"]);
|
|
39476
39473
|
if (e) {
|
|
39477
|
-
|
|
39474
|
+
y = e;
|
|
39478
39475
|
E = (0, c.uriToString)(e);
|
|
39479
39476
|
}
|
|
39480
39477
|
}
|
|
39481
|
-
const
|
|
39482
|
-
const S = (0, a.getDefaultAuthority)(
|
|
39478
|
+
const v = t.secure ? "https" : "http";
|
|
39479
|
+
const S = (0, a.getDefaultAuthority)(y);
|
|
39483
39480
|
const A = () => {
|
|
39484
39481
|
var e;
|
|
39485
39482
|
(e = this.session) === null || e === void 0 ? void 0 : e.destroy();
|
|
@@ -39509,7 +39506,7 @@ function requireTransport() {
|
|
|
39509
39506
|
maxSendHeaderBlockLength: Number.MAX_SAFE_INTEGER,
|
|
39510
39507
|
maxSessionMemory: (p = n["grpc-node.max_session_memory"]) !== null && p !== void 0 ? p : Number.MAX_SAFE_INTEGER
|
|
39511
39508
|
};
|
|
39512
|
-
const w = e.connect(`${
|
|
39509
|
+
const w = e.connect(`${v}://${S}`, C);
|
|
39513
39510
|
const I = (_ = (m = (g = e.getDefaultSettings) === null || g === void 0 ? void 0 : g.call(e)) === null || m === void 0 ? void 0 : m.initialWindowSize) !== null && _ !== void 0 ? _ : 65535;
|
|
39514
39511
|
const T = n["grpc-node.flow_control_window"];
|
|
39515
39512
|
this.session = w;
|
|
@@ -41017,8 +41014,8 @@ function requireInternalChannel() {
|
|
|
41017
41014
|
const m = requireChannelz();
|
|
41018
41015
|
const _ = loadBalancingCall;
|
|
41019
41016
|
const E = deadline;
|
|
41020
|
-
const
|
|
41021
|
-
const
|
|
41017
|
+
const y = resolvingCall;
|
|
41018
|
+
const v = callNumber;
|
|
41022
41019
|
const S = controlPlaneStatus;
|
|
41023
41020
|
const A = retryingCall;
|
|
41024
41021
|
const b = requireSubchannelInterface();
|
|
@@ -41090,7 +41087,7 @@ function requireInternalChannel() {
|
|
|
41090
41087
|
}
|
|
41091
41088
|
class InternalChannel {
|
|
41092
41089
|
constructor(o, _, E) {
|
|
41093
|
-
var
|
|
41090
|
+
var y, v, b, C, P, O;
|
|
41094
41091
|
this.credentials = _;
|
|
41095
41092
|
this.options = E;
|
|
41096
41093
|
this.connectivityState = g.ConnectivityState.IDLE;
|
|
@@ -41118,12 +41115,12 @@ function requireInternalChannel() {
|
|
|
41118
41115
|
}
|
|
41119
41116
|
}
|
|
41120
41117
|
this.channelzInfoTracker = new ChannelzInfoTracker(o);
|
|
41121
|
-
const
|
|
41122
|
-
if (
|
|
41118
|
+
const $ = (0, p.parseUri)(o);
|
|
41119
|
+
if ($ === null) {
|
|
41123
41120
|
throw new Error(`Could not parse target name "${o}"`);
|
|
41124
41121
|
}
|
|
41125
|
-
const
|
|
41126
|
-
if (
|
|
41122
|
+
const B = (0, u.mapUriDefaultScheme)($);
|
|
41123
|
+
if (B === null) {
|
|
41127
41124
|
throw new Error(`Could not find a default scheme for target name "${o}"`);
|
|
41128
41125
|
}
|
|
41129
41126
|
if (this.options["grpc.enable_channelz"] === 0) {
|
|
@@ -41136,13 +41133,13 @@ function requireInternalChannel() {
|
|
|
41136
41133
|
if (this.options["grpc.default_authority"]) {
|
|
41137
41134
|
this.defaultAuthority = this.options["grpc.default_authority"];
|
|
41138
41135
|
} else {
|
|
41139
|
-
this.defaultAuthority = (0, u.getDefaultAuthority)(
|
|
41136
|
+
this.defaultAuthority = (0, u.getDefaultAuthority)(B);
|
|
41140
41137
|
}
|
|
41141
|
-
const N = (0, h.mapProxyName)(
|
|
41138
|
+
const N = (0, h.mapProxyName)(B, E);
|
|
41142
41139
|
this.target = N.target;
|
|
41143
41140
|
this.options = Object.assign({}, this.options, N.extraOptions);
|
|
41144
|
-
this.subchannelPool = (0, n.getSubchannelPool)(((
|
|
41145
|
-
this.retryBufferTracker = new A.MessageBufferTracker((
|
|
41141
|
+
this.subchannelPool = (0, n.getSubchannelPool)(((y = this.options["grpc.use_local_subchannel_pool"]) !== null && y !== void 0 ? y : 0) === 0);
|
|
41142
|
+
this.retryBufferTracker = new A.MessageBufferTracker((v = this.options["grpc.retry_buffer_size"]) !== null && v !== void 0 ? v : R, (b = this.options["grpc.per_rpc_retry_buffer_size"]) !== null && b !== void 0 ? b : k);
|
|
41146
41143
|
this.keepaliveTime = (C = this.options["grpc.keepalive_time_ms"]) !== null && C !== void 0 ? C : -1;
|
|
41147
41144
|
this.idleTimeoutMs = Math.max((P = this.options["grpc.client_idle_timeout_ms"]) !== null && P !== void 0 ? P : I, w);
|
|
41148
41145
|
const D = {
|
|
@@ -41393,17 +41390,17 @@ function requireInternalChannel() {
|
|
|
41393
41390
|
this.maybeStartIdleTimer();
|
|
41394
41391
|
}
|
|
41395
41392
|
createLoadBalancingCall(e, t, r, n, s) {
|
|
41396
|
-
const o = (0,
|
|
41393
|
+
const o = (0, v.getNextCallNumber)();
|
|
41397
41394
|
this.trace("createLoadBalancingCall [" + o + '] method="' + t + '"');
|
|
41398
41395
|
return new _.LoadBalancingCall(this, e, t, r, n, s, o);
|
|
41399
41396
|
}
|
|
41400
41397
|
createRetryingCall(e, t, r, n, s) {
|
|
41401
|
-
const o = (0,
|
|
41398
|
+
const o = (0, v.getNextCallNumber)();
|
|
41402
41399
|
this.trace("createRetryingCall [" + o + '] method="' + t + '"');
|
|
41403
41400
|
return new A.RetryingCall(this, e, t, r, n, s, o, this.retryBufferTracker, T.get(this.getTarget()));
|
|
41404
41401
|
}
|
|
41405
41402
|
createResolvingCall(e, t, r, n, s) {
|
|
41406
|
-
const o = (0,
|
|
41403
|
+
const o = (0, v.getNextCallNumber)();
|
|
41407
41404
|
this.trace("createResolvingCall [" + o + '] method="' + e + '", deadline=' + (0,
|
|
41408
41405
|
E.deadlineToString)(t));
|
|
41409
41406
|
const l = {
|
|
@@ -41412,7 +41409,7 @@ function requireInternalChannel() {
|
|
|
41412
41409
|
host: r !== null && r !== void 0 ? r : this.defaultAuthority,
|
|
41413
41410
|
parentCall: n
|
|
41414
41411
|
};
|
|
41415
|
-
const c = new
|
|
41412
|
+
const c = new y.ResolvingCall(this, e, l, this.filterStackFactory.clone(), o);
|
|
41416
41413
|
this.onCallStart();
|
|
41417
41414
|
c.addStatusWatcher(e => {
|
|
41418
41415
|
this.onCallEnd(e);
|
|
@@ -42719,8 +42716,8 @@ function requireServerInterceptors() {
|
|
|
42719
42716
|
const m = "grpc-accept-encoding";
|
|
42720
42717
|
const _ = "grpc-encoding";
|
|
42721
42718
|
const E = "grpc-message";
|
|
42722
|
-
const
|
|
42723
|
-
const
|
|
42719
|
+
const y = "grpc-status";
|
|
42720
|
+
const v = "grpc-timeout";
|
|
42724
42721
|
const S = /(\d{1,8})\s*([HMSmun])/;
|
|
42725
42722
|
const A = {
|
|
42726
42723
|
H: 36e5,
|
|
@@ -42792,25 +42789,25 @@ function requireServerInterceptors() {
|
|
|
42792
42789
|
}
|
|
42793
42790
|
this.host = (g = s[":authority"]) !== null && g !== void 0 ? g : s.host;
|
|
42794
42791
|
this.decoder = new o.StreamDecoder(this.maxReceiveMessageSize);
|
|
42795
|
-
const
|
|
42792
|
+
const y = e.Metadata.fromHttp2Headers(s);
|
|
42796
42793
|
if (a.isTracerEnabled(u)) {
|
|
42797
|
-
d("Request to " + this.handler.path + " received headers " + JSON.stringify(
|
|
42794
|
+
d("Request to " + this.handler.path + " received headers " + JSON.stringify(y.toJSON()));
|
|
42798
42795
|
}
|
|
42799
|
-
const S =
|
|
42796
|
+
const S = y.get(v);
|
|
42800
42797
|
if (S.length > 0) {
|
|
42801
42798
|
this.handleTimeoutHeader(S[0]);
|
|
42802
42799
|
}
|
|
42803
|
-
const A =
|
|
42800
|
+
const A = y.get(_);
|
|
42804
42801
|
if (A.length > 0) {
|
|
42805
42802
|
this.incomingEncoding = A[0];
|
|
42806
42803
|
}
|
|
42807
|
-
|
|
42808
|
-
|
|
42809
|
-
|
|
42810
|
-
|
|
42811
|
-
|
|
42812
|
-
|
|
42813
|
-
this.metadata =
|
|
42804
|
+
y.remove(v);
|
|
42805
|
+
y.remove(_);
|
|
42806
|
+
y.remove(m);
|
|
42807
|
+
y.remove(r.constants.HTTP2_HEADER_ACCEPT_ENCODING);
|
|
42808
|
+
y.remove(r.constants.HTTP2_HEADER_TE);
|
|
42809
|
+
y.remove(r.constants.HTTP2_HEADER_CONTENT_TYPE);
|
|
42810
|
+
this.metadata = y;
|
|
42814
42811
|
const b = (E = n.session) === null || E === void 0 ? void 0 : E.socket;
|
|
42815
42812
|
this.connectionInfo = {
|
|
42816
42813
|
localAddress: b === null || b === void 0 ? void 0 : b.localAddress,
|
|
@@ -42825,7 +42822,7 @@ function requireServerInterceptors() {
|
|
|
42825
42822
|
if (r === null) {
|
|
42826
42823
|
const r = {
|
|
42827
42824
|
code: t.Status.INTERNAL,
|
|
42828
|
-
details: `Invalid ${
|
|
42825
|
+
details: `Invalid ${v} value "${e}"`,
|
|
42829
42826
|
metadata: null
|
|
42830
42827
|
};
|
|
42831
42828
|
process.nextTick(() => {
|
|
@@ -43071,7 +43068,7 @@ function requireServerInterceptors() {
|
|
|
43071
43068
|
this.callEventTracker.onCallEnd(r);
|
|
43072
43069
|
}
|
|
43073
43070
|
const e = Object.assign({
|
|
43074
|
-
[
|
|
43071
|
+
[y]: r.code,
|
|
43075
43072
|
[E]: encodeURI(r.details)
|
|
43076
43073
|
}, a.toHttp2Headers());
|
|
43077
43074
|
this.stream.sendTrailers(e);
|
|
@@ -43088,7 +43085,7 @@ function requireServerInterceptors() {
|
|
|
43088
43085
|
this.callEventTracker.onCallEnd(r);
|
|
43089
43086
|
}
|
|
43090
43087
|
const e = Object.assign(Object.assign({
|
|
43091
|
-
[
|
|
43088
|
+
[y]: r.code,
|
|
43092
43089
|
[E]: encodeURI(r.details)
|
|
43093
43090
|
}, C), a.toHttp2Headers());
|
|
43094
43091
|
this.stream.respond(e, {
|
|
@@ -44290,7 +44287,7 @@ let Server = (() => {
|
|
|
44290
44287
|
};
|
|
44291
44288
|
const _ = () => !t.destroyed && this.keepaliveTimeMs < KEEPALIVE_MAX_TIME_MS && this.keepaliveTimeMs > 0;
|
|
44292
44289
|
let E;
|
|
44293
|
-
const
|
|
44290
|
+
const y = () => {
|
|
44294
44291
|
var e;
|
|
44295
44292
|
if (!_()) {
|
|
44296
44293
|
return;
|
|
@@ -44319,7 +44316,7 @@ let Server = (() => {
|
|
|
44319
44316
|
t.close();
|
|
44320
44317
|
} else {
|
|
44321
44318
|
this.keepaliveTrace("Received ping response");
|
|
44322
|
-
|
|
44319
|
+
y();
|
|
44323
44320
|
}
|
|
44324
44321
|
});
|
|
44325
44322
|
if (!e) {
|
|
@@ -44345,7 +44342,7 @@ let Server = (() => {
|
|
|
44345
44342
|
}, this.keepaliveTimeoutMs);
|
|
44346
44343
|
(e = h.unref) === null || e === void 0 ? void 0 : e.call(h);
|
|
44347
44344
|
};
|
|
44348
|
-
|
|
44345
|
+
y();
|
|
44349
44346
|
t.on("close", () => {
|
|
44350
44347
|
var r;
|
|
44351
44348
|
if (!p) {
|
|
@@ -44689,7 +44686,7 @@ function requireLoadBalancerPickFirst() {
|
|
|
44689
44686
|
});
|
|
44690
44687
|
loadBalancerPickFirst.LeafLoadBalancer = loadBalancerPickFirst.PickFirstLoadBalancer = loadBalancerPickFirst.PickFirstLoadBalancingConfig = void 0;
|
|
44691
44688
|
loadBalancerPickFirst.shuffled = g;
|
|
44692
|
-
loadBalancerPickFirst.setup =
|
|
44689
|
+
loadBalancerPickFirst.setup = y;
|
|
44693
44690
|
const e = requireLoadBalancer();
|
|
44694
44691
|
const t = connectivityState;
|
|
44695
44692
|
const r = requirePicker();
|
|
@@ -45069,7 +45066,7 @@ function requireLoadBalancerPickFirst() {
|
|
|
45069
45066
|
}
|
|
45070
45067
|
}
|
|
45071
45068
|
loadBalancerPickFirst.LeafLoadBalancer = LeafLoadBalancer;
|
|
45072
|
-
function
|
|
45069
|
+
function y() {
|
|
45073
45070
|
(0, e.registerLoadBalancerType)(h, PickFirstLoadBalancer, PickFirstLoadBalancingConfig);
|
|
45074
45071
|
(0, e.registerDefaultLoadBalancerType)(h);
|
|
45075
45072
|
}
|
|
@@ -45418,18 +45415,18 @@ function requireExperimental() {
|
|
|
45418
45415
|
return E.createCertificateProviderServerCredentials;
|
|
45419
45416
|
}
|
|
45420
45417
|
});
|
|
45421
|
-
var
|
|
45418
|
+
var y = requireCertificateProvider();
|
|
45422
45419
|
Object.defineProperty(e, "FileWatcherCertificateProvider", {
|
|
45423
45420
|
enumerable: true,
|
|
45424
45421
|
get: function() {
|
|
45425
|
-
return
|
|
45422
|
+
return y.FileWatcherCertificateProvider;
|
|
45426
45423
|
}
|
|
45427
45424
|
});
|
|
45428
|
-
var
|
|
45425
|
+
var v = channelCredentials;
|
|
45429
45426
|
Object.defineProperty(e, "createCertificateProviderChannelCredentials", {
|
|
45430
45427
|
enumerable: true,
|
|
45431
45428
|
get: function() {
|
|
45432
|
-
return
|
|
45429
|
+
return v.createCertificateProviderChannelCredentials;
|
|
45433
45430
|
}
|
|
45434
45431
|
});
|
|
45435
45432
|
var S = requireInternalChannel();
|
|
@@ -45804,13 +45801,13 @@ function requireLoadBalancerOutlierDetection() {
|
|
|
45804
45801
|
minimum_hosts: 5,
|
|
45805
45802
|
request_volume: 50
|
|
45806
45803
|
};
|
|
45807
|
-
function
|
|
45804
|
+
function y(e, t, r, n) {
|
|
45808
45805
|
if (t in e && e[t] !== undefined && typeof e[t] !== r) {
|
|
45809
45806
|
const s = n ? `${n}.${t}` : t;
|
|
45810
45807
|
throw new Error(`outlier detection config ${s} parse error: expected ${r}, got ${typeof e[t]}`);
|
|
45811
45808
|
}
|
|
45812
45809
|
}
|
|
45813
|
-
function
|
|
45810
|
+
function v(e, t, r) {
|
|
45814
45811
|
const s = t;
|
|
45815
45812
|
if (t in e && e[t] !== undefined) {
|
|
45816
45813
|
if (!(0, n.isDuration)(e[t])) {
|
|
@@ -45823,7 +45820,7 @@ function requireLoadBalancerOutlierDetection() {
|
|
|
45823
45820
|
}
|
|
45824
45821
|
function S(e, t, r) {
|
|
45825
45822
|
const n = r ? `${r}.${t}` : t;
|
|
45826
|
-
|
|
45823
|
+
y(e, t, "number", r);
|
|
45827
45824
|
if (t in e && e[t] !== undefined && !(e[t] >= 0 && e[t] <= 100)) {
|
|
45828
45825
|
throw new Error(`outlier detection config ${n} parse error: value out of range for percentage (0-100)`);
|
|
45829
45826
|
}
|
|
@@ -45881,18 +45878,18 @@ function requireLoadBalancerOutlierDetection() {
|
|
|
45881
45878
|
}
|
|
45882
45879
|
static createFromJson(e) {
|
|
45883
45880
|
var t;
|
|
45884
|
-
|
|
45885
|
-
|
|
45886
|
-
|
|
45881
|
+
v(e, "interval");
|
|
45882
|
+
v(e, "base_ejection_time");
|
|
45883
|
+
v(e, "max_ejection_time");
|
|
45887
45884
|
S(e, "max_ejection_percent");
|
|
45888
45885
|
if ("success_rate_ejection" in e && e.success_rate_ejection !== undefined) {
|
|
45889
45886
|
if (typeof e.success_rate_ejection !== "object") {
|
|
45890
45887
|
throw new Error("outlier detection config success_rate_ejection must be an object");
|
|
45891
45888
|
}
|
|
45892
|
-
|
|
45889
|
+
y(e.success_rate_ejection, "stdev_factor", "number", "success_rate_ejection");
|
|
45893
45890
|
S(e.success_rate_ejection, "enforcement_percentage", "success_rate_ejection");
|
|
45894
|
-
|
|
45895
|
-
|
|
45891
|
+
y(e.success_rate_ejection, "minimum_hosts", "number", "success_rate_ejection");
|
|
45892
|
+
y(e.success_rate_ejection, "request_volume", "number", "success_rate_ejection");
|
|
45896
45893
|
}
|
|
45897
45894
|
if ("failure_percentage_ejection" in e && e.failure_percentage_ejection !== undefined) {
|
|
45898
45895
|
if (typeof e.failure_percentage_ejection !== "object") {
|
|
@@ -45900,8 +45897,8 @@ function requireLoadBalancerOutlierDetection() {
|
|
|
45900
45897
|
}
|
|
45901
45898
|
S(e.failure_percentage_ejection, "threshold", "failure_percentage_ejection");
|
|
45902
45899
|
S(e.failure_percentage_ejection, "enforcement_percentage", "failure_percentage_ejection");
|
|
45903
|
-
|
|
45904
|
-
|
|
45900
|
+
y(e.failure_percentage_ejection, "minimum_hosts", "number", "failure_percentage_ejection");
|
|
45901
|
+
y(e.failure_percentage_ejection, "request_volume", "number", "failure_percentage_ejection");
|
|
45905
45902
|
}
|
|
45906
45903
|
if (!("child_policy" in e) || !Array.isArray(e.child_policy)) {
|
|
45907
45904
|
throw new Error("outlier detection config child_policy must be an array");
|
|
@@ -46379,8 +46376,8 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46379
46376
|
const m = 1e4;
|
|
46380
46377
|
const _ = 3 * 6e4;
|
|
46381
46378
|
const E = 1e3;
|
|
46382
|
-
const
|
|
46383
|
-
function
|
|
46379
|
+
const y = 1;
|
|
46380
|
+
function v(e, t, r) {
|
|
46384
46381
|
if (t in e && e[t] !== undefined && typeof e[t] !== r) {
|
|
46385
46382
|
throw new Error(`weighted round robin config ${t} parse error: expected ${r}, got ${typeof e[t]}`);
|
|
46386
46383
|
}
|
|
@@ -46412,7 +46409,7 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46412
46409
|
this.blackoutPeriodMs = r !== null && r !== void 0 ? r : m;
|
|
46413
46410
|
this.weightExpirationPeriodMs = n !== null && n !== void 0 ? n : _;
|
|
46414
46411
|
this.weightUpdatePeriodMs = Math.max(s !== null && s !== void 0 ? s : E, 100);
|
|
46415
|
-
this.errorUtilizationPenalty = o !== null && o !== void 0 ? o :
|
|
46412
|
+
this.errorUtilizationPenalty = o !== null && o !== void 0 ? o : y;
|
|
46416
46413
|
}
|
|
46417
46414
|
getLoadBalancerName() {
|
|
46418
46415
|
return p;
|
|
@@ -46428,8 +46425,8 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46428
46425
|
};
|
|
46429
46426
|
}
|
|
46430
46427
|
static createFromJson(e) {
|
|
46431
|
-
|
|
46432
|
-
|
|
46428
|
+
v(e, "enable_oob_load_report", "boolean");
|
|
46429
|
+
v(e, "error_utilization_penalty", "number");
|
|
46433
46430
|
if (e.error_utilization_penalty < 0) {
|
|
46434
46431
|
throw new Error("weighted round robin config error_utilization_penalty < 0");
|
|
46435
46432
|
}
|
|
@@ -46843,14 +46840,14 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46843
46840
|
throw new Error("Not available in this library. Use @grpc/proto-loader and loadPackageDefinition instead");
|
|
46844
46841
|
};
|
|
46845
46842
|
e.loadObject = E;
|
|
46846
|
-
const
|
|
46843
|
+
const y = (e, t, r) => {
|
|
46847
46844
|
throw new Error("Not available in this library. Use @grpc/proto-loader and loadPackageDefinition instead");
|
|
46848
46845
|
};
|
|
46849
|
-
e.load =
|
|
46850
|
-
const
|
|
46846
|
+
e.load = y;
|
|
46847
|
+
const v = e => {
|
|
46851
46848
|
c.setLogger(e);
|
|
46852
46849
|
};
|
|
46853
|
-
e.setLogger =
|
|
46850
|
+
e.setLogger = v;
|
|
46854
46851
|
const S = e => {
|
|
46855
46852
|
c.setLoggerVerbosity(e);
|
|
46856
46853
|
};
|
|
@@ -46933,8 +46930,8 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46933
46930
|
const k = requireResolverDns();
|
|
46934
46931
|
const P = requireResolverUds();
|
|
46935
46932
|
const O = requireResolverIp();
|
|
46936
|
-
const
|
|
46937
|
-
const
|
|
46933
|
+
const $ = requireLoadBalancerPickFirst();
|
|
46934
|
+
const B = requireLoadBalancerRoundRobin();
|
|
46938
46935
|
const N = requireLoadBalancerOutlierDetection();
|
|
46939
46936
|
const D = requireLoadBalancerWeightedRoundRobin();
|
|
46940
46937
|
const L = requireChannelz();
|
|
@@ -46942,8 +46939,8 @@ function requireLoadBalancerWeightedRoundRobin() {
|
|
|
46942
46939
|
k.setup();
|
|
46943
46940
|
P.setup();
|
|
46944
46941
|
O.setup();
|
|
46945
|
-
B.setup();
|
|
46946
46942
|
$.setup();
|
|
46943
|
+
B.setup();
|
|
46947
46944
|
N.setup();
|
|
46948
46945
|
D.setup();
|
|
46949
46946
|
L.setup();
|
|
@@ -47129,19 +47126,19 @@ util$1.addCommonProtos = addCommonProtos;
|
|
|
47129
47126
|
responseSerialize: m(a),
|
|
47130
47127
|
responseDeserialize: g(a, n),
|
|
47131
47128
|
originalName: t(e.name),
|
|
47132
|
-
requestType:
|
|
47133
|
-
responseType:
|
|
47129
|
+
requestType: v(o, s),
|
|
47130
|
+
responseType: v(a, s),
|
|
47134
47131
|
options: _(e.parsedOptions)
|
|
47135
47132
|
};
|
|
47136
47133
|
}
|
|
47137
|
-
function
|
|
47134
|
+
function y(e, t, r, n) {
|
|
47138
47135
|
const s = {};
|
|
47139
47136
|
for (const o of e.methodsArray) {
|
|
47140
47137
|
s[o.name] = E(o, t, r, n);
|
|
47141
47138
|
}
|
|
47142
47139
|
return s;
|
|
47143
47140
|
}
|
|
47144
|
-
function
|
|
47141
|
+
function v(e, t) {
|
|
47145
47142
|
const r = e.toDescriptor("proto3");
|
|
47146
47143
|
return {
|
|
47147
47144
|
format: "Protocol Buffer 3 DescriptorProto",
|
|
@@ -47159,9 +47156,9 @@ util$1.addCommonProtos = addCommonProtos;
|
|
|
47159
47156
|
}
|
|
47160
47157
|
function A(e, t, n, s) {
|
|
47161
47158
|
if (e instanceof r.Service) {
|
|
47162
|
-
return
|
|
47159
|
+
return y(e, t, n, s);
|
|
47163
47160
|
} else if (e instanceof r.Type) {
|
|
47164
|
-
return
|
|
47161
|
+
return v(e, s);
|
|
47165
47162
|
} else if (e instanceof r.Enum) {
|
|
47166
47163
|
return S(e, s);
|
|
47167
47164
|
} else {
|
|
@@ -47647,22 +47644,22 @@ function sha1(e) {
|
|
|
47647
47644
|
}
|
|
47648
47645
|
var _ = r[0];
|
|
47649
47646
|
var E = r[1];
|
|
47650
|
-
var
|
|
47651
|
-
var
|
|
47647
|
+
var y = r[2];
|
|
47648
|
+
var v = r[3];
|
|
47652
47649
|
var S = r[4];
|
|
47653
47650
|
for (var A = 0; A < 80; ++A) {
|
|
47654
47651
|
var b = Math.floor(A / 20);
|
|
47655
|
-
var C = ROTL(_, 5) + f(b, E,
|
|
47656
|
-
S =
|
|
47657
|
-
|
|
47658
|
-
|
|
47652
|
+
var C = ROTL(_, 5) + f(b, E, y, v) + S + t[b] + p[A] >>> 0;
|
|
47653
|
+
S = v;
|
|
47654
|
+
v = y;
|
|
47655
|
+
y = ROTL(E, 30) >>> 0;
|
|
47659
47656
|
E = _;
|
|
47660
47657
|
_ = C;
|
|
47661
47658
|
}
|
|
47662
47659
|
r[0] = r[0] + _ >>> 0;
|
|
47663
47660
|
r[1] = r[1] + E >>> 0;
|
|
47664
|
-
r[2] = r[2] +
|
|
47665
|
-
r[3] = r[3] +
|
|
47661
|
+
r[2] = r[2] + y >>> 0;
|
|
47662
|
+
r[3] = r[3] + v >>> 0;
|
|
47666
47663
|
r[4] = r[4] + S >>> 0;
|
|
47667
47664
|
}
|
|
47668
47665
|
return [ r[0] >> 24 & 255, r[0] >> 16 & 255, r[0] >> 8 & 255, r[0] & 255, r[1] >> 24 & 255, r[1] >> 16 & 255, r[1] >> 8 & 255, r[1] & 255, r[2] >> 24 & 255, r[2] >> 16 & 255, r[2] >> 8 & 255, r[2] & 255, r[3] >> 24 & 255, r[3] >> 16 & 255, r[3] >> 8 & 255, r[3] & 255, r[4] >> 24 & 255, r[4] >> 16 & 255, r[4] >> 8 & 255, r[4] & 255 ];
|