]> Dogcows Code - chaz/p5-File-KDBX/blob - README.md
Fix ambiguous warnings sub & package test failure
[chaz/p5-File-KDBX] / README.md
1 [![Linux](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/linux.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/linux.yml)
2 [![macOS](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/macos.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/macos.yml)
3 [![Windows](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/windows.yml/badge.svg)](https://github.com/chazmcgarvey/File-KDBX/actions/workflows/windows.yml)
4
5 # NAME
6
7 File::KDBX - Encrypted database to store secret text and files
8
9 # VERSION
10
11 version 0.901
12
13 # SYNOPSIS
14
15 ```perl
16 use File::KDBX;
17
18 my $kdbx = File::KDBX->new;
19
20 my $group = $kdbx->add_group(
21 name => 'Passwords',
22 );
23
24 my $entry = $group->add_entry(
25 title => 'My Bank',
26 password => 's3cr3t',
27 );
28
29 $kdbx->dump_file('passwords.kdbx', 'M@st3rP@ssw0rd!');
30
31 $kdbx = File::KDBX->load_file('passwords.kdbx', 'M@st3rP@ssw0rd!');
32
33 $kdbx->entries->each(sub {
34 my ($entry) = @_;
35 say 'Entry: ', $entry->title;
36 });
37 ```
38
39 See ["RECIPES"](#recipes) for more examples.
40
41 # DESCRIPTION
42
43 **File::KDBX** provides everything you need to work with KDBX databases. A KDBX database is a hierarchical
44 object database which is commonly used to store secret information securely. It was developed for the KeePass
45 password safe. See ["Introduction to KDBX"](#introduction-to-kdbx) for more information about KDBX.
46
47 This module lets you query entries, create new entries, delete entries, modify entries and more. The
48 distribution also includes various parsers and generators for serializing and persisting databases.
49
50 The design of this software was influenced by the [KeePassXC](https://github.com/keepassxreboot/keepassxc)
51 implementation of KeePass as well as the [File::KeePass](https://metacpan.org/pod/File%3A%3AKeePass) module. **File::KeePass** is an alternative module
52 that works well in most cases but has a small backlog of bugs and security issues and also does not work with
53 newer KDBX version 4 files. If you're coming here from the **File::KeePass** world, you might be interested in
54 [File::KeePass::KDBX](https://metacpan.org/pod/File%3A%3AKeePass%3A%3AKDBX) that is a drop-in replacement for **File::KeePass** that uses **File::KDBX** for storage.
55
56 This software is a **pre-1.0 release**. The interface should be considered pretty stable, but there might be
57 minor changes up until a 1.0 release. Breaking changes will be noted in the `Changes` file.
58
59 ## Features
60
61 - ☑ Read and write KDBX version 3 - version 4.1
62 - ☑ Read and write KDB files (requires [File::KeePass](https://metacpan.org/pod/File%3A%3AKeePass))
63 - ☑ Unicode character strings
64 - ☑ ["Simple Expression"](#simple-expression) Searching
65 - ☑ [Placeholders](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#Placeholders) and [field references](#resolve_reference)
66 - ☑ [One-time passwords](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#One-time-Passwords)
67 - ☑ [Very secure](#security)
68 - ☑ ["Memory Protection"](#memory-protection)
69 - ☑ Challenge-response key components, like [YubiKey](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey%3A%3AYubiKey)
70 - ☑ Variety of [key file](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey%3A%3AFile) types: binary, hexed, hashed, XML v1 and v2
71 - ☑ Pluggable registration of different kinds of ciphers and key derivation functions
72 - ☑ Built-in database maintenance functions
73 - ☑ Pretty fast, with [XS optimizations](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AXS) available
74 - ☒ Database synchronization / merging (not yet)
75
76 ## Introduction to KDBX
77
78 A KDBX database consists of a tree of _groups_ and _entries_, with a single _root_ group. Entries can
79 contain zero or more key-value pairs of _strings_ and zero or more _binaries_ (i.e. octet strings). Groups,
80 entries, strings and binaries: that's the KDBX vernacular. A small amount of metadata (timestamps, etc.) is
81 associated with each entry, group and the database as a whole.
82
83 You can think of a KDBX database kind of like a file system, where groups are directories, entries are files,
84 and strings and binaries make up a file's contents.
85
86 Databases are typically persisted as encrypted, compressed files. They are usually accessed directly (i.e.
87 not over a network). The primary focus of this type of database is data security. It is ideal for storing
88 relatively small amounts of data (strings and binaries) that must remain secret except to such individuals as
89 have the correct _master key_. Even if the database file were to be "leaked" to the public Internet, it
90 should be virtually impossible to crack with a strong key. The KDBX format is most often used by password
91 managers to store passwords so that users can know a single strong password and not have to reuse passwords
92 across different websites. See ["SECURITY"](#security) for an overview of security considerations.
93
94 # ATTRIBUTES
95
96 ## sig1
97
98 ## sig2
99
100 ## version
101
102 ## headers
103
104 ## inner\_headers
105
106 ## meta
107
108 ## binaries
109
110 ## deleted\_objects
111
112 Hash of UUIDs for objects that have been deleted. This includes groups, entries and even custom icons.
113
114 ## raw
115
116 Bytes contained within the encrypted layer of a KDBX file. This is only set when using
117 [File::KDBX::Loader::Raw](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ALoader%3A%3ARaw).
118
119 ## comment
120
121 A text string associated with the database. Often unset.
122
123 ## cipher\_id
124
125 The UUID of a cipher used to encrypt the database when stored as a file.
126
127 See ["File::KDBX::Cipher"](#file-kdbx-cipher).
128
129 ## compression\_flags
130
131 Configuration for whether or not and how the database gets compressed. See
132 [":compression" in File::KDBX::Constants](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AConstants#compression).
133
134 ## master\_seed
135
136 The master seed is a string of 32 random bytes that is used as salt in hashing the master key when loading
137 and saving the database. If a challenge-response key is used in the master key, the master seed is also the
138 challenge.
139
140 The master seed _should_ be changed each time the database is saved to file.
141
142 ## transform\_seed
143
144 The transform seed is a string of 32 random bytes that is used in the key derivation function, either as the
145 salt or the key (depending on the algorithm).
146
147 The transform seed _should_ be changed each time the database is saved to file.
148
149 ## transform\_rounds
150
151 The number of rounds or iterations used in the key derivation function. Increasing this number makes loading
152 and saving the database slower by design in order to make dictionary and brute force attacks more costly.
153
154 ## encryption\_iv
155
156 The initialization vector used by the cipher.
157
158 The encryption IV _should_ be changed each time the database is saved to file.
159
160 ## inner\_random\_stream\_key
161
162 The encryption key (possibly including the IV, depending on the cipher) used to encrypt the protected strings
163 within the database.
164
165 ## stream\_start\_bytes
166
167 A string of 32 random bytes written in the header and encrypted in the body. If the bytes do not match when
168 loading a file then the wrong master key was used or the file is corrupt. Only KDBX 2 and KDBX 3 files use
169 this. KDBX 4 files use an improved HMAC method to verify the master key and data integrity of the header and
170 entire file body.
171
172 ## inner\_random\_stream\_id
173
174 A number indicating the cipher algorithm used to encrypt the protected strings within the database, usually
175 Salsa20 or ChaCha20. See [":random\_stream" in File::KDBX::Constants](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AConstants#random_stream).
176
177 ## kdf\_parameters
178
179 A hash/dict of key-value pairs used to configure the key derivation function. This is the KDBX4+ way to
180 configure the KDF, superceding ["transform\_seed"](#transform_seed) and ["transform\_rounds"](#transform_rounds).
181
182 ## generator
183
184 The name of the software used to generate the KDBX file.
185
186 ## header\_hash
187
188 The header hash used to verify that the file header is not corrupt. (KDBX 2 - KDBX 3.1, removed KDBX 4.0)
189
190 ## database\_name
191
192 Name of the database.
193
194 ## database\_name\_changed
195
196 Timestamp indicating when the database name was last changed.
197
198 ## database\_description
199
200 Description of the database
201
202 ## database\_description\_changed
203
204 Timestamp indicating when the database description was last changed.
205
206 ## default\_username
207
208 When a new entry is created, the _UserName_ string will be populated with this value.
209
210 ## default\_username\_changed
211
212 Timestamp indicating when the default username was last changed.
213
214 ## color
215
216 A color associated with the database (in the form `#ffffff` where "f" is a hexidecimal digit). Some agents
217 use this to help users visually distinguish between different databases.
218
219 ## master\_key\_changed
220
221 Timestamp indicating when the master key was last changed.
222
223 ## master\_key\_change\_rec
224
225 Number of days until the agent should prompt to recommend changing the master key.
226
227 ## master\_key\_change\_force
228
229 Number of days until the agent should prompt to force changing the master key.
230
231 Note: This is purely advisory. It is up to the individual agent software to actually enforce it.
232 `File::KDBX` does NOT enforce it.
233
234 ## custom\_icons
235
236 Array of custom icons that can be associated with groups and entries.
237
238 This list can be managed with the methods ["add\_custom\_icon"](#add_custom_icon) and ["remove\_custom\_icon"](#remove_custom_icon).
239
240 ## recycle\_bin\_enabled
241
242 Boolean indicating whether removed groups and entries should go to a recycle bin or be immediately deleted.
243
244 ## recycle\_bin\_uuid
245
246 The UUID of a group used to store thrown-away groups and entries.
247
248 ## recycle\_bin\_changed
249
250 Timestamp indicating when the recycle bin group was last changed.
251
252 ## entry\_templates\_group
253
254 The UUID of a group containing template entries used when creating new entries.
255
256 ## entry\_templates\_group\_changed
257
258 Timestamp indicating when the entry templates group was last changed.
259
260 ## last\_selected\_group
261
262 The UUID of the previously-selected group.
263
264 ## last\_top\_visible\_group
265
266 The UUID of the group visible at the top of the list.
267
268 ## history\_max\_items
269
270 The maximum number of historical entries that should be kept for each entry. Default is 10.
271
272 ## history\_max\_size
273
274 The maximum total size (in bytes) that each individual entry's history is allowed to grow. Default is 6 MiB.
275
276 ## maintenance\_history\_days
277
278 The maximum age (in days) historical entries should be kept. Default it 365.
279
280 ## settings\_changed
281
282 Timestamp indicating when the database settings were last updated.
283
284 ## protect\_title
285
286 Alias of the ["memory\_protection"](#memory_protection) setting for the _Title_ string.
287
288 ## protect\_username
289
290 Alias of the ["memory\_protection"](#memory_protection) setting for the _UserName_ string.
291
292 ## protect\_password
293
294 Alias of the ["memory\_protection"](#memory_protection) setting for the _Password_ string.
295
296 ## protect\_url
297
298 Alias of the ["memory\_protection"](#memory_protection) setting for the _URL_ string.
299
300 ## protect\_notes
301
302 Alias of the ["memory\_protection"](#memory_protection) setting for the _Notes_ string.
303
304 # METHODS
305
306 ## new
307
308 ```
309 $kdbx = File::KDBX->new(%attributes);
310 $kdbx = File::KDBX->new($kdbx); # copy constructor
311 ```
312
313 Construct a new [File::KDBX](https://metacpan.org/pod/File%3A%3AKDBX).
314
315 ## init
316
317 ```
318 $kdbx = $kdbx->init(%attributes);
319 ```
320
321 Initialize a [File::KDBX](https://metacpan.org/pod/File%3A%3AKDBX) with a set of attributes. Returns itself to allow method chaining.
322
323 This is called by ["new"](#new).
324
325 ## reset
326
327 ```
328 $kdbx = $kdbx->reset;
329 ```
330
331 Set a [File::KDBX](https://metacpan.org/pod/File%3A%3AKDBX) to an empty state, ready to load a KDBX file or build a new one. Returns itself to allow
332 method chaining.
333
334 ## clone
335
336 ```
337 $kdbx_copy = $kdbx->clone;
338 $kdbx_copy = File::KDBX->new($kdbx);
339 ```
340
341 Clone a [File::KDBX](https://metacpan.org/pod/File%3A%3AKDBX). The clone will be an exact copy and completely independent of the original.
342
343 ## load
344
345 ## load\_string
346
347 ## load\_file
348
349 ## load\_handle
350
351 ```
352 $kdbx = KDBX::File->load(\$string, $key);
353 $kdbx = KDBX::File->load(*IO, $key);
354 $kdbx = KDBX::File->load($filepath, $key);
355 $kdbx->load(...); # also instance method
356
357 $kdbx = File::KDBX->load_string($string, $key);
358 $kdbx = File::KDBX->load_string(\$string, $key);
359 $kdbx->load_string(...); # also instance method
360
361 $kdbx = File::KDBX->load_file($filepath, $key);
362 $kdbx->load_file(...); # also instance method
363
364 $kdbx = File::KDBX->load_handle($fh, $key);
365 $kdbx = File::KDBX->load_handle(*IO, $key);
366 $kdbx->load_handle(...); # also instance method
367 ```
368
369 Load a KDBX file from a string buffer, IO handle or file from a filesystem.
370
371 [File::KDBX::Loader](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ALoader) does the heavy lifting.
372
373 ## dump
374
375 ## dump\_string
376
377 ## dump\_file
378
379 ## dump\_handle
380
381 ```
382 $kdbx->dump(\$string, $key);
383 $kdbx->dump(*IO, $key);
384 $kdbx->dump($filepath, $key);
385
386 $kdbx->dump_string(\$string, $key);
387 \$string = $kdbx->dump_string($key);
388
389 $kdbx->dump_file($filepath, $key);
390
391 $kdbx->dump_handle($fh, $key);
392 $kdbx->dump_handle(*IO, $key);
393 ```
394
395 Dump a KDBX file to a string buffer, IO handle or file in a filesystem.
396
397 [File::KDBX::Dumper](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ADumper) does the heavy lifting.
398
399 ## user\_agent\_string
400
401 ```perl
402 $string = $kdbx->user_agent_string;
403 ```
404
405 Get a text string identifying the database client software.
406
407 ## memory\_protection
408
409 ```perl
410 \%settings = $kdbx->memory_protection
411 $kdbx->memory_protection(\%settings);
412
413 $bool = $kdbx->memory_protection($string_key);
414 $kdbx->memory_protection($string_key => $bool);
415 ```
416
417 Get or set memory protection settings. This globally (for the whole database) configures whether and which of
418 the standard strings should be memory-protected. The default setting is to memory-protect only _Password_
419 strings.
420
421 Memory protection can be toggled individually for each entry string, and individual settings take precedence
422 over these global settings.
423
424 ## minimum\_version
425
426 ```
427 $version = $kdbx->minimum_version;
428 ```
429
430 Determine the minimum file version required to save a database losslessly. Using certain databases features
431 might increase this value. For example, setting the KDF to Argon2 will increase the minimum version to at
432 least `KDBX_VERSION_4_0` (i.e. `0x00040000`) because Argon2 was introduced with KDBX4.
433
434 This method never returns less than `KDBX_VERSION_3_1` (i.e. `0x00030001`). That file version is so
435 ubiquitious and well-supported, there are seldom reasons to dump in a lesser format nowadays.
436
437 **WARNING:** If you dump a database with a minimum version higher than the current ["version"](#version), the dumper will
438 typically issue a warning and automatically upgrade the database. This seems like the safest behavior in order
439 to avoid data loss, but lower versions have the benefit of being compatible with more software. It is possible
440 to prevent auto-upgrades by explicitly telling the dumper which version to use, but you do run the risk of
441 data loss. A database will never be automatically downgraded.
442
443 ## root
444
445 ```
446 $group = $kdbx->root;
447 $kdbx->root($group);
448 ```
449
450 Get or set a database's root group. You don't necessarily need to explicitly create or set a root group
451 because it autovivifies when adding entries and groups to the database.
452
453 Every database has only a single root group at a time. Some old KDB files might have multiple root groups.
454 When reading such files, a single implicit root group is created to contain the actual root groups. When
455 writing to such a format, if the root group looks like it was implicitly created then it won't be written and
456 the resulting file might have multiple root groups, as it was before loading. This allows working with older
457 files without changing their written internal structure while still adhering to modern semantics while the
458 database is opened.
459
460 The root group of a KDBX database contains all of the database's entries and other groups. If you replace the
461 root group, you are essentially replacing the entire database contents with something else.
462
463 ## trace\_lineage
464
465 ```
466 \@lineage = $kdbx->trace_lineage($group);
467 \@lineage = $kdbx->trace_lineage($group, $base_group);
468 \@lineage = $kdbx->trace_lineage($entry);
469 \@lineage = $kdbx->trace_lineage($entry, $base_group);
470 ```
471
472 Get the direct line of ancestors from `$base_group` (default: the root group) to a group or entry. The
473 lineage includes the base group but _not_ the target group or entry. Returns `undef` if the target is not in
474 the database structure.
475
476 ## recycle\_bin
477
478 ```
479 $group = $kdbx->recycle_bin;
480 $kdbx->recycle_bin($group);
481 ```
482
483 Get or set the recycle bin group. Returns `undef` if there is no recycle bin and ["recycle\_bin\_enabled"](#recycle_bin_enabled) is
484 false, otherwise the current recycle bin or an autovivified recycle bin group is returned.
485
486 ## entry\_templates
487
488 ```
489 $group = $kdbx->entry_templates;
490 $kdbx->entry_templates($group);
491 ```
492
493 Get or set the entry templates group. May return `undef` if unset.
494
495 ## last\_selected
496
497 ```
498 $group = $kdbx->last_selected;
499 $kdbx->last_selected($group);
500 ```
501
502 Get or set the last selected group. May return `undef` if unset.
503
504 ## last\_top\_visible
505
506 ```
507 $group = $kdbx->last_top_visible;
508 $kdbx->last_top_visible($group);
509 ```
510
511 Get or set the last top visible group. May return `undef` if unset.
512
513 ## add\_group
514
515 ```
516 $kdbx->add_group($group);
517 $kdbx->add_group(%group_attributes, %options);
518 ```
519
520 Add a group to a database. This is equivalent to identifying a parent group and calling
521 ["add\_group" in File::KDBX::Group](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AGroup#add_group) on the parent group, forwarding the arguments. Available options:
522
523 - `group` - Group object or group UUID to add the group to (default: root group)
524
525 ## groups
526
527 ```
528 \&iterator = $kdbx->groups(%options);
529 \&iterator = $kdbx->groups($base_group, %options);
530 ```
531
532 Get an [File::KDBX::Iterator](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AIterator) over _groups_ within a database. Options:
533
534 - `base` - Only include groups within a base group (same as `$base_group`) (default: ["root"](#root))
535 - `inclusive` - Include the base group in the results (default: true)
536 - `algorithm` - Search algorithm, one of `ids`, `bfs` or `dfs` (default: `ids`)
537
538 ## add\_entry
539
540 ```
541 $kdbx->add_entry($entry, %options);
542 $kdbx->add_entry(%entry_attributes, %options);
543 ```
544
545 Add a entry to a database. This is equivalent to identifying a parent group and calling
546 ["add\_entry" in File::KDBX::Group](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AGroup#add_entry) on the parent group, forwarding the arguments. Available options:
547
548 - `group` - Group object or group UUID to add the entry to (default: root group)
549
550 ## entries
551
552 ```
553 \&iterator = $kdbx->entries(%options);
554 \&iterator = $kdbx->entries($base_group, %options);
555 ```
556
557 Get an [File::KDBX::Iterator](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AIterator) over _entries_ within a database. Supports the same options as ["groups"](#groups),
558 plus some new ones:
559
560 - `auto_type` - Only include entries with auto-type enabled (default: false, include all)
561 - `searching` - Only include entries within groups with searching enabled (default: false, include all)
562 - `history` - Also include historical entries (default: false, include only current entries)
563
564 ## objects
565
566 ```
567 \&iterator = $kdbx->objects(%options);
568 \&iterator = $kdbx->objects($base_group, %options);
569 ```
570
571 Get an [File::KDBX::Iterator](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AIterator) over _objects_ within a database. Groups and entries are considered objects,
572 so this is essentially a combination of ["groups"](#groups) and ["entries"](#entries). This won't often be useful, but it can be
573 convenient for maintenance tasks. This method takes the same options as ["groups"](#groups) and ["entries"](#entries).
574
575 ## custom\_icon
576
577 ```perl
578 \%icon = $kdbx->custom_icon($uuid);
579 $kdbx->custom_icon($uuid => \%icon);
580 $kdbx->custom_icon(%icon);
581 $kdbx->custom_icon(uuid => $value, %icon);
582 ```
583
584 Get or set custom icons.
585
586 ## custom\_icon\_data
587
588 ```
589 $image_data = $kdbx->custom_icon_data($uuid);
590 ```
591
592 Get a custom icon image data.
593
594 ## add\_custom\_icon
595
596 ```
597 $uuid = $kdbx->add_custom_icon($image_data, %attributes);
598 $uuid = $kdbx->add_custom_icon(%attributes);
599 ```
600
601 Add a custom icon and get its UUID. If not provided, a random UUID will be generated. Possible attributes:
602
603 - `uuid` - Icon UUID (default: autogenerated)
604 - `data` - Image data (same as `$image_data`)
605 - `name` - Name of the icon (text, KDBX4.1+)
606 - `last_modification_time` - Just what it says (datetime, KDBX4.1+)
607
608 ## remove\_custom\_icon
609
610 ```
611 $kdbx->remove_custom_icon($uuid);
612 ```
613
614 Remove a custom icon.
615
616 ## custom\_data
617
618 ```perl
619 \%all_data = $kdbx->custom_data;
620 $kdbx->custom_data(\%all_data);
621
622 \%data = $kdbx->custom_data($key);
623 $kdbx->custom_data($key => \%data);
624 $kdbx->custom_data(%data);
625 $kdbx->custom_data(key => $value, %data);
626 ```
627
628 Get and set custom data. Custom data is metadata associated with a database.
629
630 Each data item can have a few attributes associated with it.
631
632 - `key` - A unique text string identifier used to look up the data item (required)
633 - `value` - A text string value (required)
634 - `last_modification_time` (optional, KDBX4.1+)
635
636 ## custom\_data\_value
637
638 ```
639 $value = $kdbx->custom_data_value($key);
640 ```
641
642 Exactly the same as ["custom\_data"](#custom_data) except returns just the custom data's value rather than a structure of
643 attributes. This is a shortcut for:
644
645 ```perl
646 my $data = $kdbx->custom_data($key);
647 my $value = defined $data ? $data->{value} : undef;
648 ```
649
650 ## public\_custom\_data
651
652 ```perl
653 \%all_data = $kdbx->public_custom_data;
654 $kdbx->public_custom_data(\%all_data);
655
656 $value = $kdbx->public_custom_data($key);
657 $kdbx->public_custom_data($key => $value);
658 ```
659
660 Get and set public custom data. Public custom data is similar to custom data but different in some important
661 ways. Public custom data:
662
663 - can store strings, booleans and up to 64-bit integer values (custom data can only store text values)
664 - is NOT encrypted within a KDBX file (hence the "public" part of the name)
665 - is a plain hash/dict of key-value pairs with no other associated fields (like modification times)
666
667 ## add\_deleted\_object
668
669 ```
670 $kdbx->add_deleted_object($uuid);
671 ```
672
673 Add a UUID to the deleted objects list. This list is used to support automatic database merging.
674
675 You typically do not need to call this yourself because the list will be populated automatically as objects
676 are removed.
677
678 ## remove\_deleted\_object
679
680 ```
681 $kdbx->remove_deleted_object($uuid);
682 ```
683
684 Remove a UUID from the deleted objects list. This list is used to support automatic database merging.
685
686 You typically do not need to call this yourself because the list will be maintained automatically as objects
687 are added.
688
689 ## clear\_deleted\_objects
690
691 Remove all UUIDs from the deleted objects list. This list is used to support automatic database merging, but
692 if you don't need merging then you can clear deleted objects to reduce the database file size.
693
694 ## resolve\_reference
695
696 ```
697 $string = $kdbx->resolve_reference($reference);
698 $string = $kdbx->resolve_reference($wanted, $search_in, $expression);
699 ```
700
701 Resolve a [field reference](https://keepass.info/help/base/fieldrefs.html). A field reference is a kind of
702 string placeholder. You can use a field reference to refer directly to a standard field within an entry. Field
703 references are resolved automatically while expanding entry strings (i.e. replacing placeholders), but you can
704 use this method to resolve on-the-fly references that aren't part of any actual string in the database.
705
706 If the reference does not resolve to any field, `undef` is returned. If the reference resolves to multiple
707 fields, only the first one is returned (in the same order as iterated by ["entries"](#entries)). To avoid ambiguity, you
708 can refer to a specific entry by its UUID.
709
710 The syntax of a reference is: `{REF:<WantedField>@<SearchIn>:<Text>}`. `Text` is a
711 ["Simple Expression"](#simple-expression). `WantedField` and `SearchIn` are both single character codes representing a field:
712
713 - `T` - Title
714 - `U` - UserName
715 - `P` - Password
716 - `A` - URL
717 - `N` - Notes
718 - `I` - UUID
719 - `O` - Other custom strings
720
721 Since `O` does not represent any specific field, it cannot be used as the `WantedField`.
722
723 Examples:
724
725 To get the value of the _UserName_ string of the first entry with "My Bank" in the title:
726
727 ```perl
728 my $username = $kdbx->resolve_reference('{REF:U@T:"My Bank"}');
729 # OR the {REF:...} wrapper is optional
730 my $username = $kdbx->resolve_reference('U@T:"My Bank"');
731 # OR separate the arguments
732 my $username = $kdbx->resolve_reference(U => T => '"My Bank"');
733 ```
734
735 Note how the text is a ["Simple Expression"](#simple-expression), so search terms with spaces must be surrounded in double
736 quotes.
737
738 To get the _Password_ string of a specific entry (identified by its UUID):
739
740 ```perl
741 my $password = $kdbx->resolve_reference('{REF:P@I:46C9B1FFBD4ABC4BBB260C6190BAD20C}');
742 ```
743
744 ## lock
745
746 ```
747 $kdbx->lock;
748 ```
749
750 Encrypt all protected strings and binaries in a database. The encrypted data is stored in
751 a [File::KDBX::Safe](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ASafe) associated with the database and the actual values will be replaced with `undef` to
752 indicate their protected state. Returns itself to allow method chaining.
753
754 You can call `lock` on an already-locked database to memory-protect any unprotected strings and binaries
755 added after the last time the database was locked.
756
757 ## unlock
758
759 ```
760 $kdbx->unlock;
761 ```
762
763 Decrypt all protected strings and binaries in a database, replacing `undef` value placeholders with their
764 actual, unprotected values. Returns itself to allow method chaining.
765
766 ## unlock\_scoped
767
768 ```
769 $guard = $kdbx->unlock_scoped;
770 ```
771
772 Unlock a database temporarily, relocking when the guard is released (typically at the end of a scope). Returns
773 `undef` if the database is already unlocked.
774
775 See ["lock"](#lock) and ["unlock"](#unlock).
776
777 Example:
778
779 ```perl
780 {
781 my $guard = $kdbx->unlock_scoped;
782 ...;
783 }
784 # $kdbx is now memory-locked
785 ```
786
787 ## peek
788
789 ```
790 $string = $kdbx->peek(\%string);
791 $string = $kdbx->peek(\%binary);
792 ```
793
794 Peek at the value of a protected string or binary without unlocking the whole database. The argument can be
795 a string or binary hashref as returned by ["string" in File::KDBX::Entry](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#string) or ["binary" in File::KDBX::Entry](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#binary).
796
797 ## is\_locked
798
799 ```
800 $bool = $kdbx->is_locked;
801 ```
802
803 Get whether or not a database's contents are in a locked (i.e. memory-protected) state. If this is true, then
804 some or all of the protected strings and binaries within the database will be unavailable (literally have
805 `undef` values) until ["unlock"](#unlock) is called.
806
807 ## remove\_empty\_groups
808
809 ```
810 $kdbx->remove_empty_groups;
811 ```
812
813 Remove groups with no subgroups and no entries.
814
815 ## remove\_unused\_icons
816
817 ```perl
818 $kdbx->remove_unused_icons;
819 ```
820
821 Remove icons that are not associated with any entry or group in the database.
822
823 ## remove\_duplicate\_icons
824
825 ```
826 $kdbx->remove_duplicate_icons;
827 ```
828
829 Remove duplicate icons as determined by hashing the icon data.
830
831 ## prune\_history
832
833 ```
834 $kdbx->prune_history(%options);
835 ```
836
837 Remove just as many older historical entries as necessary to get under certain limits.
838
839 - `max_items` - Maximum number of historical entries to keep (default: value of ["history\_max\_items"](#history_max_items), no limit: -1)
840 - `max_size` - Maximum total size (in bytes) of historical entries to keep (default: value of ["history\_max\_size"](#history_max_size), no limit: -1)
841 - `max_age` - Maximum age (in days) of historical entries to keep (default: 365, no limit: -1)
842
843 ## randomize\_seeds
844
845 ```
846 $kdbx->randomize_seeds;
847 ```
848
849 Set various keys, seeds and IVs to random values. These values are used by the cryptographic functions that
850 secure the database when dumped. The attributes that will be randomized are:
851
852 - ["encryption\_iv"](#encryption_iv)
853 - ["inner\_random\_stream\_key"](#inner_random_stream_key)
854 - ["master\_seed"](#master_seed)
855 - ["stream\_start\_bytes"](#stream_start_bytes)
856 - ["transform\_seed"](#transform_seed)
857
858 Randomizing these values has no effect on a loaded database. These are only used when a database is dumped.
859 You normally do not need to call this method explicitly because the dumper does it explicitly by default.
860
861 ## key
862
863 ```
864 $key = $kdbx->key;
865 $key = $kdbx->key($key);
866 $key = $kdbx->key($primitive);
867 ```
868
869 Get or set a [File::KDBX::Key](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey). This is the master key (e.g. a password or a key file that can decrypt
870 a database). You can also pass a primitive castable to a **Key**. See ["new" in File::KDBX::Key](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey#new) for an explanation
871 of what the primitive can be.
872
873 You generally don't need to call this directly because you can provide the key directly to the loader or
874 dumper when loading or dumping a KDBX file.
875
876 ## composite\_key
877
878 ```
879 $key = $kdbx->composite_key($key);
880 $key = $kdbx->composite_key($primitive);
881 ```
882
883 Construct a [File::KDBX::Key::Composite](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey%3A%3AComposite) from a **Key** or primitive. See ["new" in File::KDBX::Key](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey#new) for an
884 explanation of what the primitive can be. If the primitive does not represent a composite key, it will be
885 wrapped.
886
887 You generally don't need to call this directly. The loader and dumper use it to transform a master key into
888 a raw encryption key.
889
890 ## kdf
891
892 ```
893 $kdf = $kdbx->kdf(%options);
894 $kdf = $kdbx->kdf(\%parameters, %options);
895 ```
896
897 Get a [File::KDBX::KDF](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKDF) (key derivation function).
898
899 Options:
900
901 - `params` - KDF parameters, same as `\%parameters` (default: value of ["kdf\_parameters"](#kdf_parameters))
902
903 ## cipher
904
905 ```perl
906 $cipher = $kdbx->cipher(key => $key);
907 $cipher = $kdbx->cipher(key => $key, iv => $iv, uuid => $uuid);
908 ```
909
910 Get a [File::KDBX::Cipher](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ACipher) capable of encrypting and decrypting the body of a database file.
911
912 A key is required. This should be a raw encryption key made up of a fixed number of octets (depending on the
913 cipher), not a [File::KDBX::Key](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AKey) or primitive.
914
915 If not passed, the UUID comes from `$kdbx->headers->{cipher_id}` and the encryption IV comes from
916 `$kdbx->headers->{encryption_iv}`.
917
918 You generally don't need to call this directly. The loader and dumper use it to decrypt and encrypt KDBX
919 files.
920
921 ## random\_stream
922
923 ```perl
924 $cipher = $kdbx->random_stream;
925 $cipher = $kdbx->random_stream(id => $stream_id, key => $key);
926 ```
927
928 Get a [File::KDBX::Cipher::Stream](https://metacpan.org/pod/File%3A%3AKDBX%3A%3ACipher%3A%3AStream) for decrypting and encrypting protected values.
929
930 If not passed, the ID and encryption key comes from `$kdbx->headers->{inner_random_stream_id}` and
931 `$kdbx->headers->{inner_random_stream_key}` (respectively) for KDBX3 files and from
932 `$kdbx->inner_headers->{inner_random_stream_key}` and
933 `$kdbx->inner_headers->{inner_random_stream_id}` (respectively) for KDBX4 files.
934
935 You generally don't need to call this directly. The loader and dumper use it to scramble protected strings.
936
937 # RECIPES
938
939 ## Create a new database
940
941 ```perl
942 my $kdbx = File::KDBX->new;
943
944 my $group = $kdbx->add_group(name => 'Passwords);
945 my $entry = $group->add_entry(
946 title => 'WayneCorp',
947 username => 'bwayne',
948 password => 'iambatman',
949 url => 'https://example.com/login'
950 );
951 $entry->add_auto_type_window_association('WayneCorp - Mozilla Firefox', '{PASSWORD}{ENTER}');
952
953 $kdbx->dump_file('mypasswords.kdbx', 'master password CHANGEME');
954 ```
955
956 ## Read an existing database
957
958 ```perl
959 my $kdbx = File::KDBX->load_file('mypasswords.kdbx', 'master password CHANGEME');
960 $kdbx->unlock; # cause $entry->password below to be defined
961
962 $kdbx->entries->each(sub {
963 my ($entry) = @_;
964 say 'Found password for: ', $entry->title;
965 say ' Username: ', $entry->username;
966 say ' Password: ', $entry->password;
967 });
968 ```
969
970 ## Search for entries
971
972 ```perl
973 my @entries = $kdbx->entries(searching => 1)
974 ->grep(title => 'WayneCorp')
975 ->each; # return all matches
976 ```
977
978 The `searching` option limits results to only entries within groups with searching enabled. Other options are
979 also available. See ["entries"](#entries).
980
981 See ["QUERY"](#query) for many more query examples.
982
983 ## Search for entries by auto-type window association
984
985 ```perl
986 my $window_title = 'WayneCorp - Mozilla Firefox';
987
988 my $entries = $kdbx->entries(auto_type => 1)
989 ->filter(sub {
990 my ($ata) = grep { $_->{window} =~ /\Q$window_title\E/i } @{$_->auto_type_associations};
991 return [$_, $ata->{keystroke_sequence}] if $ata;
992 })
993 ->each(sub {
994 my ($entry, $keys) = @$_;
995 say 'Entry title: ', $entry->title, ', key sequence: ', $keys;
996 });
997 ```
998
999 Example output:
1000
1001 ```
1002 Entry title: WayneCorp, key sequence: {PASSWORD}{ENTER}
1003 ```
1004
1005 ## Remove entries from a database
1006
1007 ```perl
1008 $kdbx->entries
1009 ->grep(notes => {'=~' => qr/too old/i})
1010 ->each(sub { $_->recycle });
1011 ```
1012
1013 Recycle all entries with the string "too old" appearing in the **Notes** string.
1014
1015 ## Remove empty groups
1016
1017 ```perl
1018 $kdbx->groups(algorithm => 'dfs')
1019 ->where(-true => 'is_empty')
1020 ->each('remove');
1021 ```
1022
1023 With the search/iteration `algorithm` set to "dfs", groups will be ordered deepest first and the root group
1024 will be last. This allows removing groups that only contain empty groups.
1025
1026 This can also be done with one call to ["remove\_empty\_groups"](#remove_empty_groups).
1027
1028 # SECURITY
1029
1030 One of the biggest threats to your database security is how easily the encryption key can be brute-forced.
1031 Strong brute-force protection depends on:
1032
1033 - Using unguessable passwords, passphrases and key files.
1034 - Using a brute-force resistent key derivation function.
1035
1036 The first factor is up to you. This module does not enforce strong master keys. It is up to you to pick or
1037 generate strong keys.
1038
1039 The KDBX format allows for the key derivation function to be tuned. The idea is that you want each single
1040 brute-foce attempt to be expensive (in terms of time, CPU usage or memory usage), so that making a lot of
1041 attempts (which would be required if you have a strong master key) gets _really_ expensive.
1042
1043 How expensive you want to make each attempt is up to you and can depend on the application.
1044
1045 This and other KDBX-related security issues are covered here more in depth:
1046 [https://keepass.info/help/base/security.html](https://keepass.info/help/base/security.html)
1047
1048 Here are other security risks you should be thinking about:
1049
1050 ## Cryptography
1051
1052 This distribution uses the excellent [CryptX](https://metacpan.org/pod/CryptX) and [Crypt::Argon2](https://metacpan.org/pod/Crypt%3A%3AArgon2) packages to handle all crypto-related
1053 functions. As such, a lot of the security depends on the quality of these dependencies. Fortunately these
1054 modules are maintained and appear to have good track records.
1055
1056 The KDBX format has evolved over time to incorporate improved security practices and cryptographic functions.
1057 This package uses the following functions for authentication, hashing, encryption and random number
1058 generation:
1059
1060 - AES-128 (legacy)
1061 - AES-256
1062 - Argon2d & Argon2id
1063 - CBC block mode
1064 - HMAC-SHA256
1065 - SHA256
1066 - SHA512
1067 - Salsa20 & ChaCha20
1068 - Twofish
1069
1070 At the time of this writing, I am not aware of any successful attacks against any of these functions. These
1071 are among the most-analyzed and widely-adopted crypto functions available.
1072
1073 The KDBX format allows the body cipher and key derivation function to be configured. If a flaw is discovered
1074 in one of these functions, you can hopefully just switch to a better function without needing to update this
1075 software. A later software release may phase out the use of any functions which are no longer secure.
1076
1077 ## Memory Protection
1078
1079 It is not a good idea to keep secret information unencrypted in system memory for longer than is needed. The
1080 address space of your program can generally be read by a user with elevated privileges on the system. If your
1081 system is memory-constrained or goes into a hibernation mode, the contents of your address space could be
1082 written to a disk where it might be persisted for long time.
1083
1084 There might be system-level things you can do to reduce your risk, like using swap encryption and limiting
1085 system access to your program's address space while your program is running.
1086
1087 **File::KDBX** helps minimize (but not eliminate) risk by keeping secrets encrypted in memory until accessed
1088 and zeroing out memory that holds secrets after they're no longer needed, but it's not a silver bullet.
1089
1090 For one thing, the encryption key is stored in the same address space. If core is dumped, the encryption key
1091 is available to be found out. But at least there is the chance that the encryption key and the encrypted
1092 secrets won't both be paged out together while memory-constrained.
1093
1094 Another problem is that some perls (somewhat notoriously) copy around memory behind the scenes willy nilly,
1095 and it's difficult know when perl makes a copy of a secret in order to be able to zero it out later. It might
1096 be impossible. The good news is that perls with SvPV copy-on-write (enabled by default beginning with perl
1097 5.20) are much better in this regard. With COW, it's mostly possible to know what operations will cause perl
1098 to copy the memory of a scalar string, and the number of copies will be significantly reduced. There is a unit
1099 test named `t/memory-protection.t` in this distribution that can be run on POSIX systems to determine how
1100 well **File::KDBX** memory protection is working.
1101
1102 Memory protection also depends on how your application handles secrets. If your app code is handling scalar
1103 strings with secret information, it's up to you to make sure its memory is zeroed out when no longer needed.
1104 ["erase" in File::KDBX::Util](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AUtil#erase) et al. provide some tools to help accomplish this. Or if you're not too concerned
1105 about the risks memory protection is meant to mitigate, then maybe don't worry about it. The security policy
1106 of **File::KDBX** is to try hard to keep secrets protected while in memory so that your app might claim a high
1107 level of security, in case you care about that.
1108
1109 There are some memory protection strategies that **File::KDBX** does NOT use today but could in the future:
1110
1111 Many systems allow programs to mark unswappable pages. Secret information should ideally be stored in such
1112 pages. You could potentially use [mlockall(2)](http://man.he.net/man2/mlockall) (or equivalent for your system) in your own application to
1113 prevent the entire address space from being swapped.
1114
1115 Some systems provide special syscalls for storing secrets in memory while keeping the encryption key outside
1116 of the program's address space, like `CryptProtectMemory` for Windows. This could be a good option, though
1117 unfortunately not portable.
1118
1119 # QUERY
1120
1121 To find things in a KDBX database, you should use a filtered iterator. If you have an iterator, such as
1122 returned by ["entries"](#entries), ["groups"](#groups) or even ["objects"](#objects) you can filter it using ["where" in File::KDBX::Iterator](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AIterator#where).
1123
1124 ```perl
1125 my $filtered_entries = $kdbx->entries->where(\&query);
1126 ```
1127
1128 A `\&query` is just a subroutine that you can either write yourself or have generated for you from either
1129 a ["Simple Expression"](#simple-expression) or ["Declarative Syntax"](#declarative-syntax). It's easier to have your query generated, so I'll cover
1130 that first.
1131
1132 ## Simple Expression
1133
1134 A simple expression is mostly compatible with the KeePass 2 implementation
1135 [described here](https://keepass.info/help/base/search.html#mode_se).
1136
1137 An expression is a string with one or more space-separated terms. Terms with spaces can be enclosed in double
1138 quotes. Terms are negated if they are prefixed with a minus sign. A record must match every term on at least
1139 one of the given fields.
1140
1141 So a simple expression is something like what you might type into a search engine. You can generate a simple
1142 expression query using ["simple\_expression\_query" in File::KDBX::Util](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AUtil#simple_expression_query) or by passing the simple expression as
1143 a **scalar reference** to `where`.
1144
1145 To search for all entries in a database with the word "canyon" appearing anywhere in the title:
1146
1147 ```perl
1148 my $entries = $kdbx->entries->where(\'canyon', qw[title]);
1149 ```
1150
1151 Notice the first argument is a **scalarref**. This disambiguates a simple expression from other types of
1152 queries covered below.
1153
1154 As mentioned, a simple expression can have multiple terms. This simple expression query matches any entry that
1155 has the words "red" **and** "canyon" anywhere in the title:
1156
1157 ```perl
1158 my $entries = $kdbx->entries->where(\'red canyon', qw[title]);
1159 ```
1160
1161 Each term in the simple expression must be found for an entry to match.
1162
1163 To search for entries with "red" in the title but **not** "canyon", just prepend "canyon" with a minus sign:
1164
1165 ```perl
1166 my $entries = $kdbx->entries->where(\'red -canyon', qw[title]);
1167 ```
1168
1169 To search over multiple fields simultaneously, just list them all. To search for entries with "grocery" (but
1170 not "Foodland") in the title or notes:
1171
1172 ```perl
1173 my $entries = $kdbx->entries->where(\'grocery -Foodland', qw[title notes]);
1174 ```
1175
1176 The default operator is a case-insensitive regexp match, which is fine for searching text loosely. You can use
1177 just about any binary comparison operator that perl supports. To specify an operator, list it after the simple
1178 expression. For example, to search for any entry that has been used at least five times:
1179
1180 ```perl
1181 my $entries = $kdbx->entries->where(\5, '>=', qw[usage_count]);
1182 ```
1183
1184 It helps to read it right-to-left, like "usage\_count is greater than or equal to 5".
1185
1186 If you find the disambiguating structures to be distracting or confusing, you can also the
1187 ["simple\_expression\_query" in File::KDBX::Util](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AUtil#simple_expression_query) function as a more intuitive alternative. The following example is
1188 equivalent to the previous:
1189
1190 ```perl
1191 my $entries = $kdbx->entries->where(simple_expression_query(5, '>=', qw[usage_count]));
1192 ```
1193
1194 ## Declarative Syntax
1195
1196 Structuring a declarative query is similar to ["WHERE CLAUSES" in SQL::Abstract](https://metacpan.org/pod/SQL%3A%3AAbstract#WHERE-CLAUSES), but you don't have to be
1197 familiar with that module. Just learn by examples here.
1198
1199 To search for all entries in a database titled "My Bank":
1200
1201 ```perl
1202 my $entries = $kdbx->entries->where({ title => 'My Bank' });
1203 ```
1204
1205 The query here is `{ title => 'My Bank' }`. A hashref can contain key-value pairs where the key is an
1206 attribute of the thing being searched for (in this case an entry) and the value is what you want the thing's
1207 attribute to be to consider it a match. In this case, the attribute we're using as our match criteria is
1208 ["title" in File::KDBX::Entry](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#title), a text field. If an entry has its title attribute equal to "My Bank", it's
1209 a match.
1210
1211 A hashref can contain multiple attributes. The search candidate will be a match if _all_ of the specified
1212 attributes are equal to their respective values. For example, to search for all entries with a particular URL
1213 **AND** username:
1214
1215 ```perl
1216 my $entries = $kdbx->entries->where({
1217 url => 'https://example.com',
1218 username => 'neo',
1219 });
1220 ```
1221
1222 To search for entries matching _any_ criteria, just change the hashref to an arrayref. To search for entries
1223 with a particular URL **OR** username:
1224
1225 ```perl
1226 my $entries = $kdbx->entries->where([ # <-- Notice the square bracket
1227 url => 'https://example.com',
1228 username => 'neo',
1229 ]);
1230 ```
1231
1232 You can use different operators to test different types of attributes. The ["icon\_id" in File::KDBX::Entry](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AEntry#icon_id)
1233 attribute is a number, so we should use a number comparison operator. To find entries using the smartphone
1234 icon:
1235
1236 ```perl
1237 my $entries = $kdbx->entries->where({
1238 icon_id => { '==', ICON_SMARTPHONE },
1239 });
1240 ```
1241
1242 Note: ["ICON\_SMARTPHONE" in File::KDBX::Constants](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AConstants#ICON_SMARTPHONE) is just a constant from [File::KDBX::Constants](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AConstants). It isn't
1243 special to this example or to queries generally. We could have just used a literal number.
1244
1245 The important thing to notice here is how we wrapped the condition in another arrayref with a single key-value
1246 pair where the key is the name of an operator and the value is the thing to match against. The supported
1247 operators are:
1248
1249 - `eq` - String equal
1250 - `ne` - String not equal
1251 - `lt` - String less than
1252 - `gt` - String greater than
1253 - `le` - String less than or equal
1254 - `ge` - String greater than or equal
1255 - `==` - Number equal
1256 - `!=` - Number not equal
1257 - `<` - Number less than
1258 - `>` - Number greater than
1259 - `<=` - Number less than or equal
1260 - `>=` - Number less than or equal
1261 - `=~` - String match regular expression
1262 - `!~` - String does not match regular expression
1263 - `!` - Boolean false
1264 - `!!` - Boolean true
1265
1266 Other special operators:
1267
1268 - `-true` - Boolean true
1269 - `-false` - Boolean false
1270 - `-not` - Boolean false (alias for `-false`)
1271 - `-defined` - Is defined
1272 - `-undef` - Is not defined
1273 - `-empty` - Is empty
1274 - `-nonempty` - Is not empty
1275 - `-or` - Logical or
1276 - `-and` - Logical and
1277
1278 Let's see another example using an explicit operator. To find all groups except one in particular (identified
1279 by its ["uuid" in File::KDBX::Group](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AGroup#uuid)), we can use the `ne` (string not equal) operator:
1280
1281 ```perl
1282 my $groups = $kdbx->groups->where(
1283 uuid => {
1284 'ne' => uuid('596f7520-6172-6520-7370-656369616c2e'),
1285 },
1286 );
1287 ```
1288
1289 Note: ["uuid" in File::KDBX::Util](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AUtil#uuid) is a little utility function to convert a UUID in its pretty form into bytes.
1290 This utility function isn't special to this example or to queries generally. It could have been written with
1291 a literal such as `"\x59\x6f\x75\x20\x61..."`, but that's harder to read.
1292
1293 Notice we searched for groups this time. Finding groups works exactly the same as it does for entries.
1294
1295 Notice also that we didn't wrap the query in hashref curly-braces or arrayref square-braces. Those are
1296 optional. By default it will only match ALL attributes (as if there were curly-braces).
1297
1298 Testing the truthiness of an attribute is a little bit different because it isn't a binary operation. To find
1299 all entries with the password quality check disabled:
1300
1301 ```perl
1302 my $entries = $kdbx->entries->where('!' => 'quality_check');
1303 ```
1304
1305 This time the string after the operator is the attribute name rather than a value to compare the attribute
1306 against. To test that a boolean value is true, use the `!!` operator (or `-true` if `!!` seems a little too
1307 weird for your taste):
1308
1309 ```perl
1310 my $entries = $kdbx->entries->where('!!' => 'quality_check');
1311 my $entries = $kdbx->entries->where(-true => 'quality_check'); # same thing
1312 ```
1313
1314 Yes, there is also a `-false` and a `-not` if you prefer one of those over `!`. `-false` and `-not`
1315 (along with `-true`) are also special in that you can use them to invert the logic of a subquery. These are
1316 logically equivalent:
1317
1318 ```perl
1319 my $entries = $kdbx->entries->where(-not => { title => 'My Bank' });
1320 my $entries = $kdbx->entries->where(title => { 'ne' => 'My Bank' });
1321 ```
1322
1323 These special operators become more useful when combined with two more special operators: `-and` and `-or`.
1324 With these, it is possible to construct more interesting queries with groups of logic. For example:
1325
1326 ```perl
1327 my $entries = $kdbx->entries->where({
1328 title => { '=~', qr/bank/ },
1329 -not => {
1330 -or => {
1331 notes => { '=~', qr/business/ },
1332 icon_id => { '==', ICON_TRASHCAN_FULL },
1333 },
1334 },
1335 });
1336 ```
1337
1338 In English, find entries where the word "bank" appears anywhere in the title but also do not have either the
1339 word "business" in the notes or are using the full trashcan icon.
1340
1341 ## Subroutine Query
1342
1343 Lastly, as mentioned at the top, you can ignore all this and write your own subroutine. Your subroutine will
1344 be called once for each object being searched over. The subroutine should match the candidate against whatever
1345 criteria you want and return true if it matches or false to skip. To do this, just pass your subroutine
1346 coderef to `where`.
1347
1348 To review the different types of queries, these are all equivalent to find all entries in the database titled
1349 "My Bank":
1350
1351 ```perl
1352 my $entries = $kdbx->entries->where(\'"My Bank"', 'eq', qw[title]); # simple expression
1353 my $entries = $kdbx->entries->where(title => 'My Bank'); # declarative syntax
1354 my $entries = $kdbx->entries->where(sub { $_->title eq 'My Bank' }); # subroutine query
1355 ```
1356
1357 This is a trivial example, but of course your subroutine can be arbitrarily complex.
1358
1359 All of these query mechanisms described in this section are just tools, each with its own set of limitations.
1360 If the tools are getting in your way, you can of course iterate over the contents of a database and implement
1361 your own query logic, like this:
1362
1363 ```perl
1364 my $entries = $kdbx->entries;
1365 while (my $entry = $entries->next) {
1366 if (wanted($entry)) {
1367 do_something($entry);
1368 }
1369 else {
1370 ...
1371 }
1372 }
1373 ```
1374
1375 ## Iteration
1376
1377 Iterators are the built-in way to navigate or walk the database tree. You get an iterator from ["entries"](#entries),
1378 ["groups"](#groups) and ["objects"](#objects). You can specify the search algorithm to iterate over objects in different orders
1379 using the `algorith` option, which can be one of these [constants](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AConstants#iteration):
1380
1381 - `ITERATION_IDS` - Iterative deepening search (default)
1382 - `ITERATION_DFS` - Depth-first search
1383 - `ITERATION_BFS` - Breadth-first search
1384
1385 When iterating over objects generically, groups always precede their direct entries (if any). When the
1386 `history` option is used, current entries always precede historical entries.
1387
1388 If you have a database tree like this:
1389
1390 ```
1391 Database
1392 - Root
1393 - Group1
1394 - EntryA
1395 - Group2
1396 - EntryB
1397 - Group3
1398 - EntryC
1399 ```
1400
1401 - IDS order of groups is: Root, Group1, Group2, Group3
1402 - IDS order of entries is: EntryA, EntryB, EntryC
1403 - IDS order of objects is: Root, Group1, EntryA, Group2, EntryB, Group3, EntryC
1404 - DFS order of groups is: Group2, Group1, Group3, Root
1405 - DFS order of entries is: EntryB, EntryA, EntryC
1406 - DFS order of objects is: Group2, EntryB, Group1, EntryA, Group3, EntryC, Root
1407 - BFS order of groups is: Root, Group1, Group3, Group2
1408 - BFS order of entries is: EntryA, EntryC, EntryB
1409 - BFS order of objects is: Root, Group1, EntryA, Group3, EntryC, Group2, EntryB
1410
1411 # SYNCHRONIZING
1412
1413 **TODO** - This is a planned feature, not yet implemented.
1414
1415 # ERRORS
1416
1417 Errors in this package are constructed as [File::KDBX::Error](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AError) objects and propagated using perl's built-in
1418 mechanisms. Fatal errors are propagated using ["die LIST" in perlfunc](https://metacpan.org/pod/perlfunc#die-LIST) and non-fatal errors (a.k.a. warnings)
1419 are propagated using ["warn LIST" in perlfunc](https://metacpan.org/pod/perlfunc#warn-LIST) while adhering to perl's [warnings](https://metacpan.org/pod/warnings) system. If you're already
1420 familiar with these mechanisms, you can skip this section.
1421
1422 You can catch fatal errors using ["eval BLOCK" in perlfunc](https://metacpan.org/pod/perlfunc#eval-BLOCK) (or something like [Try::Tiny](https://metacpan.org/pod/Try%3A%3ATiny)) and non-fatal
1423 errors using `$SIG{__WARN__}` (see ["%SIG" in perlvar](https://metacpan.org/pod/perlvar#SIG)). Examples:
1424
1425 ```perl
1426 use File::KDBX::Error qw(error);
1427
1428 my $key = ''; # uh oh
1429 eval {
1430 $kdbx->load_file('whatever.kdbx', $key);
1431 };
1432 if (my $error = error($@)) {
1433 handle_missing_key($error) if $error->type eq 'key.missing';
1434 $error->throw;
1435 }
1436 ```
1437
1438 or using `Try::Tiny`:
1439
1440 ```perl
1441 try {
1442 $kdbx->load_file('whatever.kdbx', $key);
1443 }
1444 catch {
1445 handle_error($_);
1446 };
1447 ```
1448
1449 Catching non-fatal errors:
1450
1451 ```perl
1452 my @warnings;
1453 local $SIG{__WARN__} = sub { push @warnings, $_[0] };
1454
1455 $kdbx->load_file('whatever.kdbx', $key);
1456
1457 handle_warnings(@warnings) if @warnings;
1458 ```
1459
1460 By default perl prints warnings to `STDERR` if you don't catch them. If you don't want to catch them and also
1461 don't want them printed to `STDERR`, you can suppress them lexically (perl v5.28 or higher required):
1462
1463 ```
1464 {
1465 no warnings 'File::KDBX';
1466 ...
1467 }
1468 ```
1469
1470 or locally:
1471
1472 ```
1473 {
1474 local $File::KDBX::WARNINGS = 0;
1475 ...
1476 }
1477 ```
1478
1479 or globally in your program:
1480
1481 ```
1482 $File::KDBX::WARNINGS = 0;
1483 ```
1484
1485 You cannot suppress fatal errors, and if you don't catch them your program will exit.
1486
1487 # ENVIRONMENT
1488
1489 This software will alter its behavior depending on the value of certain environment variables:
1490
1491 - `PERL_FILE_KDBX_XS` - Do not use [File::KDBX::XS](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AXS) if false (default: true)
1492 - `PERL_ONLY` - Do not use [File::KDBX::XS](https://metacpan.org/pod/File%3A%3AKDBX%3A%3AXS) if true (default: false)
1493 - `NO_FORK` - Do not fork if true (default: false)
1494
1495 # CAVEATS
1496
1497 Some features (e.g. parsing) require 64-bit perl. It should be possible and actually pretty easy to make it
1498 work using [Math::BigInt](https://metacpan.org/pod/Math%3A%3ABigInt), but I need to build a 32-bit perl in order to test it and frankly I'm still
1499 figuring out how. I'm sure it's simple so I'll mark this one "TODO", but for now an exception will be thrown
1500 when trying to use such features with undersized IVs.
1501
1502 # SEE ALSO
1503
1504 - [KeePass Password Safe](https://keepass.info/) - The original KeePass
1505 - [KeePassXC](https://keepassxc.org/) - Cross-Platform Password Manager written in C++
1506 - [File::KeePass](https://metacpan.org/pod/File%3A%3AKeePass) has overlapping functionality. It's good but has a backlog of some pretty critical bugs and lacks support for newer KDBX features.
1507
1508 # BUGS
1509
1510 Please report any bugs or feature requests on the bugtracker website
1511 [https://github.com/chazmcgarvey/File-KDBX/issues](https://github.com/chazmcgarvey/File-KDBX/issues)
1512
1513 When submitting a bug or request, please include a test-file or a
1514 patch to an existing test-file that illustrates the bug or desired
1515 feature.
1516
1517 # AUTHOR
1518
1519 Charles McGarvey <ccm@cpan.org>
1520
1521 # COPYRIGHT AND LICENSE
1522
1523 This software is copyright (c) 2022 by Charles McGarvey.
1524
1525 This is free software; you can redistribute it and/or modify it under
1526 the same terms as the Perl 5 programming language system itself.
This page took 0.09402 seconds and 4 git commands to generate.