示例#1
0
文件: AuthTest.php 项目: firehed/auth
 private function getKeyContainer() : KeyContainer
 {
     $kc = new KeyContainer();
     $kc->addKey(1, Algorithm::HMAC_SHA_256(), new Secret('top secret'));
     return $kc;
 }