mirror of
https://github.com/bitwarden/server.git
synced 2025-04-15 10:08:14 -05:00

* feat(OPAQUE-KE): added entity * innovation(opaque-ke) : inital database changes * innovation(opaque-ke) : dapper implementation. Key rotation WIP. * Updating credential repository * feat : updating service to use repository to save credential * Fix table creation and make registration work --------- Co-authored-by: Bernd Schoolmann <mail@quexten.com>
14 lines
226 B
Transact-SQL
14 lines
226 B
Transact-SQL
CREATE PROCEDURE [dbo].[OpaqueKeyExchangeCredential_ReadById]
|
|
@Id UNIQUEIDENTIFIER
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OpaqueKeyExchangeCredential]
|
|
WHERE
|
|
[Id] = @Id
|
|
END
|