1: <?php 2: namespace Sotr\Crypto; 3: 4: interface NonceGeneratorInterface 5: { 6: /** 7: * Generates a nonce. 8: * 9: * @return string 10: */ 11: public function generateNonce(); 12: } 13: