Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/repos/pg-dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dotnet run
var pg = new PostGuard(new PostGuardConfig
{
PkgUrl = "https://pkg.staging.postguard.eu",
CryptifyUrl = "https://fileshare.staging.postguard.eu"
CryptifyUrl = "https://storage.staging.postguard.eu"
});

var sealed = pg.Encrypt(new EncryptInput
Expand Down
2 changes: 1 addition & 1 deletion docs/repos/postguard-dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ using E4A.PostGuard.Models;
var pg = new PostGuard(new PostGuardConfig
{
PkgUrl = "https://pkg.staging.postguard.eu",
CryptifyUrl = "https://fileshare.staging.postguard.eu"
CryptifyUrl = "https://storage.staging.postguard.eu"
});
// PkgUrl and CryptifyUrl must be absolute https:// URLs.
// The constructor throws ArgumentException otherwise.
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/dotnet-encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using E4A.PostGuard.Models;
var pg = new PostGuard(new PostGuardConfig
{
PkgUrl = "https://pkg.staging.postguard.eu",
CryptifyUrl = "https://fileshare.staging.postguard.eu",
CryptifyUrl = "https://storage.staging.postguard.eu",
Headers = new Dictionary<string, string> // optional
{
["X-My-Client"] = "v1.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ using E4A.PostGuard.Models;
var pg = new PostGuard(new PostGuardConfig
{
PkgUrl = "https://pkg.staging.postguard.eu",
CryptifyUrl = "https://fileshare.staging.postguard.eu"
CryptifyUrl = "https://storage.staging.postguard.eu"
});

var sealed = pg.Encrypt(new EncryptInput
Expand Down
Loading