All Projects → detunized → Lastpass Sharp

detunized / Lastpass Sharp

Licence: mit
LastPass C# API

Projects that are alternatives of or similar to Lastpass Sharp

Passwords
A simple, yet feature rich password manager for Nextcloud
Stars: ✭ 134 (+332.26%)
Mutual labels:  api, password-manager
Passwall Server
PassWall Server is the core backend infrastructure for PassWall platform
Stars: ✭ 489 (+1477.42%)
Mutual labels:  api, password-manager
Syspass
Systems Password Manager
Stars: ✭ 763 (+2361.29%)
Mutual labels:  api, password-manager
Tiktok Api
The Unofficial TikTok API Wrapper In Python
Stars: ✭ 940 (+2932.26%)
Mutual labels:  api
Bj Decoupage Territorial
API pour récupérer les départements, communes, arrondissements et les quartiers du Bénin
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Discord Bot
🤖 Our BIG help in things about moderation and many more useful stuff on our Discord server.
Stars: ✭ 30 (-3.23%)
Mutual labels:  api
Robinhood React
Robinhood trading with ReactJS
Stars: ✭ 31 (+0%)
Mutual labels:  api
Whatsapp Framework
⚗️Whatsapp python api
Stars: ✭ 945 (+2948.39%)
Mutual labels:  api
Server
Serve your Rubix ML models in production with scalable stand-alone model inference servers.
Stars: ✭ 30 (-3.23%)
Mutual labels:  api
Anitop
Anitop is an unofficial simple API from https://anitrendz.net/ site
Stars: ✭ 30 (-3.23%)
Mutual labels:  api
Unifiedmetrics
Fully-featured metrics collection agent for Minecraft servers. Supports Prometheus and InfluxDB. Dashboard included out-of-box.
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Django Graph Api
Pythonic implementation of the GraphQL specification for the Django Web Framework.
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Workfront Api
A Workfront API for Node.js and Web
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Nexrender
📹 Data-driven render automation for After Effects
Stars: ✭ 946 (+2951.61%)
Mutual labels:  api
Laravel Jwt
Laravel with JWT Authentication for API development
Stars: ✭ 31 (+0%)
Mutual labels:  api
Fusio
Open source API management platform
Stars: ✭ 946 (+2951.61%)
Mutual labels:  api
Flutter Woocommerce Api
WooCommerce API in Flutter, connect and start developing with the available endpoints like get products, create orders and more.
Stars: ✭ 31 (+0%)
Mutual labels:  api
Versionist
A plugin for versioning Rails based RESTful APIs.
Stars: ✭ 950 (+2964.52%)
Mutual labels:  api
Behapi
Behat extension for those who want to write acceptances tests for apis
Stars: ✭ 29 (-6.45%)
Mutual labels:  api
Nextjs Graphql Sample
A simple app to demonstrate basic API functions built with REST and GraphQL
Stars: ✭ 29 (-6.45%)
Mutual labels:  api

LastPass C# API

This is unofficial LastPass API.

This is a port of Ruby API.

This library implements fetching and parsing of LastPass data. The library is still in the proof of concept stage and doesn't support all LastPass features yet. Only account information (logins, passwords, urls, etc.) is available so far.

There is a low level API which is used to fetch the data from the LastPass server and parse it. Normally this is not the one you would want to use. What you want is the Vault class which hides all the complexity and exposes all the accounts already parsed, decrypted and ready to use. See the example program for detail.

A quick example of accessing your account information:

using LastPass;

var vault = Vault.Create(username, password);
foreach (var i in vault.Accounts)
    Console.WriteLine("{0}: {1}, {2}", i.Name, i.Username, i.Password);

The blob received from LastPass could be safely stored locally (it's well encrypted) and reused later on.

Contributing

Contribution in any form and shape is very welcome. Have comments, suggestions, patches, pull requests? All of the above are welcome.

License

The library is released under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].