-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### BREAKING CHANGES - Renamed the main class from 'frejaeID' to new name 'phpFreja' - Renamed the php file from 'frejaeID.php' to 'freja.php' - Output from the checkSignatureRequest have changed ### Changed - Included a fork from [php-jws](https://github.com/Gamegos/php-jws) in repo ### Added - Added JWS validation as suggested by [#1](#1) - PEM-files added for JWS validation
- Loading branch information
Showing
20 changed files
with
948 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# phpFreja | ||
|
||
Changelog for phpFreja. | ||
|
||
The format is based on [Keep a Changelog][keep-a-changelog] | ||
<!-- and this project adheres to [Semantic Versioning][semantic-versioning]. --> | ||
|
||
## [Unreleased] | ||
- Nothing right now | ||
|
||
## [1.0] (2012-05-02) | ||
|
||
### BREAKING CHANGES | ||
- Renamed the main class from 'frejaeID' to new name 'phpFreja' | ||
- Renamed the php file from 'frejaeID.php' to 'freja.php' | ||
- Output from the checkSignatureRequest have changed | ||
|
||
### Changed | ||
- Included a fork from [php-jws](https://github.com/Gamegos/php-jws) in repo | ||
|
||
### Added | ||
- Added JWS validation as suggested by [#1](https://github.com/DSorlov/phpFrejaeid/issues/1) | ||
- PEM-files added for JWS validation | ||
|
||
## [0.1] (2019-10-14) | ||
|
||
### Changed | ||
- Initial releases | ||
|
||
[keep-a-changelog]: http://keepachangelog.com/en/1.0.0/ | ||
[1.0]: https://github.com/DSorlov/phpFreja/releases/tag/v1.0 | ||
[0.1]: https://github.com/DSorlov/phpFreja |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
require_once('freja.php'); | ||
|
||
$frejaApi = new phpFreja('certificate.pfx','CertificatePassword',false); | ||
|
||
$result = $frejaApi->initAuthentication(); | ||
|
||
echo var_dump($result); | ||
|
||
?> |
Oops, something went wrong.