Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: chrome/test/data/chromeos/network_settings/policy.onc

Issue 10944009: Implementation of ONC signature, validator and normalizer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@gperffix
Patch Set: Addressed comments (formatting, sorting). Minor change in policy.onc. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 { "GUID": "123",
2 "Type": "VPN",
3 "Name": "testopenvpn",
4 "IPConfigs": [
5 { "Type": "IPv4",
6 "IPAddress": "127.0.0.1" }
7 ],
8 "VPN": {
9 "Host": "policys host",
10 "Recommended": ["Host"],
11 "Type": "OpenVPN",
12 "OpenVPN": {
13 "Port": 1194,
14 "Username": "policy user",
15 "Recommended": [ "Username", "Password" ],
16 "ClientCertType": "Pattern",
17 "ClientCertPattern": {
18 "IssuerCARef": [ "openvpn-test-ca" ],
19 "Recommended": [ "EnrollmentURI", "IssuerCARef" ]
20 }
21 },
22 "IPsec": {
23 "PSK": "sharedkey"
24 }
25 }
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698