For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
cd ~/ | |
wget http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p484.tar.gz | |
tar -xzf ruby-1.9.3-p484.tar.gz | |
cd ruby-1.9.3-p484 | |
./configure | |
make | |
sudo make install | |
sudo service nginx restart |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
package main | |
import ( | |
"log" | |
"sync" | |
apns "github.com/sideshow/apns2" | |
"github.com/sideshow/apns2/certificate" | |
) |
package main | |
import ( | |
"log" | |
"sync" | |
"github.com/sideshow/apns2" | |
"github.com/sideshow/apns2/certificate" | |
) |
package main | |
import ( | |
"flag" | |
"log" | |
"sync" | |
"github.com/apple/foundationdb/bindings/go/src/fdb" | |
) |