(ctx context.Context)
| 238 | } |
| 239 | |
| 240 | func (d *dependency) EncryptorFactory(ctx context.Context) encrypt.CryptorFactory { |
| 241 | return encrypt.NewCryptorFactory(d.MasterEncryptKeyVault(ctx)) |
| 242 | } |
| 243 | |
| 244 | func (d *dependency) WebAuthn(ctx context.Context) (*webauthn.WebAuthn, error) { |
| 245 | if d.webauthn != nil { |
nothing calls this directly
no test coverage detected