1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-15 10:08:14 -05:00
bitwarden/src/Sql/Auth/dbo/Stored Procedures/OpaqueKeyExchangeCredential_ReadById.sql
Ike b03e3c3b8c
Innovation/pm 18992/add credential table (#5499)
* 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>
2025-03-17 13:48:30 +01:00

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