├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Algorithm │ ├── AlgorithmInterface.php │ ├── AsymmetricInterface.php │ ├── EcdSa.php │ ├── Es256.php │ ├── Es384.php │ ├── Es512.php │ ├── Hmac.php │ ├── Hs256.php │ ├── Hs384.php │ ├── Hs512.php │ ├── None.php │ ├── Ps256.php │ ├── Ps384.php │ ├── Ps512.php │ ├── README.md │ ├── Rs256.php │ ├── Rs384.php │ ├── Rs512.php │ ├── RsaSsaPkcs.php │ ├── RsaSsaPss.php │ └── SymmetricInterface.php ├── Claim │ ├── AbstractClaim.php │ ├── Audience.php │ ├── ClaimInterface.php │ ├── DateValueClaim.php │ ├── Expiration.php │ ├── Factory.php │ ├── IssuedAt.php │ ├── Issuer.php │ ├── JwtId.php │ ├── NotBefore.php │ ├── PrivateClaim.php │ ├── PublicClaim.php │ └── Subject.php ├── Encoding │ ├── Base64.php │ └── EncoderInterface.php ├── Encryption │ ├── AbstractEncryption.php │ ├── Asymmetric.php │ ├── EncryptionInterface.php │ ├── Factory.php │ └── Symmetric.php ├── Exception │ ├── ExpiredException.php │ ├── InvalidAudienceException.php │ ├── InvalidIssuerException.php │ ├── InvalidSignatureException.php │ ├── InvalidSubjectException.php │ ├── TooEarlyException.php │ └── VerificationException.php ├── FactoryTrait.php ├── HeaderParameter │ ├── AbstractParameter.php │ ├── Algorithm.php │ ├── ContentType.php │ ├── Critical.php │ ├── Custom.php │ ├── Factory.php │ ├── JsonWebKey.php │ ├── JwkSetUrl.php │ ├── KeyId.php │ ├── ParameterInterface.php │ ├── Type.php │ ├── X509CertificateChain.php │ ├── X509CertificateSha1Thumbprint.php │ ├── X509CertificateSha256Thumbprint.php │ └── X509Url.php ├── Jwt.php ├── Serialization │ ├── Compact.php │ └── SerializerInterface.php ├── Signature │ ├── Jws.php │ ├── README.md │ └── SignerInterface.php ├── Token.php ├── Token │ ├── Header.php │ ├── Payload.php │ ├── PropertyInterface.php │ └── PropertyList.php └── Verification │ ├── AudienceVerifier.php │ ├── Context.php │ ├── EncryptionVerifier.php │ ├── ExpirationVerifier.php │ ├── IssuerVerifier.php │ ├── NotBeforeVerifier.php │ ├── SubjectVerifier.php │ └── VerifierInterface.php └── test ├── Algorithm ├── Es256Test.php ├── Es384Test.php ├── Es512Test.php ├── Hs256Test.php ├── Hs384Test.php ├── Hs512Test.php ├── Ps256Test.php ├── Ps384Test.php ├── Ps512Test.php ├── Rs256Test.php ├── Rs384Test.php └── Rs512Test.php ├── Claim ├── AudienceTest.php ├── ExpirationTest.php ├── FactoryTest.php ├── IssuedAtTest.php ├── IssuerTest.php ├── JwtIdTest.php ├── NotBeforeTest.php ├── PrivateClaimTest.php ├── PublicClaimTest.php └── SubjectTest.php ├── Encoding └── Base64Test.php ├── Encryption ├── AsymmetricTest.php ├── FactoryTest.php ├── SymmetricTest.php └── UnknownAlgorithmStub.php ├── HeaderParameter ├── AlgorithmTest.php ├── ContentTypeTest.php ├── CriticalTest.php ├── CustomTest.php ├── FactoryTest.php ├── JsonWebKeyTest.php ├── JwkSetUrlTest.php ├── KeyIdTest.php ├── TypeTest.php ├── X509CertificateChainTest.php ├── X509CertificateSha1ThumbprintTest.php ├── X509CertificateSha256ThumbprintTest.php └── X509UrlTest.php ├── Serialization └── CompactTest.php ├── Signature └── JwsTest.php ├── Token ├── HeaderStub.php ├── HeaderTest.php ├── PayloadStub.php ├── PayloadTest.php ├── PropertyListStub.php ├── PropertyListTest.php └── PropertyStub.php └── Verification ├── AudienceVerifierTest.php ├── EncryptionVerifierStub.php ├── EncryptionVerifierTest.php ├── ExpirationVerifierTest.php ├── IssuerVerifierTest.php ├── NotBeforeVerifierTest.php └── SubjectVerifierTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | bin 4 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Algorithm/AlgorithmInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/AlgorithmInterface.php -------------------------------------------------------------------------------- /src/Algorithm/AsymmetricInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/AsymmetricInterface.php -------------------------------------------------------------------------------- /src/Algorithm/EcdSa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/EcdSa.php -------------------------------------------------------------------------------- /src/Algorithm/Es256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Es256.php -------------------------------------------------------------------------------- /src/Algorithm/Es384.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Es384.php -------------------------------------------------------------------------------- /src/Algorithm/Es512.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Es512.php -------------------------------------------------------------------------------- /src/Algorithm/Hmac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Hmac.php -------------------------------------------------------------------------------- /src/Algorithm/Hs256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Hs256.php -------------------------------------------------------------------------------- /src/Algorithm/Hs384.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Hs384.php -------------------------------------------------------------------------------- /src/Algorithm/Hs512.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Hs512.php -------------------------------------------------------------------------------- /src/Algorithm/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/None.php -------------------------------------------------------------------------------- /src/Algorithm/Ps256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Ps256.php -------------------------------------------------------------------------------- /src/Algorithm/Ps384.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Ps384.php -------------------------------------------------------------------------------- /src/Algorithm/Ps512.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Ps512.php -------------------------------------------------------------------------------- /src/Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/README.md -------------------------------------------------------------------------------- /src/Algorithm/Rs256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Rs256.php -------------------------------------------------------------------------------- /src/Algorithm/Rs384.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Rs384.php -------------------------------------------------------------------------------- /src/Algorithm/Rs512.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/Rs512.php -------------------------------------------------------------------------------- /src/Algorithm/RsaSsaPkcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/RsaSsaPkcs.php -------------------------------------------------------------------------------- /src/Algorithm/RsaSsaPss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/RsaSsaPss.php -------------------------------------------------------------------------------- /src/Algorithm/SymmetricInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Algorithm/SymmetricInterface.php -------------------------------------------------------------------------------- /src/Claim/AbstractClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/AbstractClaim.php -------------------------------------------------------------------------------- /src/Claim/Audience.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/Audience.php -------------------------------------------------------------------------------- /src/Claim/ClaimInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/ClaimInterface.php -------------------------------------------------------------------------------- /src/Claim/DateValueClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/DateValueClaim.php -------------------------------------------------------------------------------- /src/Claim/Expiration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/Expiration.php -------------------------------------------------------------------------------- /src/Claim/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/Factory.php -------------------------------------------------------------------------------- /src/Claim/IssuedAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/IssuedAt.php -------------------------------------------------------------------------------- /src/Claim/Issuer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/Issuer.php -------------------------------------------------------------------------------- /src/Claim/JwtId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/JwtId.php -------------------------------------------------------------------------------- /src/Claim/NotBefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/NotBefore.php -------------------------------------------------------------------------------- /src/Claim/PrivateClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/PrivateClaim.php -------------------------------------------------------------------------------- /src/Claim/PublicClaim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/PublicClaim.php -------------------------------------------------------------------------------- /src/Claim/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Claim/Subject.php -------------------------------------------------------------------------------- /src/Encoding/Base64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encoding/Base64.php -------------------------------------------------------------------------------- /src/Encoding/EncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encoding/EncoderInterface.php -------------------------------------------------------------------------------- /src/Encryption/AbstractEncryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encryption/AbstractEncryption.php -------------------------------------------------------------------------------- /src/Encryption/Asymmetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encryption/Asymmetric.php -------------------------------------------------------------------------------- /src/Encryption/EncryptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encryption/EncryptionInterface.php -------------------------------------------------------------------------------- /src/Encryption/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encryption/Factory.php -------------------------------------------------------------------------------- /src/Encryption/Symmetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Encryption/Symmetric.php -------------------------------------------------------------------------------- /src/Exception/ExpiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/ExpiredException.php -------------------------------------------------------------------------------- /src/Exception/InvalidAudienceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/InvalidAudienceException.php -------------------------------------------------------------------------------- /src/Exception/InvalidIssuerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/InvalidIssuerException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSignatureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/InvalidSignatureException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSubjectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/InvalidSubjectException.php -------------------------------------------------------------------------------- /src/Exception/TooEarlyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/TooEarlyException.php -------------------------------------------------------------------------------- /src/Exception/VerificationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Exception/VerificationException.php -------------------------------------------------------------------------------- /src/FactoryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/FactoryTrait.php -------------------------------------------------------------------------------- /src/HeaderParameter/AbstractParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/AbstractParameter.php -------------------------------------------------------------------------------- /src/HeaderParameter/Algorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/Algorithm.php -------------------------------------------------------------------------------- /src/HeaderParameter/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/ContentType.php -------------------------------------------------------------------------------- /src/HeaderParameter/Critical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/Critical.php -------------------------------------------------------------------------------- /src/HeaderParameter/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/Custom.php -------------------------------------------------------------------------------- /src/HeaderParameter/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/Factory.php -------------------------------------------------------------------------------- /src/HeaderParameter/JsonWebKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/JsonWebKey.php -------------------------------------------------------------------------------- /src/HeaderParameter/JwkSetUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/JwkSetUrl.php -------------------------------------------------------------------------------- /src/HeaderParameter/KeyId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/KeyId.php -------------------------------------------------------------------------------- /src/HeaderParameter/ParameterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/ParameterInterface.php -------------------------------------------------------------------------------- /src/HeaderParameter/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/Type.php -------------------------------------------------------------------------------- /src/HeaderParameter/X509CertificateChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/X509CertificateChain.php -------------------------------------------------------------------------------- /src/HeaderParameter/X509CertificateSha1Thumbprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/X509CertificateSha1Thumbprint.php -------------------------------------------------------------------------------- /src/HeaderParameter/X509CertificateSha256Thumbprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/X509CertificateSha256Thumbprint.php -------------------------------------------------------------------------------- /src/HeaderParameter/X509Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/HeaderParameter/X509Url.php -------------------------------------------------------------------------------- /src/Jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Jwt.php -------------------------------------------------------------------------------- /src/Serialization/Compact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Serialization/Compact.php -------------------------------------------------------------------------------- /src/Serialization/SerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Serialization/SerializerInterface.php -------------------------------------------------------------------------------- /src/Signature/Jws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Signature/Jws.php -------------------------------------------------------------------------------- /src/Signature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Signature/README.md -------------------------------------------------------------------------------- /src/Signature/SignerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Signature/SignerInterface.php -------------------------------------------------------------------------------- /src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Token.php -------------------------------------------------------------------------------- /src/Token/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Token/Header.php -------------------------------------------------------------------------------- /src/Token/Payload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Token/Payload.php -------------------------------------------------------------------------------- /src/Token/PropertyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Token/PropertyInterface.php -------------------------------------------------------------------------------- /src/Token/PropertyList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Token/PropertyList.php -------------------------------------------------------------------------------- /src/Verification/AudienceVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/AudienceVerifier.php -------------------------------------------------------------------------------- /src/Verification/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/Context.php -------------------------------------------------------------------------------- /src/Verification/EncryptionVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/EncryptionVerifier.php -------------------------------------------------------------------------------- /src/Verification/ExpirationVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/ExpirationVerifier.php -------------------------------------------------------------------------------- /src/Verification/IssuerVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/IssuerVerifier.php -------------------------------------------------------------------------------- /src/Verification/NotBeforeVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/NotBeforeVerifier.php -------------------------------------------------------------------------------- /src/Verification/SubjectVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/SubjectVerifier.php -------------------------------------------------------------------------------- /src/Verification/VerifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/src/Verification/VerifierInterface.php -------------------------------------------------------------------------------- /test/Algorithm/Es256Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Es256Test.php -------------------------------------------------------------------------------- /test/Algorithm/Es384Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Es384Test.php -------------------------------------------------------------------------------- /test/Algorithm/Es512Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Es512Test.php -------------------------------------------------------------------------------- /test/Algorithm/Hs256Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Hs256Test.php -------------------------------------------------------------------------------- /test/Algorithm/Hs384Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Hs384Test.php -------------------------------------------------------------------------------- /test/Algorithm/Hs512Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Hs512Test.php -------------------------------------------------------------------------------- /test/Algorithm/Ps256Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Ps256Test.php -------------------------------------------------------------------------------- /test/Algorithm/Ps384Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Ps384Test.php -------------------------------------------------------------------------------- /test/Algorithm/Ps512Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Ps512Test.php -------------------------------------------------------------------------------- /test/Algorithm/Rs256Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Rs256Test.php -------------------------------------------------------------------------------- /test/Algorithm/Rs384Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Rs384Test.php -------------------------------------------------------------------------------- /test/Algorithm/Rs512Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Algorithm/Rs512Test.php -------------------------------------------------------------------------------- /test/Claim/AudienceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/AudienceTest.php -------------------------------------------------------------------------------- /test/Claim/ExpirationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/ExpirationTest.php -------------------------------------------------------------------------------- /test/Claim/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/FactoryTest.php -------------------------------------------------------------------------------- /test/Claim/IssuedAtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/IssuedAtTest.php -------------------------------------------------------------------------------- /test/Claim/IssuerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/IssuerTest.php -------------------------------------------------------------------------------- /test/Claim/JwtIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/JwtIdTest.php -------------------------------------------------------------------------------- /test/Claim/NotBeforeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/NotBeforeTest.php -------------------------------------------------------------------------------- /test/Claim/PrivateClaimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/PrivateClaimTest.php -------------------------------------------------------------------------------- /test/Claim/PublicClaimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/PublicClaimTest.php -------------------------------------------------------------------------------- /test/Claim/SubjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Claim/SubjectTest.php -------------------------------------------------------------------------------- /test/Encoding/Base64Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Encoding/Base64Test.php -------------------------------------------------------------------------------- /test/Encryption/AsymmetricTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Encryption/AsymmetricTest.php -------------------------------------------------------------------------------- /test/Encryption/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Encryption/FactoryTest.php -------------------------------------------------------------------------------- /test/Encryption/SymmetricTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Encryption/SymmetricTest.php -------------------------------------------------------------------------------- /test/Encryption/UnknownAlgorithmStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Encryption/UnknownAlgorithmStub.php -------------------------------------------------------------------------------- /test/HeaderParameter/AlgorithmTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/AlgorithmTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/ContentTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/ContentTypeTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/CriticalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/CriticalTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/CustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/CustomTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/FactoryTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/JsonWebKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/JsonWebKeyTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/JwkSetUrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/JwkSetUrlTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/KeyIdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/KeyIdTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/TypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/TypeTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/X509CertificateChainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/X509CertificateChainTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/X509CertificateSha1ThumbprintTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/X509CertificateSha1ThumbprintTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/X509CertificateSha256ThumbprintTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/X509CertificateSha256ThumbprintTest.php -------------------------------------------------------------------------------- /test/HeaderParameter/X509UrlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/HeaderParameter/X509UrlTest.php -------------------------------------------------------------------------------- /test/Serialization/CompactTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Serialization/CompactTest.php -------------------------------------------------------------------------------- /test/Signature/JwsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Signature/JwsTest.php -------------------------------------------------------------------------------- /test/Token/HeaderStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/HeaderStub.php -------------------------------------------------------------------------------- /test/Token/HeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/HeaderTest.php -------------------------------------------------------------------------------- /test/Token/PayloadStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/PayloadStub.php -------------------------------------------------------------------------------- /test/Token/PayloadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/PayloadTest.php -------------------------------------------------------------------------------- /test/Token/PropertyListStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/PropertyListStub.php -------------------------------------------------------------------------------- /test/Token/PropertyListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/PropertyListTest.php -------------------------------------------------------------------------------- /test/Token/PropertyStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Token/PropertyStub.php -------------------------------------------------------------------------------- /test/Verification/AudienceVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/AudienceVerifierTest.php -------------------------------------------------------------------------------- /test/Verification/EncryptionVerifierStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/EncryptionVerifierStub.php -------------------------------------------------------------------------------- /test/Verification/EncryptionVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/EncryptionVerifierTest.php -------------------------------------------------------------------------------- /test/Verification/ExpirationVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/ExpirationVerifierTest.php -------------------------------------------------------------------------------- /test/Verification/IssuerVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/IssuerVerifierTest.php -------------------------------------------------------------------------------- /test/Verification/NotBeforeVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/NotBeforeVerifierTest.php -------------------------------------------------------------------------------- /test/Verification/SubjectVerifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarref/jwt/HEAD/test/Verification/SubjectVerifierTest.php --------------------------------------------------------------------------------