summaryrefslogtreecommitdiffstats
path: root/src/Support/Constants.php
blob: ba37e6217626d40adf231876937268a8df14243a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace PragmaRX\Google2FA\Support;

class Constants
{
    /**
     * Characters valid for Base 32.
     */
    const VALID_FOR_B32 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567';

    /**
     * Characters valid for Base 32, scrambled.
     */
    const VALID_FOR_B32_SCRAMBLED = '234567QWERTYUIOPASDFGHJKLZXCVBNM';

    /**
     * Argument not set constant.
     */
    const ARGUMENT_NOT_SET = '__not_set__';
}