Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 639610 Details for
Bug 873858
PEM support should handle AES- and Camellia-encrypted private keys
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
test script, run with path to test program as its argument
testpem.sh (text/plain), 785 bytes, created by
Nalin Dahyabhai
on 2012-11-06 20:49:44 UTC
(
hide
)
Description:
test script, run with path to test program as its argument
Filename:
MIME Type:
Creator:
Nalin Dahyabhai
Created:
2012-11-06 20:49:44 UTC
Size:
785 bytes
patch
obsolete
>#!/bin/sh >password=secret >testalgs=true >testorder=false >iterate=${1:-testpem} >if $testalgs; then > types="nodes des des3 aes128 aes192 aes256 camellia128 camellia192 camellia256" >else > types=nodes >fi >for enc in $types ; do > if test x$enc = xnodes ; then > passin= > passout= > encout= > else > passin="-passin pass:$password" > passout="-passout pass:$password" > encout=-$enc > fi > openssl genrsa $encout $passout -out test-$enc.key 2048 2> /dev/null > openssl req -new -subj /CN=Test -key test-$enc.key $passin -out test-$enc.crt -x509 2> /dev/null >done >for enc in $types ; do > if $testorder; then > echo "$enc: (key first)": > $iterate -p $password -k test-$enc.key -c test-$enc.crt > fi > echo "$enc: (certificate first)": > $iterate -p $password -c test-$enc.crt -k test-$enc.key >done
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 873858
:
639609
| 639610