2022-04-12 16:20:17 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/command/preparation"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2022-04-12 16:20:17 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Phone struct {
|
2023-03-14 20:20:38 +01:00
|
|
|
Number domain.PhoneNumber
|
2022-04-12 16:20:17 +02:00
|
|
|
Verified bool
|
|
|
|
}
|
|
|
|
|
2023-04-26 07:47:57 +02:00
|
|
|
func newPhoneCode(ctx context.Context, filter preparation.FilterToQueryReducer, alg crypto.EncryptionAlgorithm) (*CryptoCodeWithExpiry, error) {
|
2022-04-12 16:20:17 +02:00
|
|
|
return newCryptoCodeWithExpiry(ctx, filter, domain.SecretGeneratorTypeVerifyPhoneCode, alg)
|
|
|
|
}
|