当前位置: 首页>>代码示例>>C#>>正文


C# PwEntry.GetKeeAgentSettings方法代码示例

本文整理汇总了C#中PwEntry.GetKeeAgentSettings方法的典型用法代码示例。如果您正苦于以下问题:C# PwEntry.GetKeeAgentSettings方法的具体用法?C# PwEntry.GetKeeAgentSettings怎么用?C# PwEntry.GetKeeAgentSettings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PwEntry的用法示例。


在下文中一共展示了PwEntry.GetKeeAgentSettings方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: customTreeViewEx_AfterSelect

        private void customTreeViewEx_AfterSelect(object sender, TreeViewEventArgs e)
        {
            SelectedEntry = e.Node.Tag as PwEntry;

              // Set constraint flag from selected item
              mConfirmConstraintControl.Checked =
            SelectedEntry.GetKeeAgentSettings().UseConfirmConstraintWhenAdding;

              // Set lifetime flag from selected item; also, if item does have a
              // lifetime, set the lifetime duration
              mLifetimeConstraintControl.Checked =
            SelectedEntry.GetKeeAgentSettings().UseLifetimeConstraintWhenAdding;
              if (mLifetimeConstraintControl.Checked) {
             mLifetimeConstraintControl.Lifetime =
               SelectedEntry.GetKeeAgentSettings().LifetimeConstraintDuration;
              }
        }
开发者ID:dlech,项目名称:KeeAgent,代码行数:17,代码来源:EntryPickerDialog.cs

示例2: AddEntry

        public ISshKey AddEntry(PwEntry entry,
            ICollection<Agent.KeyConstraint> constraints)
        {
            var settings = entry.GetKeeAgentSettings();
              try {
            var key = entry.GetSshKey();
            string db_name = "<Unknown database>";
            try {
              var database = pluginHost.MainWindow.DocumentManager.GetOpenDatabases()
            .Where((db) => db.RootGroup.FindEntry(entry.Uuid, true) != null).Single();
              db_name = database.Name;
            } catch (Exception) {
              Debug.Fail("Duplicate UUIDs?");
            }
            key.Source = string.Format("{0}: {1}", db_name, entry.GetFullPath());
            if (agent is PageantClient) {
              // Pageant errors if you try to add a key that is already loaded
              // so try to remove the key first so that it behaves like other agents
              try {
            agent.RemoveKey(key);
              } catch (Exception) {
            // ignore failure
              }
            } else {
              // also, Pageant does not support constraints
              if (constraints != null) {
            foreach (var constraint in constraints) {
              key.AddConstraint(constraint);
            }
              } else {
            if (settings.UseConfirmConstraintWhenAdding) {
              key.addConfirmConstraint();
            }
            if (settings.UseLifetimeConstraintWhenAdding) {
              key.addLifetimeConstraint(settings.LifetimeConstraintDuration);
            }
              }
              if (Options.AlwaysConfirm &&
              !key.HasConstraint(Agent.KeyConstraintType.SSH_AGENT_CONSTRAIN_CONFIRM))
              {
            key.addConfirmConstraint();
              }
            }
            agent.AddKey(key);
            if (settings.Location.SelectedType == EntrySettings.LocationType.Attachment
              && settings.Location.SaveAttachmentToTempFile)
            {
              try {
            var data = entry.Binaries.Get(settings.Location.AttachmentName).ReadData();
            var tempPath = Path.Combine(UrlUtil.GetTempPath(), "KeeAgent");
            if (!Directory.Exists(tempPath))
              Directory.CreateDirectory(tempPath);
            var fileName = Path.Combine(tempPath, settings.Location.AttachmentName);
            File.WriteAllBytes(fileName, data);
            keyFileMap[key.GetMD5Fingerprint().ToHexString()] = new KeyFileInfo(fileName, true);
              } catch (Exception ex) {
            Debug.Fail(ex.Message, ex.StackTrace);
              }
            }
            if (settings.Location.SelectedType == EntrySettings.LocationType.File) {
              keyFileMap[key.GetMD5Fingerprint().ToHexString()] =
            new KeyFileInfo(settings.Location.FileName, false);
            }
            return key;
              } catch (Exception ex) {
            var firstLine = string.Format("KeeAgent: Error while loading key from entry '{0}'",
              entry.GetFullPath());
            if (ex is NoAttachmentException) {
              MessageService.ShowWarning(new string[] {
            firstLine,
             "No attachment specified in KeePass entry"
               });
            } else if (ex is FileNotFoundException || ex is DirectoryNotFoundException) {

            if (!Options.IgnoreMissingExternalKeyFiles) {
                MessageService.ShowWarning(new string[] {
                  firstLine,
                  "Could not find file",
                  settings.Location.FileName
                 });
            }

            } else if (ex is KeyFormatterException || ex is PpkFormatterException) {
              MessageService.ShowWarning(new string[] {
            firstLine,
            string.Format ("Could not load file {0}",
              settings.Location.SelectedType == EntrySettings.LocationType.File
                ? string.Format("'{0}'", settings.Location.FileName)
                : string.Format("from attachment '{0}'", settings.Location.AttachmentName)),
            "Possible causes:",
            "- Passphrase was entered incorrectly",
            "- File is corrupt or has been tampered"
               });
            } else if (ex is AgentFailureException) {
              MessageService.ShowWarning(new string[] {
            firstLine,
            "Agent Failure",
            "Possible causes:",
            "- Key is already loaded in agent",
            "- Agent is locked"
//.........这里部分代码省略.........
开发者ID:dlech,项目名称:KeeAgent,代码行数:101,代码来源:KeeAgentExt.cs


注:本文中的PwEntry.GetKeeAgentSettings方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。