Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoca
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ai
autoca
Commits
1adf6ab2
"git@git.autistici.org:ai/noblogs-wp.git" did not exist on "4bd8af92b56983ffcf9c2c7d4b4e37ba61ee0304"
Commit
1adf6ab2
authored
12 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
add a PKCS#12 file to the zip archive (for quick configuration of the android client)
parent
ad7158b5
No related branches found
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
autovpn/vpn_app.py
+37
-1
37 additions, 1 deletion
autovpn/vpn_app.py
with
37 additions
and
1 deletion
autovpn/vpn_app.py
+
37
−
1
View file @
1adf6ab2
...
...
@@ -2,6 +2,9 @@ import datetime
import
functools
import
logging
import
os
import
shutil
import
subprocess
import
tempfile
import
uuid
import
zipfile
from
cStringIO
import
StringIO
...
...
@@ -105,6 +108,18 @@ The ZIP file contains a configuration for Tunnelblick. Double-click
on it and it will install itself automatically.
Android
-------
Check out the OpenVPN app at http://code.google.com/p/ics-openvpn/,
to use it:
- Select the PKCS12 format for the credentials and select the
<uuid>.pfx file from the ZIP archive.
- Ensure that LZO compression is disabled.
References
----------
...
...
@@ -118,6 +133,24 @@ Further info:
'''
def
to_pkcs12
(
crt_pem
,
key_pem
,
ca_pem
):
"""
Pack credentials into a PKCS12-format buffer.
"""
tmpdir
=
tempfile
.
mkdtemp
()
try
:
for
name
,
content
in
[
(
'
crt.pem
'
,
crt_pem
),
(
'
key.pem
'
,
key_pem
),
(
'
ca.pem
'
,
ca_pem
)]:
with
open
(
os
.
path
.
join
(
tmpdir
,
name
))
as
fd
:
fd
.
write
(
content
)
pipe
=
subprocess
.
Popen
(
[
'
openssl
'
,
'
pkcs12
'
,
'
-export
'
,
'
-password
'
,
'
pass:
'
,
'
-in
'
,
'
crt.pem
'
,
'
-inkey
'
,
'
key.pem
'
,
'
-CAfile
'
,
'
ca.pem
'
],
cwd
=
tmpdir
,
stdout
=
subprocess
.
PIPE
)
return
pipe
.
communicate
()[
0
]
finally
:
shutil
.
rmtree
(
tmpdir
)
def
csrf
(
methods
=
(
'
POST
'
,)):
def
_csrf
(
fn
):
@functools.wraps
(
fn
)
...
...
@@ -214,13 +247,16 @@ def new_cert_dl():
'
vpn_endpoint
'
:
current_app
.
config
[
'
VPN_ENDPOINT
'
],
'
vpn_site
'
:
current_app
.
config
[
'
VPN_SITE_URL
'
],
'
expiry_date
'
:
expiry_date
.
strftime
(
'
%Y/%m/%d
'
)}
ca_pem
=
g
.
ca
.
get_ca
()
crt_pem
=
crypto
.
dump_certificate
(
crypto
.
FILETYPE_PEM
,
cert
)
key_pem
=
crypto
.
dump_privatekey
(
crypto
.
FILETYPE_PEM
,
pkey
)
pkcs12
=
to_pkcs12
(
crt_pem
,
key_pem
,
ca_pem
)
manifest
=
[
(
'
ca.crt
'
,
g
.
ca
.
get_ca
()
),
(
'
ca.crt
'
,
ca_pem
),
(
'
crl.pem
'
,
g
.
ca
.
get_crl
(
format
=
'
pem
'
)),
(
'
%s.crt
'
%
cn
,
crt_pem
),
(
'
%s.key
'
%
cn
,
key_pem
),
(
'
%s.pfx
'
%
cn
,
pkcs12
),
(
'
openvpn-%s.conf
'
%
cn
,
OPENVPN_CONFIG_TEMPLATE
%
vars
),
(
'
README.txt
'
,
README_TEMPLATE
%
vars
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment