1<?php 2 3namespace SocialDept\AtpClient\Crypto; 4 5class P256 extends AbstractKeypair 6{ 7 const CURVE = 'secp256r1'; 8 9 const ALG = 'ES256'; 10 11 const MULTIBASE_PREFIX = "\x80\x24"; 12}