Download the PHP package komputerwiz/secure-token without Composer
On this page you can find all versions of the php package komputerwiz/secure-token. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download komputerwiz/secure-token
More information about komputerwiz/secure-token
Files in komputerwiz/secure-token
Package secure-token
Short Description Cryptographically secure encoded tokens
License Apache-2.0
Homepage https://github.com/komputerwiz/secure-token
Informations about the package secure-token
SecureToken Library
Encrypt sensitive data and use the resulting ciphertext as a memento for your applications.
In circumstances of user import or generation, email verification, and/or lost credentials, it is commonplace to send an email with a temporary link to a page where the target user can reset his or her password. Sometimes the state (a generated nonce, request expiration, etc.) of such a transaction is stored on the user account in the server's database. This requires extra maintenance. Instead, the pertinent transaction information can be externalized in a token. If done incorrectly, intercepting and tampering with tokens could allow an attacker to gain unwanted access to an account. The solution presented by this library offers a cryptographically secure means of externalizing state in a token: data is encrypted to ensure confidentiality and then signed to ensure integrity.
Installation
Add the following to your composer.json:
require: {
"komputerwiz/secure-token": "dev-master"
}
Usage
Available encryption methods are:
- AES 256 in CBC mode with SHA-512 HMAC signature (Komputerwiz\Security\Token\SecureToken\Aes256CbcSha512SecureToken)
- AES 256 in CBC mode with SHA-256 HMAC signature (Komputerwiz\Security\Token\SecureToken\Aes256CbcSha256SecureToken)
I will try to implement more as PHP cryptography improves (e.g. once AES 256 GCM is supported). Feel free to implement your own and submit a pull request, too!
Available Decorators:
- Komputerwiz\Security\Token\SecureToken\ExpiringSecureToken - tokens become invalid (and trigger
TokenException
s on decode) after a set interval - Komputerwiz\Security\Token\SecureToken\TimestampedSecureToken - record a timestamp of when the token was issued. Retrieve this timestamp with the
getTimestamp($token)
instance method.
Implementing Your Own SecureToken
There are two ways to implement your own SecureToken encoder:
Implement Komputerwiz\Security\Token\SecureToken\SecureTokenInterface.
This way gives you the most freedom to do what you want, but it's up to you to guarantee security. This might be better for implementing a decorator that delegates to an existing SecureToken implementation.
Extend Komputerwiz\Security\Token\SecureToken\SecureToken
This way adheres to the well-known encrypt and sign paradigm. It takes care of generating an input vector and calling out to encrypt, decrypt, and sign methods that you implement yourself.
License
Copyright 2015 Matthew Barry
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.