IDataProtectionFirebase 1.1.1.8
dotnet add package IDataProtectionFirebase --version 1.1.1.8
NuGet\Install-Package IDataProtectionFirebase -Version 1.1.1.8
<PackageReference Include="IDataProtectionFirebase" Version="1.1.1.8" />
paket add IDataProtectionFirebase --version 1.1.1.8
#r "nuget: IDataProtectionFirebase, 1.1.1.8"
// Install IDataProtectionFirebase as a Cake Addin #addin nuget:?package=IDataProtectionFirebase&version=1.1.1.8 // Install IDataProtectionFirebase as a Cake Tool #tool nuget:?package=IDataProtectionFirebase&version=1.1.1.8
IDataProtectionFirebase
A .NET library for IDataProtection to store keys in a Google Firebase instance.
GitHub Repository URL: https://github.com/kibblewhite/IDataProtectionFirebase
NuGet Package URL: https://www.nuget.org/packages/IDataProtectionFirebase/
Getting Started
Follow the examples below to see how the library can be integrated into your application.
public void ConfigureServices(IServiceCollection services)
{
services.AddDataProtection()
.PersistKeysToFirebase(service_name, json_credentials);
services.AddMvc();
}
If the FirestoreDb instance is already in the running assembly's service collection ready for DI, then the following code can be used: The library will throw an ArgumentNullException if the FirestoreDb can not be located.
public void ConfigureServices(IServiceCollection services)
{
service_container.AddDataProtection()
.PersistKeysToFirebase(service_name);
services.AddMvc();
}
To see a examples of this code, please visit the UnitTests.cs
within the Tests project. If you wish to run the unit tests, you will need to have a valid credentials.json
in the unit test project directory that has access to your Firebase DB instance from GCP.
Service Name
The service_name
can be any "reasonable" string value that you wish. It is to help you identify the data entries in the firebase database
JSON Credentials
You will also need to create a service account key (which has access to the Firebase DB) in the form of a JSON key file (credentials.json)
Read this into the json_credentials
variable.
You can get this from the Google Cloud Platform console (GCP), for more information on this read the following:
Getting Help
Unfortunately it is only me, feel free to submit bug reports or feature requests, but please keep in mind that it is not a priority for me to keep this project updated or operational.
Note
Check out the unit tests and you can also use the credentials.sample.json
as reference.
This is just a note more for me than for you, to remind me of the nuget publish command:
dotnet nuget push IDataProtectionFirebase\bin\Release\net6.0\publish\IDataProtectionFirebase.*.nupkg -k [api-key-here /] -s https://api.nuget.org/v3/index.json
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Google.Cloud.Firestore (>= 3.0.0)
- Microsoft.AspNetCore.DataProtection (>= 7.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.