Skip to content

Commit

Permalink
[PM-4167] fix: allow credentials to be created without encryption sup…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
coroiu committed Oct 12, 2023
1 parent 4b9b047 commit 3ba6c73
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bitwarden_license/src/Scim/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion bitwarden_license/src/Sso/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,14 @@ public class WebAuthnCredentialRequestModel
[Required]
public bool SupportsPrf { get; set; }

[Required]
[EncryptedString]
[EncryptedStringLength(2000)]
public string EncryptedUserKey { get; set; }

[Required]
[EncryptedString]
[EncryptedStringLength(2000)]
public string EncryptedPublicKey { get; set; }

[Required]
[EncryptedString]
[EncryptedStringLength(2000)]
public string EncryptedPrivateKey { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Billing/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/Events/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/EventsProcessor/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/Icons/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/Identity/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion src/Notifications/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion test/Api.IntegrationTest/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion util/Server/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
}
}
}
}
}

0 comments on commit 3ba6c73

Please sign in to comment.