1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

[PM-4194] LastPass access library (#6473)

* convert some pma models

* some client work

* fix comment

* add ui classes

* finish implementing login

* more client work

* update cookie comment

* vault class

* some chunk work in client

* convert to array

* parse chunks with binary reader

* parsing and crypto

* parse private keys

* move fetching to rest client

* houskeeping

* set cookies if not browser

* fix field name changes

* extract crypto utils

* error checks on seek

* fix build errors

* fix lint errors

* rename lib folder to access

* fixes

* fix seek function

* support opening federated vaults

* add postJson rest method

* add user type and k2 apis

* pass mode
This commit is contained in:
Kyle Spearrin
2023-10-04 17:07:53 -04:00
committed by GitHub
parent 9212751553
commit f43c3220dc
19 changed files with 1460 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export class SharedFolder {
id: string;
name: string;
encryptionKey: Uint8Array;
}