package ports // CodeGenerator generates cleartext confirmation codes for new auth // challenges. type CodeGenerator interface { // Generate returns one fresh cleartext confirmation code. Generate() (string, error) }