This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Static Class to handle getting information from the request better | |
* | |
* @author D.Holborow | |
* @version 1.0 2006/04/03 | |
* | |
*/ | |
class Request { | |
//-------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in {1..8} | |
do | |
openssl dgst -d -dss1 -sign elise_private_key.pem -out s800000${i}_signature.pem s800000${i}_digest.txt && | |
openssl base64 -in s800000${i}_signature.pem -out s800000${i}_signature_base64.pem | |
done |