()
| 1675 | * Used for auth secrets only; encryption key remains 24 bytes. |
| 1676 | */ |
| 1677 | export const generateAuthSecret = (): string => { |
| 1678 | return randomBytes(32).toString('base64') |
| 1679 | } |
| 1680 | |
| 1681 | export interface GetOrCreateStoredSecretOptions { |
| 1682 | envKey: string |
no outgoing calls
no test coverage detected