(authCode: string)
| 20 | const CONSUMED_CLI_AUTH_CODE_TOKEN_VALUE = 'consumed' |
| 21 | |
| 22 | function getCliAuthCodeHash(authCode: string): string { |
| 23 | return createHash('sha256').update(authCode.trim()).digest('hex') |
| 24 | } |
| 25 | |
| 26 | export function buildCliAuthCode( |
| 27 | fingerprintId: string, |
no outgoing calls
no test coverage detected