1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-28 07:49:41 +01:00
bitwarden-browser/libs/importer/spec/test-data/keepassx-csv/testdata.csv.ts
Zilong Xue 81d1274111
Fix: Add TOTP import support to KeePassX CSV importer (#11574)
KeePassX CSV importer was missing TOTP field support. Added logic to parse TOTP fields from the CSV and include them in the vault entries. Added unit tests to verify TOTP import functionality.
2024-10-18 20:37:32 +02:00

4 lines
271 B
TypeScript

export const keepassxTestData = `Title,Username,Password,URL,Notes,TOTP
Example Entry,testuser,password123,https://example.com,Some notes,
Another Entry,anotheruser,anotherpassword,https://another.com,Another set of notes,otpauth://totp/Another?secret=ABCD1234EFGH5678`;