S
S
shasoft2020-10-27 08:20:50
KeePass
shasoft, 2020-10-27 08:20:50

Where can I find the KPScript documentation for KeePass?

KeePass supports automation through KPScript by writing a program with the .kps extension in C#
Found an example in the form

//
  // KeePass Master Key information
  //
  CompositeKey inputKey = new CompositeKey();
  inputKey.AddUserKey(new KcpPassword(cmdArgs["pw"]));
  inputKey.AddUserKey(new KcpKeyFile(cmdArgs["keyfile"]));

  //
  // Set up connection to Master KeePass Database
  //
  IOConnectionInfo iocInput = new IOConnectionInfo();
  iocInput.Path = cmdArgs["infile"];
  PwDatabase pwInputDB = new PwDatabase();
  pwInputDB.Open( iocInput, inputKey, null);
But I can't find any documentation on these classes/methods to write my own program.

Maybe someone can help?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Ananiev, 2020-10-27
@SaNNy32

Apparently, she doesn't exist. It is necessary to look at the KeePass sources or the sources of similar plugins and analyze them.
https://sourceforge.net/p/keepass/discussion/32922...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question