Changeset 572
- Timestamp:
- 03/25/07 15:25:11 (2 years ago)
- Files:
-
- trunk/src/tools/create_certs.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/tools/create_certs.rb
r504 r572 53 53 54 54 if ARGV.size != 1 or ARGV[0] == '--help' then 55 puts "-----------------------------------------------------------------------------------------------------------" 55 56 puts "Usage: create_certs.rb <Name>" 57 puts "-----------------------------------------------------------------------------------------------------------" 56 58 puts "This tool creates a directory (all lowercase of name) with a new private key, selfsigned x509 certificate, " + 57 59 "x509 certificate in XML, a private key without passphrase, a file with the passhprase in clear text" 60 puts "-----------------------------------------------------------------------------------------------------------" 58 61 puts "Example: 'ruby create_certs.rb Coronation Encryption' results in:" 59 62 puts "creates a new directory with the name 'coronation_encryption_cert' with the following content:" … … 63 66 puts "coronation_encryption_cacert.pem -> the x509 certificate" 64 67 puts "coronation_encryption_cacert.xml -> the x509 certificate in XML notation for ebXML CPA" 68 exit 65 69 end 66 70
