for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSecurity\Key;
/**
* A class representing an asymmetric key.
*
* This class can be extended to implement public or private keys.
* @package simplesamlphp/xml-security
*/
abstract class AsymmetricKey extends AbstractKey
{
}