Skip to content

Commit

Permalink
Initial commit - EasyRSA
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Nov 19, 2015
1 parent 06cf6fc commit fde3f98
Show file tree
Hide file tree
Showing 10 changed files with 1,473 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# EasyRSA

Simple and Secure Wrapper for PHPSecLib
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "paragonie/easyrsa",
"description": "Simple and secure asymmetric encryption powered by PHPSecLib",
"keywords": [
"RSA",
"public-key",
"asymmetric",
"cryptography"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ParagonIE\\EasyRSA\\": "src"
}
},
"require": {
"phpseclib/phpseclib": "^2.0",
"defuse/php-encryption": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "4.*|5.*"
},
"suggest": {
"ext-libsodium": "Libsodium offers far better cryptography than RSA can ever offer. Use libsodium instead of EasyRSA.",
"paragonie/halite": "A simple and secure libsodium wrapper. Consider using Halite instead of EasyRSA."
}
}
Loading

0 comments on commit fde3f98

Please sign in to comment.