Computing on Encrypted Data
|
|
|
- Margaret Norton
- 9 years ago
- Views:
Transcription
1 Computing on Encrypted Data Secure Internet of Things Seminar David Wu January, 2015
2 Smart Homes New Applications in the Internet of Things aggregation + analytics usage statistics and reports report energy consumption
3 The Power of the Cloud BIG DATA Question: provide service, preserve privacy analytics recommendations personalization lots of user information = big incentives
4 Secure Multiparty Computation (MPC) Multiple parties want to compute a joint function on private inputs privacy guarantee: no party learns anything extra about other parties inputs at end of computation, each party learns the average power consumption private input: individual power consumption
5 Two Party Computation (2PC) Simpler scenario: two-party computation (2PC) 2PC: Mostly solved problem: Yao s circuits [Yao82] Express function as a Boolean circuit garbled version of circuit oblivious transfer to obtain garbled inputs Party A output of garbled circuit Party B
6 Two-Party Computation (2PC) Yao s circuits very efficient and heavily optimized [KSS09] Evaluating circuits with 1.29 billion gates in 18 minutes (1.2 gates / µs) [ALSZ13] Yao s circuit provides semi-honest security: malicious security via cut-and-choose, but not as efficient
7 Going Beyond 2PC General MPC also solved [GMW87] secret share inputs with all parties jointly evaluate circuit, gate-bygate
8 Secure Multiparty Computation General MPC suffices to evaluate arbitrary functions amongst many parties: should be viewed as a feasibility result Limitations of general MPC many rounds of communication / interaction possibly large bandwidth hard to coordinate interactions with large number of parties Other considerations (not discussed): fairness, guaranteeing output delivery
9 This Talk: Homomorphic Encryption Many rounds of interaction Boolean circuits (typically) Few rounds of interaction Arithmetic circuits Interaction GMW Protocol and General MPC Custom Protocols Homomorphic Encryption General methods for secure computation
10 Homomorphic Encryption Homomorphic encryption scheme: encryption scheme that allows computation on ciphertexts Comprises of three functions: m pk Enc c c sk Dec m Must satisfy usual notion of semantic security
11 Homomorphic Encryption Homomorphic encryption scheme: encryption scheme that allows computation on ciphertexts Comprises of three functions: c 1 = Enc pk (m 1 ) c 2 = Enc pk (m 2 ) ek Eval f c 3 Dec sk Eval f ek, c 1, c 2 = f m 1, m 2
12 Fully Homomorphic Encryption (FHE) Many homomorphic encryption schemes: ElGamal: f m 0, m 1 = m 0 m 1 Paillier: f m 0, m 1 = m 0 + m 1 Fully homomorphic encryption: homomorphic with respect to two operations: addition and multiplication [BGN05]: one multiplication, many additions [Gen09]: first FHE construction from lattices
13 Privately Outsourcing Computation encrypted results of computation encrypted data Leveraging computational power of the cloud
14 Machine Learning in the Cloud aggregation + analytics 3. Compute model homomorphically 1. Publish public key 4. Decrypt to obtain model report energy consumption 2. Upload encrypted values
15 Machine Learning in the Cloud Passive adversary sitting in the cloud does not see client data Power company only obtains resulting model, not individual data points (assuming no collusion) Parties only need to communicate with cloud (the power of public-key encryption)
16 Big Data, Limited Computation Homomorphic encryption is expensive, especially compared to symmetric primitives such as AES Can be unsuitable for encrypting large volumes of data
17 Hybrid Homomorphic Encryption Enc pk k, AES k m Encrypt AES key using homomorphic encryption (expensive), encrypt data using AES (cheap) Current performance: 400 seconds to decrypt 120 AES-128 blocks (4 s/block) [GHS15] AES k m encrypt Enc pk k Homomorphically evaluate the AES decryption circuit evaluate AES decryption homomorphic evaluation Enc pk AES k m Enc pk m Enc pk f m
18 Constructing FHE FHE: can homomorphically compute arbitrary number of operations Difficult to construct start with something simpler: somewhat homomorphic encryption scheme (SWHE) SWHE: can homomorphically evaluate a few operations (circuits of low depth)
19 Gentry s Blueprint: SWHE to FHE Gentry described general bootstrapping method of achieving FHE from SWHE [Gen 09] Starting point: SWHE scheme that can evaluate its own decryption circuit
20 Gentry s Blueprint: From SWHE to FHE recrypt functionality m ciphertext encrypt the ciphertext m sk encryption of secret key homomorphically evaluate the decryption function m many operations remaining no operations remaining Homomorphism Remaining
21 Bootstrappable SWHE First bootstrappable construction by Gentry based on ideal lattices [Gen09] Tons of progress in constructions of FHE in the ensuing years [vdghv10, SV10, BV11a, BV11b, Bra12, BGV12, GHS12, GSW13], and more! Have been simplified enough that the description can fit in a blog post [BB12]
22 Conceptually Simple FHE [GSW13] Ciphertexts are n n matrices over Z q Secret key is a vector v Z q n v is a noisy eigenvector of C C v = m v + e ciphertext secret key message noise Encryption of m satisfies above relation
23 Conceptually Simple FHE [GSW13] Suppose that v has a large component v i C v = m v + e ciphertext secret key message noise Can decrypt as follows: C i, v C i is i th row of C v i = mv i + e i v i = m Relation holds if e i v i < 1 2
24 Conceptually Simple FHE [GSW13] Homomorphic addition C 1 v = m 1 v + e 1 C 2 v = m 2 v + e 2 C 1 + C 2 v = m 1 + m 2 v + e 1 + e 2 homomorphic addition is matrix addition noise terms also add
25 Conceptually Simple FHE [GSW13] Homomorphic multiplication C 1 v = m 1 v + e 1 C 2 v = m 2 v + e 2 C 1 C 2 v = m 1 m 2 v + C 1 e 2 + m 2 e 1 homomorphic multiplication is matrix multiplication noise could blow up if C 1 or m 2 are not small
26 Conceptually Simple FHE [GSW13] Basic principles: ciphertexts are matrices, messages are approximate eigenvalues Homomorphic operations correspond to matrix addition and multiplication (and some tricks to constrain noise) Hardness based on learning with errors (LWE) [Reg05]
27 The Story so Far Simple FHE schemes exist But bootstrapping is expensive! At 76 bits of security: each bootstrapping operation requires 320 seconds and 3.4 GB of memory [HS14] Other implementations exist, but generally less flexible / efficient SWHE (without bootstrapping) closer to practical: can evaluate shallow circuits
28 Application: Statistical Analysis Consider simple statistical models: computing the mean or covariance (for example, average power consumption) Problem: given n vectors x 1,, x n, compute Mean: μ = 1 n i=1 n x i Covariance: Σ X = 1 n 2 (nxt X
29 Application: Statistical Analysis Can also perform linear regression: given design matrix X and response vector y, evaluate normal equations θ = X T X 1 X T y Matrix inversion (over Q) using Cramer s rule Depth n for n-dimensional data
30 Batch Computation [SV11] Algebraic structure of some schemes enable encryption + operations on vectors at no extra cost Plaintext Space: ring R R p1 R p2 R pk Chinese Remainder Theorem: R k i=1 R pi
31 Batch Computation [SV11] Encrypt + process array of values at no extra cost: One homomorphic operation In practice: 5000 slots
32 Time (minutes) Time to Compute Mean and Covariance over Encrypted Data (Dimension 4) Few ciphertexts due to batching Multiplications dominate 2,000 20, ,000 2,000,000 Number of Datapoints Based on implementation of Brakerski s scheme [Bra12]
33 Time (minutes) Time to Perform Linear Regression on Encrypted Data (2 Dimensions) Few ciphertexts due to batching Multiplications dominate Number of Datapoints
34 Application: Private Information Retrieval I want to see record i PIR protocol??? cloud database client learns record i, server learns nothing
35 PIR from Homomorphic Encryption [KO97] v 11 v 12 v 13 v 21 v 22 v 23 v 31 v 32 v = v 11 v 21 v 31 represent database as matrix query is an encrypted basis vector server evaluates inner product response O( n) communication database components in the clear: additive homomorphism suffices
36 PIR from Homomorphic Encryption O n communication with additive homomorphism alone Naturally generalizes: O 3 n with one multiplication O k n with degree k 1 -homomorphism Benefits tremendously from batching r 1,, r N database r 1,, r N/3 r 1+N/3,, r 2N/3 r 1+2N/3,, r N split database into many small databases, query in parallel
37 Response Time (s) 1,000,000 FHE-PIR Timing Results (5 Mbps) 100,000 10,000 1, Number of Records (Millions) FHE-PIR (d = 2) FHE-PIR (d = 3) FHE-PIR (d = 4) Trivial PIR
38 PIR from Homomorphic Encryption Outperforms trivial PIR for very large databases However, recursive KO-PIR with additive homomorphism is still state-of-the-art
39 Concluding Remarks Internet of Things brings many security challenges Many generic cryptographic tools: 2PC, MPC, FHE 2PC/MPC work well for small number of parties SWHE/FHE preferable with many parties (IoT scale) FHE still nascent technology should be viewed as a proof-ofconcept rather than practical solution SWHE closer to practical, suitable for evaluating simple (lowdepth) functionalities Big open problem to develop more practical constructions!
40 Questions?
Associate Prof. Dr. Victor Onomza Waziri
BIG DATA ANALYTICS AND DATA SECURITY IN THE CLOUD VIA FULLY HOMOMORPHIC ENCRYPTION Associate Prof. Dr. Victor Onomza Waziri Department of Cyber Security Science, School of ICT, Federal University of Technology,
Secure Computation Martin Beck
Institute of Systems Architecture, Chair of Privacy and Data Security Secure Computation Martin Beck Dresden, 05.02.2015 Index Homomorphic Encryption The Cloud problem (overview & example) System properties
Information Security Theory vs. Reality
Information Security Theory vs. Reality 0368-4474-01, Winter 2011 Lecture 14: More on vulnerability and exploits, Fully homomorphic encryption Eran Tromer Slides credit: Vinod Vaikuntanathan (U. Toronto)
NEW CRYPTOGRAPHIC CHALLENGES IN CLOUD COMPUTING ERA
THE PUBLISHING HOUSE PROCEEDINGS OF THE ROMANIAN ACADEMY, Series A, OF THE ROMANIAN ACADEMY Volume 14, Number 1/2013, pp. 72 77 NEW CRYPTOGRAPHIC CHALLENGES IN CLOUD COMPUTING ERA Laurenţiu BURDUŞEL Politehnica
Verifiable Outsourced Computations Outsourcing Computations to Untrusted Servers
Outsourcing Computations to Untrusted Servers Security of Symmetric Ciphers in Network Protocols ICMS, May 26, 2015, Edinburgh Problem Motivation Problem Motivation Problem Motivation Problem Motivation
3-6 Toward Realizing Privacy-Preserving IP-Traceback
3-6 Toward Realizing Privacy-Preserving IP-Traceback The IP-traceback technology enables us to trace widely spread illegal users on Internet. However, to deploy this attractive technology, some problems
An Efficient and Secure Data Sharing Framework using Homomorphic Encryption in the Cloud
An Efficient and Secure Data Sharing Framework using Homomorphic Encryption in the Cloud Sanjay Madria Professor and Site Director for NSF I/UCRC Center on Net-Centric Software and Systems Missouri University
Boosting Linearly-Homomorphic Encryption to Evaluate Degree-2 Functions on Encrypted Data
Boosting Linearly-Homomorphic Encryption to Evaluate Degree-2 Functions on Encrypted Data Dario Catalano 1 and Dario Fiore 2 1 Dipartimento di Matematica e Informatica, Università di Catania, Italy. [email protected]
Secure Data Exchange: A Marketplace in the Cloud
Secure Data Exchange: A Marketplace in the Cloud Ran Gilad-Bachrach 1, Kim Laine 1, Kristin Lauter 1, Peter Rindal 1,2, and Mike Rosulek 1,2 1 Microsoft Research, Redmond, USA 2 Oregon State University,
Whitewash: Securely Outsourcing Garbled Circuit Generation
Whitewash: Securely Outsourcing Garbled Circuit Generation MSR Workshop on Applied Multi-Party Computation February 2014 Henry Hank Carter, Charles Lever, Patrick Traynor SMC on mobile devices Mobile devices
A Fully Homomorphic Encryption Implementation on Cloud Computing
International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 8 (2014), pp. 811-816 International Research Publications House http://www. irphouse.com A Fully Homomorphic
Security and Privacy in Big Data, Blessing or Curse?
Security and Privacy in Big Data, Blessing or Curse? 2 nd National Cryptography Days 9-11 April 2015 Dr. Zeki Erkin Cyber Security Section Department of Intelligent Systems Delft University of Technology
Secure Deduplication of Encrypted Data without Additional Independent Servers
Secure Deduplication of Encrypted Data without Additional Independent Servers Jian Liu Aalto University [email protected] N. Asokan Aalto University and University of Helsinki [email protected] Benny Pinkas
A FULLY HOMOMORPHIC ENCRYPTION SCHEME
A FULLY HOMOMORPHIC ENCRYPTION SCHEME A DISSERTATION SUBMITTED TO THE DEPARTMENT OF COMPUTER SCIENCE AND THE COMMITTEE ON GRADUATE STUDIES OF STANFORD UNIVERSITY IN PARTIAL FULFILLMENT OF THE REQUIREMENTS
CLOUD computing systems, in which the clients
IEEE TRANSACTIONS ON CLOUD COMPUTING, VOL. X, NO. X, JANUARY 20XX 1 A Practical, Secure, and Verifiable Cloud Computing for Mobile Systems Sriram N. Premnath, Zygmunt J. Haas, Fellow, IEEE arxiv:1410.1389v1
A Fast Single Server Private Information Retrieval Protocol with Low Communication Cost
A Fast Single Server Private Information Retrieval Protocol with Low Communication Cost Changyu Dong 1 and Liqun Chen 2 1 Department of Computer and Information Sciences, University of Strathclyde, Glasgow,
Digital Object Identifier 10.1109/MSP.2012.2219653 Date of publication: 5 December 2012
[ R. (Inald) L. Lagendijk, Zekeriya Erkin, and auro Barni ] Encrypted Signal Processing for Privacy Protection [ Conveying the utility of homomorphic encryption and multiparty computation] In recent years,
Some Security Challenges of Cloud Compu6ng. Kui Ren Associate Professor Department of Computer Science and Engineering SUNY at Buffalo
Some Security Challenges of Cloud Compu6ng Kui Ren Associate Professor Department of Computer Science and Engineering SUNY at Buffalo Cloud Compu6ng: the Next Big Thing Tremendous momentum ahead: Prediction
Privacy and Security in Cloud Computing
Réunion CAPPRIS 21 mars 2013 Monir Azraoui, Kaoutar Elkhiyaoui, Refik Molva, Melek Ӧnen Slide 1 Cloud computing Idea: Outsourcing Ø Huge distributed data centers Ø Offer storage and computation Benefit:
Big Data - Security and Privacy
Big Data - Security and Privacy Elisa Bertino CS Department, Cyber Center, and CERIAS Purdue University Cyber Center! Big Data EveryWhere! Lots of data is being collected, warehoused, and mined Web data,
Efficient Multi-keyword Ranked Search over Outsourced Cloud Data based on Homomorphic Encryption
Efficient Multi-keyword Ranked Search over Outsourced Cloud Data based on Homomorphic Encryption Mengxi Nie 1,2, Peng Ran 1 and HaoMiao Yang 1,2 1 University of Electronic Science and Technology of China,
On-the-Fly Multiparty Computation on the Cloud via Multikey Fully Homomorphic Encryption
On-the-Fly Multiparty Computation on the Cloud via Multikey Fully Homomorphic Encryption Adriana López-Alt New York University Eran Tromer Tel Aviv University Vinod Vaikuntanathan MIT Abstract We propose
Privacy, Security and Cloud
Privacy, Security and Cloud Giuseppe Di Luna July 2, 2012 Giuseppe Di Luna 2012 1 July 2, 2012 Giuseppe Di Luna 2012 2 July 2, 2012 Giuseppe Di Luna 2012 3 Security Concerns: Data leakage Data handling
Onion ORAM: A Constant Bandwidth Blowup Oblivious RAM
Onion ORAM: A Constant Bandwidth Blowup Oblivious RAM Srinivas Devadas, Marten van Dijk, Christopher W. Fletcher, Ling Ren, Elaine Shi, Daniel Wichs Massachusetts Institute of Technology {devadas, cwfletch,
Experimental Analysis of Privacy-Preserving Statistics Computation
Experimental Analysis of Privacy-Preserving Statistics Computation Hiranmayee Subramaniam 1, Rebecca N. Wright 2, and Zhiqiang Yang 2 1 Stevens Institute of Technology graduate, [email protected]. 2
An Overview of Common Adversary Models
An Overview of Common Adversary Karl Palmskog [email protected] 2012-03-29 Introduction Requirements of Software Systems 1 Functional Correctness: partial, termination, liveness, safety,... 2 Nonfunctional
Fully homomorphic encryption equating to cloud security: An approach
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 9, Issue 2 (Jan. - Feb. 2013), PP 46-50 Fully homomorphic encryption equating to cloud security: An approach
An Efficient Multi-Keyword Ranked Secure Search On Crypto Drive With Privacy Retaining
An Efficient Multi-Keyword Ranked Secure Search On Crypto Drive With Privacy Retaining 1 B.Sahaya Emelda and 2 Mrs. P. Maria Jesi M.E.,Ph.D., 1 PG Student and 2 Associate Professor, Department of Computer
Lecture 17: Re-encryption
600.641 Special Topics in Theoretical Cryptography April 2, 2007 Instructor: Susan Hohenberger Lecture 17: Re-encryption Scribe: Zachary Scott Today s lecture was given by Matt Green. 1 Motivation Proxy
Advanced Cryptography
Family Name:... First Name:... Section:... Advanced Cryptography Final Exam July 18 th, 2006 Start at 9:15, End at 12:00 This document consists of 12 pages. Instructions Electronic devices are not allowed.
CPSC 467b: Cryptography and Computer Security
CPSC 467b: Cryptography and Computer Security Michael J. Fischer Lecture 1 January 9, 2012 CPSC 467b, Lecture 1 1/22 Course Overview Symmetric Cryptography CPSC 467b, Lecture 1 2/22 Course Overview CPSC
K-NN CLASSIFICATION OVER SECURE ENCRYPTED RELATIONAL DATA IN OUTSOURCED ENVIRONMENT
Journal homepage: www.mjret.in K-NN CLASSIFICATION OVER SECURE ENCRYPTED RELATIONAL DATA IN OUTSOURCED ENVIRONMENT Akshay Dabi, Arslan Shaikh, Pranay Bamane, Vivek Thorat, Prof.Popat Borse. Computer Engineering.
Privacy-Preserving Set Operations
Privacy-Preserving Set Operations Lea Kissner and Dawn Song Carnegie Mellon University Abstract In many important applications, a collection of mutually distrustful parties must perform private computation
Privacy-Preserving Aggregation of Time-Series Data
Privacy-Preserving Aggregation of Time-Series Data Elaine Shi PARC/UC Berkeley [email protected] Richard Chow PARC [email protected] T-H. Hubert Chan The University of Hong Kong [email protected] Dawn
Privacy Patterns in Public Clouds
Privacy Patterns in Public Clouds Sashank Dara Security Technologies Group, Cisco Systems, Bangalore email: [email protected] January 25, 2014 Abstract Internet users typically consume a wide range
Survey on Efficient Information Retrieval for Ranked Query in Cost-Efficient Clouds
Survey on Efficient Information Retrieval for Ranked Query in Cost-Efficient Clouds Ms. Jyotsna T. Kumbhar 1 ME Student, Department of Computer Engineering, TSSM S, P.V.P.I.T., Bavdhan, Pune University,
Lecture 3: One-Way Encryption, RSA Example
ICS 180: Introduction to Cryptography April 13, 2004 Lecturer: Stanislaw Jarecki Lecture 3: One-Way Encryption, RSA Example 1 LECTURE SUMMARY We look at a different security property one might require
How To Create A Multi-Keyword Ranked Search Over Encrypted Cloud Data (Mrse)
JJT-029-2015 SEARCHABLE SYMMETRIC ENCRYPTION METHOD FOR ENCRYPTED DATA IN CLOUD P.Vidyasagar, R.Karthikeyan, Dr.C.Nalini M.Tech Student, Dept of CSE,Bharath University, Email.Id: [email protected]
Solutions to Problem Set 1
YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE CPSC 467b: Cryptography and Computer Security Handout #8 Zheng Ma February 21, 2005 Solutions to Problem Set 1 Problem 1: Cracking the Hill cipher Suppose
Private Inference Control
Private Inference Control David Woodruff MIT [email protected] Jessica Staddon Palo Alto Research Center [email protected] Abstract Access control can be used to ensure that database queries pertaining to
Cryptography and Network Security Department of Computer Science and Engineering Indian Institute of Technology Kharagpur
Cryptography and Network Security Department of Computer Science and Engineering Indian Institute of Technology Kharagpur Module No. # 01 Lecture No. # 05 Classic Cryptosystems (Refer Slide Time: 00:42)
Paillier Threshold Encryption Toolbox
Paillier Threshold Encryption Toolbox October 23, 2010 1 Introduction Following a desire for secure (encrypted) multiparty computation, the University of Texas at Dallas Data Security and Privacy Lab created
Secure Framework and Sparsity Structure of Linear Programming in Cloud Computing P.Shabana 1 *, P Praneel Kumar 2, K Jayachandra Reddy 3
Proceedings of International Conference on Emerging Trends in Electrical, Communication and Information Technologies ICECIT, 2012 Secure Framework and Sparsity Structure of Linear Programming in Cloud
CIS 5371 Cryptography. 8. Encryption --
CIS 5371 Cryptography p y 8. Encryption -- Asymmetric Techniques Textbook encryption algorithms In this chapter, security (confidentiality) is considered in the following sense: All-or-nothing secrecy.
1 Message Authentication
Theoretical Foundations of Cryptography Lecture Georgia Tech, Spring 200 Message Authentication Message Authentication Instructor: Chris Peikert Scribe: Daniel Dadush We start with some simple questions
Canon-MPC, A System for Casual Non-Interactive Secure Multi-Party Computation Using Native Client
Canon-MPC, A System for Casual Non-Interactive Secure Multi-Party Computation Using Native Client Ayman Jarrous University of Haifa [email protected] Benny Pinkas Bar Ilan University [email protected] ABSTRACT
Secure and Efficient Outsourcing of Sequence Comparisons
Secure and Efficient Outsourcing of Sequence Comparisons Marina Blanton 1, Mikhail J. Atallah 2, Keith B. Frikken 3, and Qutaibah Malluhi 4 1 Department of Computer Science and Engineering, University
Tackling The Challenges of Big Data. Tackling The Challenges of Big Data Big Data Systems. Security is a Negative Goal. Nickolai Zeldovich
Introduction is a Negative Goal No way for adversary to violate security policy Difficult to achieve: many avenues of attack 1 Example: Confidential Database Application server Database server Approach:
Fully Homomorphic Encryption Using Ideal Lattices
Fully Homomorphic Encryption Using Ideal Lattices Craig Gentry Stanford University and IBM Watson [email protected] ABSTRACT We propose a fully homomorphic encryption scheme i.e., a scheme that allows
Post-Quantum Cryptography #4
Post-Quantum Cryptography #4 Prof. Claude Crépeau McGill University http://crypto.cs.mcgill.ca/~crepeau/waterloo 185 ( 186 Attack scenarios Ciphertext-only attack: This is the most basic type of attack
[1] Diagonal factorization
8.03 LA.6: Diagonalization and Orthogonal Matrices [ Diagonal factorization [2 Solving systems of first order differential equations [3 Symmetric and Orthonormal Matrices [ Diagonal factorization Recall:
Computational Soundness of Symbolic Security and Implicit Complexity
Computational Soundness of Symbolic Security and Implicit Complexity Bruce Kapron Computer Science Department University of Victoria Victoria, British Columbia NII Shonan Meeting, November 3-7, 2013 Overview
A COMPARATIVE STUDY OF SECURE SEARCH PROTOCOLS IN PAY- AS-YOU-GO CLOUDS
A COMPARATIVE STUDY OF SECURE SEARCH PROTOCOLS IN PAY- AS-YOU-GO CLOUDS V. Anand 1, Ahmed Abdul Moiz Qyser 2 1 Muffakham Jah College of Engineering and Technology, Hyderabad, India 2 Muffakham Jah College
Authenticated encryption
Authenticated encryption Dr. Enigma Department of Electrical Engineering & Computer Science University of Central Florida [email protected] October 16th, 2013 Active attacks on CPA-secure encryption
Public Key Encryption that Allows PIR Queries
Public Key Encryption that Allows PIR Queries Dan Boneh Eyal Kushilevitz Rafail Ostrovsky William E Skeith III Appeared at CRYPTO 2007: 50-67 Abstract Consider the following problem: Alice wishes to maintain
CS 758: Cryptography / Network Security
CS 758: Cryptography / Network Security offered in the Fall Semester, 2003, by Doug Stinson my office: DC 3122 my email address: [email protected] my web page: http://cacr.math.uwaterloo.ca/~dstinson/index.html
A Comparison of the Homomorphic Encryption Schemes FV and YASHE
A Comparison of the Homomorphic Encryption Schemes FV and YASHE Tancrède Lepoint 1, and Michael Naehrig 2 1 CryptoExperts, École Normale Supérieure and University of Luxembourg [email protected]
Homomorphic Encryption Method Applied to Cloud Computing
International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 15 (2014), pp. 1519-1530 International Research Publications House http://www. irphouse.com Homomorphic Encryption
Similar matrices and Jordan form
Similar matrices and Jordan form We ve nearly covered the entire heart of linear algebra once we ve finished singular value decompositions we ll have seen all the most central topics. A T A is positive
Overview of Cryptographic Tools for Data Security. Murat Kantarcioglu
UT DALLAS Erik Jonsson School of Engineering & Computer Science Overview of Cryptographic Tools for Data Security Murat Kantarcioglu Pag. 1 Purdue University Cryptographic Primitives We will discuss the
Secure Collaborative Privacy In Cloud Data With Advanced Symmetric Key Block Algorithm
Secure Collaborative Privacy In Cloud Data With Advanced Symmetric Key Block Algorithm Twinkle Graf.F 1, Mrs.Prema.P 2 1 (M.E- CSE, Dhanalakshmi College of Engineering, Chennai, India) 2 (Asst. Professor
Arnab Roy Fujitsu Laboratories of America and CSA Big Data WG
Arnab Roy Fujitsu Laboratories of America and CSA Big Data WG 1 Security Analytics Crypto and Privacy Technologies Infrastructure Security 60+ members Framework and Taxonomy Chair - Sree Rajan, Fujitsu
A NOVEL APPROACH FOR MULTI-KEYWORD SEARCH WITH ANONYMOUS ID ASSIGNMENT OVER ENCRYPTED CLOUD DATA
A NOVEL APPROACH FOR MULTI-KEYWORD SEARCH WITH ANONYMOUS ID ASSIGNMENT OVER ENCRYPTED CLOUD DATA U.Pandi Priya 1, R.Padma Priya 2 1 Research Scholar, Department of Computer Science and Information Technology,
An Application of the Goldwasser-Micali Cryptosystem to Biometric Authentication
The 12th Australasian Conference on Information Security and Privacy (ACISP 07). (2 4 july 2007, Townsville, Queensland, Australia) J. Pieprzyk Ed. Springer-Verlag, LNCS????, pages??????. An Application
The Best of Both Worlds: Combining Information-Theoretic and Computational PIR for Communication Efficiency
The Best of Both Worlds: Combining Information-Theoretic and Computational PIR for Communication Efficiency Casey Devet and Ian Goldberg University of Waterloo, ON, Canada {cjdevet,iang}@cs.uwaterloo.ca
Secure semantic based search over cloud
Volume: 2, Issue: 5, 162-167 May 2015 www.allsubjectjournal.com e-issn: 2349-4182 p-issn: 2349-5979 Impact Factor: 3.762 Sarulatha.M PG Scholar, Dept of CSE Sri Krishna College of Technology Coimbatore,
Secure Attribute Based Mechanism through Access cipher policy in Outsourced Cloud Data
Secure Attribute Based Mechanism through Access cipher policy in Outsourced Cloud Data V.Abinaya PG Scholar Kalasalingam Institute of Technology Krishnankoil. V.Ramesh Assistant professor Kalasalingam
Verifiable Delegation of Computation over Large Datasets
Verifiable Delegation of Computation over Large Datasets Siavosh Benabbas University of Toronto Rosario Gennaro IBM Research Yevgeniy Vahlis AT&T Cloud Computing Data D Code F Y F(D) Cloud could be malicious
Searchable Symmetric Encryption: Improved Definitions and Efficient Constructions
Searchable Symmetric Encryption: Improved Definitions and Efficient Constructions Reza Curtmola Juan Garay Seny Kamara Rafail Ostrovsky Abstract Searchable symmetric encryption (SSE) allows a party to
A Simple Provably Secure Key Exchange Scheme Based on the Learning with Errors Problem
A Simple Provably Secure Key Exchange Scheme Based on the Learning with Errors Problem Jintai Ding, Xiang Xie, Xiaodong Lin University of Cincinnati Chinese Academy of Sciences Rutgers University Abstract.
1 Construction of CCA-secure encryption
CSCI 5440: Cryptography Lecture 5 The Chinese University of Hong Kong 10 October 2012 1 Construction of -secure encryption We now show how the MAC can be applied to obtain a -secure encryption scheme.
Entangled Encodings and Data Entanglement
An extended abstract of this paper is published in the proceedings of the 3rd International Workshop on Security in Cloud Computing SCC@AsiaCCS 2015. This is the full version. Entangled Encodings and Data
