Strengthen Your Randoms With Some Extra Randomness

A Random String & Password Generator

0-9 A-Z a-z +#-*
Extended Special Chars

Fixed Length Random Results

Random Generated Value Sets As JSON Array

Containing Random Numbers, Letters, Hex, MixedChars, Noise Image Links, Lottery Numbers, ...

The Maximum is count=25, Maximum length=1000, or count*length<=10.000

» Find A PHP Example For The Usage Of The Links Above

Random Noise Images As JPEG Or PNG (250x250 px)

Intended Usage

Use the values you get from this tools as standalone or better combine them with your own generated values to get more randomness through values from an external source.

You can use the values of our result sets (set_json) or utilize our noise-images for what your want and how ever you need it.

php:

$randomblock=file_get_contents("https://ipty.de/random/?mode=blocksmall");
$randomnum=file_get_contents("https://ipty.de/random/?mode=num&length=16");
$randomjson=json_decode(file_get_contents("https://ipty.de/random/?mode=set_json&count=5&length=32"));
        
javascript:
        (function() {
            var xhr = new XMLHttpRequest();
            var randurl="https://ipty.de/random/?mode=set_json&count=1&length=10";
            xhr.onreadystatechange = function () {
                if (xhr.readyState == XMLHttpRequest.DONE) {
                    if (xhr.status == 200) {
                        doSomething(JSON.parse(xhr.responseText));
                    } else if (xhr.status == 400) {
                        console.log('Error 400');
                    } else {
                        console.log('Error');
                    }
                }
            };
            xhr.open("GET", randurl, true);
            xhr.send();

            function doSomething(results) {
                document.write(results[0]['letters_uppercase']);
                console.log(results[0]['letters_uppercase']);
                document.write("\n"+'<'+'br>');

                document.write(results[0]['lottery_6of49']);
                console.log(results[0]['lottery_6of49']);

            }
        })();
        

Result Values of set_json count 1, length 10 via PHP

$data=json_decode(file_get_contents("https://ipty.de/random/?mode=set_json&count=1&length=10"));
print_r($data[0]);
echo $data[0]->alphanum_lowercase;
echo '<'.'br>';
echo $data[0]->condition_012;
                    

Browser Plugin

Find a small Password generator @ Chrome Webstore for Chrome and Brave Browser "A Random String & Password Generator"