KeyFormat.php 144 B

1234567891011
  1. <?php
  2. namespace Cn\Ubingo\Security\RSA\Core;
  3. /*
  4. 陈服建(fochen,j@ubingo.cn)
  5. 2015-01-23
  6. */
  7. class KeyFormat{
  8. const ASN=1;
  9. const PEM=2;
  10. }
  11. ?>