blob: 36f0ff8826b4e11ede357bfb0b97b9e9f61ef2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace PragmaRX\Google2FA\Tests;
class Constants
{
const SECRET = 'ADUMJO5634NPDEKW';
const SHORT_SECRET = 'ADUMJO5';
const INVALID_SECRET = 'DUMJO5634NPDEKX@';
const WRONG_SECRET = 'ADUMJO5634NPDEKX';
const URL = 'https://chart.googleapis.com/chart?chs=200x200&chld=M|0&cht=qr&chl=otpauth%3A%2F%2Ftotp%2FPragmaRX%3Aacr%252Bpragmarx%2540antoniocarlosribeiro.com%3Fsecret%3DADUMJO5634NPDEKW%26issuer%3DPragmaRX';
}
|