Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <timo@animo.id>
  • Loading branch information
TimoGlastra committed Nov 26, 2024
1 parent 157de4d commit 0b29db3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/server/oauth2/callbacks.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { clientAuthenticationNone, type CallbackContext, type Jwk } from '@animo-id/oauth2'
import { getRandomValues, createHash } from 'node:crypto'
import { importJWK, SignJWT, exportJWK } from 'jose'
import { createHash, getRandomValues } from 'node:crypto'
import { type CallbackContext, type Jwk, clientAuthenticationNone } from '@animo-id/oauth2'
import { SignJWT, exportJWK, importJWK } from 'jose'
import { WALLET_PROVIDER_P256_PRIVATE_JWK } from '../../constants'

export const getOauth2Callbacks = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/server/routes/getWalletAttestation.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { randomUUID } from 'node:crypto'
import type { Jwk } from '@animo-id/oauth2'
import type { NextFunction, Request, Response } from 'express'
import { z } from 'zod'
import type { Jwk } from '@animo-id/oauth2'
import { createClientAttestation } from '../oauth2/clientAttestations'
import { randomUUID } from 'node:crypto'

export const getWalletAttestationSchema = z.object({
jwk: z.object({
Expand Down

0 comments on commit 0b29db3

Please sign in to comment.