forked from samee/obliv-c
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Evans
committed
Mar 13, 2016
1 parent
cd3ee83
commit 6a50733
Showing
74 changed files
with
3,599 additions
and
78 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{{ partial "header.html" . }} | ||
<body> | ||
<div id="layout" class="pure-g"> | ||
{{ partial "sidebar.html" . }} | ||
|
||
<div class="content pure-u-1 pure-u-md-3-4"> | ||
<a name="top"></a> | ||
{{ partial "listtop.html" . }} | ||
|
||
<div class="posts"> | ||
THERE ARE NO POSTS | ||
{{ $Site := .Site }} | ||
{{ range .Site.Pages }} | ||
<section class="post"> | ||
<header class="post-header"> | ||
{{ if .Params.thumbnail }} | ||
<div class="post-avatar-wrapper"> | ||
<img class="post-avatar" alt="" src="{{ .Params.thumbnail }}"> | ||
</div> | ||
{{ end }} | ||
<h1 class="post-title"> | ||
<a href="{{ .RelPermalink }}">{{ .Title }}</a> | ||
</h1> | ||
</header> | ||
<p class="post-meta"> | ||
{{ if not .Params.nodate }} | ||
<span class="post-date"> | ||
<span class="post-date-day"><sup>{{ .Date.Format "2" }}</sup></span><span class="post-date-separator">/</span><span class="post-date-month">{{ .Date.Format "Jan" }}</span> <span class="post-date-year">{{ .Date.Format "2006" }}</span> | ||
</span> | ||
{{ end }} | ||
{{ if not .Params.noauthor }} | ||
{{ if .Params.author }}By <a class="post-author" {{ if .Params.authorlink }}href="{{ .Params.authorlink }}"{{ end }}>{{ .Params.author }}</a>{{ end }} | ||
{{ end }} | ||
{{ if not .Params.noread }} | ||
<span class="post-reading-time"><i class="fa fa-clock-o"></i> <em>{{.ReadingTime}} min. read</em></span> | ||
{{ end }} | ||
{{ if .Params.categories }} | ||
<div class="post-categories"> | ||
{{ range .Params.categories }} | ||
<a class="post-category post-category-{{ . | urlize }}" href="{{ $Site.BaseURL }}/categories/{{ . | urlize }}">{{ . }}</a> | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
</p> | ||
<article class="post-summary"> | ||
{{ .Summary }} | ||
</article> | ||
<div class="read-more-link"> | ||
<a href="{{ .RelPermalink }}"><span class="read-more-slashes">//</span>Read More...</a> | ||
</div> | ||
</section> | ||
{{ end }} | ||
</div> | ||
|
||
{{ partial "footer.html" . }} | ||
</div> | ||
</div> | ||
{{ partial "bodyend.html" . }} | ||
</body> | ||
</html> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# ScriptInspector | ||
Website for ScriptInspector.org |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
baseurl = "http://oblivc.org" | ||
languageCode = "en-us" | ||
title = "Obliv-C" | ||
subtitle = "A Language for Extensible Data-Oblivious Computation" | ||
|
||
[params] | ||
sidebartitle = "Obliv-C" | ||
sidebartagline = "A Language for Extensible Data-Oblivious Computation" | ||
nodate = true | ||
noauthor = true | ||
noread = true | ||
nopaging=true | ||
notoc=true | ||
|
||
[[menu.footer]] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dave@ursuton.17228 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
+++ | ||
title = "Obliv-C: A Language for Extensible Data-Oblivious Computation" | ||
+++ | ||
|
||
### Obliv-C: A Language for Extensible Data-Oblivious Computation | ||
|
||
Obliv-C is a simple GCC wrapper that makes it easy to embed secure | ||
computation protocols inside regular C programs. The idea is simple: if | ||
you are performing a multi-party distributed computation with sensitive | ||
data, just write it in our Obliv-C langauge and compile/link it with | ||
your project. The result will be a secure multi-party cryptographic | ||
protocol that performs this operation without revealing any of the | ||
inputs or intermediate values of the computation to any of the | ||
parties. Only the outputs are finally shared. | ||
|
||
### Paper | ||
|
||
### Tutorial | ||
|
||
### Projects Using Obliv-C | ||
|
||
|
||
|
||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{{ partial "header.html" . }} | ||
<body> | ||
<div id="layout" class="pure-g"> | ||
{{ partial "sidebar.html" . }} | ||
|
||
<div class="content pure-u-1 pure-u-md-3-4"> | ||
<a name="top"></a> | ||
{{ partial "listtop.html" . }} | ||
|
||
<div class="posts"> | ||
THERE ARE NO POSTS | ||
{{ $Site := .Site }} | ||
{{ range .Site.Pages }} | ||
<section class="post"> | ||
<header class="post-header"> | ||
{{ if .Params.thumbnail }} | ||
<div class="post-avatar-wrapper"> | ||
<img class="post-avatar" alt="" src="{{ .Params.thumbnail }}"> | ||
</div> | ||
{{ end }} | ||
<h1 class="post-title"> | ||
<a href="{{ .RelPermalink }}">{{ .Title }}</a> | ||
</h1> | ||
</header> | ||
<p class="post-meta"> | ||
{{ if not .Params.nodate }} | ||
<span class="post-date"> | ||
<span class="post-date-day"><sup>{{ .Date.Format "2" }}</sup></span><span class="post-date-separator">/</span><span class="post-date-month">{{ .Date.Format "Jan" }}</span> <span class="post-date-year">{{ .Date.Format "2006" }}</span> | ||
</span> | ||
{{ end }} | ||
{{ if not .Params.noauthor }} | ||
{{ if .Params.author }}By <a class="post-author" {{ if .Params.authorlink }}href="{{ .Params.authorlink }}"{{ end }}>{{ .Params.author }}</a>{{ end }} | ||
{{ end }} | ||
{{ if not .Params.noread }} | ||
<span class="post-reading-time"><i class="fa fa-clock-o"></i> <em>{{.ReadingTime}} min. read</em></span> | ||
{{ end }} | ||
{{ if .Params.categories }} | ||
<div class="post-categories"> | ||
{{ range .Params.categories }} | ||
<a class="post-category post-category-{{ . | urlize }}" href="{{ $Site.BaseURL }}/categories/{{ . | urlize }}">{{ . }}</a> | ||
{{ end }} | ||
</div> | ||
{{ end }} | ||
</p> | ||
<article class="post-summary"> | ||
{{ .Summary }} | ||
</article> | ||
<div class="read-more-link"> | ||
<a href="{{ .RelPermalink }}"><span class="read-more-slashes">//</span>Read More...</a> | ||
</div> | ||
</section> | ||
{{ end }} | ||
</div> | ||
|
||
{{ partial "footer.html" . }} | ||
</div> | ||
</div> | ||
{{ partial "bodyend.html" . }} | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{{ partial "header.html" . }} | ||
<body> | ||
<div id="layout" class="pure-g"> | ||
{{ partial "sidebar.html" . }} | ||
|
||
<div class="content pure-u-1 pure-u-md-3-4"> | ||
<a name="top"></a> | ||
{{ partial "listtop.html" . }} | ||
|
||
|
||
<section id="main"> | ||
<div> | ||
{{ range first 1 .Site.Pages }} | ||
{{ .Content }} | ||
{{ end }} | ||
</div> | ||
</section> | ||
|
||
{{ partial "footer.html" . }} | ||
</div> | ||
</div> | ||
{{ partial "bodyend.html" . }} | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[<a href="{{ .Site.BaseURL }}/docs/{{ index .Params 0 }}">PDF</a>] |
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
oblivc.org |
Oops, something went wrong.