serenity-kit / opaque

Secure password based client-server authentication without the server ever obtaining knowledge of the password. Implementation of the OPAQUE protocol.
https://opaque-auth.com
MIT License
45 stars 5 forks source link

Pass custom identifiers as nested optional object #32

Closed steos closed 1 year ago

steos commented 1 year ago

Move optional clientIdentifier and serverIdentifier to nested optional object

identifiers?: {
  client?: string;
  server?: string;
}