~gandelman-a/ubuntu/precise/keystone/UCA_2012.2.1

« back to all changes in this revision

Viewing changes to tests/signing/README

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Soren Hansen, Logan Rosen, Chuck Short
  • Date: 2012-09-07 13:04:01 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20120907130401-o49wh9xxkr2cmuqx
Tags: 2012.2~rc1~20120906.2517-0ubuntu2
[ Adam Gandelman ]
* Refreshed patches.

[ Soren Hansen ]
* Update debian/watch to account for symbolically named tarballs and
  use newer URL.
* Fix Launchpad URLs in debian/watch.

[ Logan Rosen ]
* Fix control file to suggest python-memcache instead of python-memcached
  (LP: #998991).

[ Chuck Short ]
* New upstream version.
* Dont FTBFS if the testsuite fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
auth_token.pem was constructed using the following command
2
 
 
3
 
openssl cms  -sign -in auth_token.json  -nosmimecap  -signer signing_cert.pem -inkey private_key.pem -outform PEM -nodetach -nocerts  -noattr -out auth_token.pem
4
 
 
 
1
The commands to create the various pem files for the signed tokens and
 
2
revocation list were generated by the associated make file.
 
3
 
 
4
The hashed value in the revocation list was generated using the revoked token using
 
5
the following python code
 
6
 
 
7
from keystone.common import cms,utils
 
8
f=open("tests/signing/auth_token_revoked.pem","r")
 
9
r=f.read()
 
10
utils.hash_signed_token(cms.cms_to_token(r))
 
11
f.close()