SlideShare uma empresa Scribd logo
1 de 30
VEENA VENUGOPAL
M.Sc. CS
DEPARTMENT OF COMPUTER SCIENCE
UNIVERSITY OF KERALA
KARIAVATTOM CAMPUS
What is Cloud Computing ?
What are the benefits of cloud computing ?
VIDEO
Cloud security
4 / 30Cloud Security19th October 2015
Currently there is an increasing trend in outsourcing data to remote
cloud…
Cloud service providers
Offers huge storage space with low cost
Reduce the maintenance and burden of local data storage
Cloud security
Cloud Security 5 / 3019th October 2015
Cloud security
Cloud Security 6 / 3019th October 2015
Cloud security
Cloud Security
Threats in cloud data storage
The cloud service provider intentionally hide data loss.
The malicious cloud service provider might delete some data or
obtain all the information and sell it to others.
An attacker who intercepts can capture sensitive information
such as business secrets, client details etc.
7 / 3019th October 2015
Cloud security
Cloud Security
Existing protocols
 Does not support both confidentiality and integrity issues.
 Dynamic scalability of data is not possible – modification,
insertion and deletion of data blocks.
 All the existing protocols are unable to provide strong
security assurance to users.
8 / 3019th October 2015
Cloud security
Cloud Security
Proposed protocol
An Efficient & Secure Protocol for Data
Storage Security in Cloud Computing
9 / 3019th October 2015
Cloud security
Cloud Security
Steps :-
User encrypts data to ensure confidentiality.
Compute metadata over encrypted data
Later the verifier can use remote data integrity checking
to verify the integrity
10 / 3019th October 2015
Cloud security
Cloud Security
System model
The cloud data storage model considering here consisting of 3
main components :
Cloud user : An individual or an organization storing their data in cloud
and accessing the data
Cloud Service Provider(CSP) : The organization who manages cloud servers
and provides a paid storage on its infrastructure to users as service.
Third Party Auditor(TPA) : The verifier who has expertise and capabilities
to verify the integrity of outsourced data as per the instruction of the user.
11 / 3019th October 2015
Cloud security
Cloud Security
Efficient & Secure Storage Protocol
The protocol consists of 3 phases :
Dynamic data operation and verification
Verification
Setup
12 / 3019th October 2015
Cloud security
Cloud Security
 Setup
In this phase, the user pre-processes the file before storing in
cloud. The Setup phase consists of three stages, those are:
KeyGen Encryption MetadataGen.
13 / 3019th October 2015
Cloud security
Cloud Security
 KeyGen:
In this phase, the user generates private key and public key pair.
The user chooses two large primes p and q of size k .Then compute
n=pq and
Nn =lcm (p+1, q+1).
b is a randomly chosen integer such that gcd(b, n)=1.
It outputs public key PK= {b, n, p} and private key PR ={ Nn }.
14 / 3019th October 2015
Cloud security
Cloud Security
 Encryption:
To ensure the confidentiality of data, the file F is divided into
n equal sized data blocks and encrypt them:
F = {m1, m2 ,...mn} = {mi }1 ≤i≤n
F’ m i='=mi + fk (s)
where s is random of size l.
15 / 3019th October 2015
Cloud security
Cloud Security
 MetadataGen:
After encrypting the data, the user computes a metadata over
encrypted data to verify the integrity of data, which takes m'i,
public key and private key as inputs and produce metadata as
output
After computation of metadata, the user sends metadata,
public key to the TPA for later verification and sends file F' to
cloud servers for storage.
16 / 3019th October 2015
Cloud security
Cloud Security
 Verification
To verify the integrity of data after storing into cloud, the verifier
first creates a challenge and sends to the server. Upon receiving a
challenge from the verifier, the server computes a response as
integrity proof and return to the verifier. It consists of 3 steps :
Challenge ProofGen CheckProof
17 / 3019th October 2015
Cloud security
Cloud Security
 Challenge:
The verifier creates a challenge text by taking inputs
public key and random values.
For each data block challenge text is created, then
combined together and send.
18 / 3019th October 2015
Cloud security
Cloud Security
 ProofGen:
Upon receiving the challenge from the verifier, the server
computes a response as integrity proof using the following steps,
it takes encrypted data m'i, challenge chal as inputs and produce
response R as output
19 / 3019th October 2015
Cloud security
Cloud Security
 Check proof:
After receiving a response from the server, the verifier checks the
integrity using the steps, it takes public key pk, challenge query
chal, and proof R as inputs and return output.
If response is valid, then it returns 1 otherwise 0.
20 / 3019th October 2015
Cloud security
Cloud Security
 Dynamic data operation & Verification
The proposed scheme also supports dynamic data operations at
block level while maintaining same security assurance, such as Block
Modification (BM), Block Insertion (BI) and Block Deletion (BD). These
operations are performed by the server based on the user request. The parameter
j indicates the particular block to be updated and m*i is the new block.
In order to update data in cloud, the user creates a request and sends to the
server. Upon receiving an update request from the user, the server performs the
particular update operation (modification/insert/delete).
21 / 3019th October 2015
Cloud security
Cloud Security
 Block modification:
Data modification is one of the frequently used operations in cloud
data storage. Suppose, the user wants to modify the block mj with
m'i, then the user runs the steps to do the following:
 Create a new block mj
 Encrypt the new block
 Compute the new metadata
 Create update request and sends to the server.
 The Metadata sends to TPA for later verification
22 / 3019th October 2015
Cloud security
Cloud Security
 Block insertion:
To perform an insertion of a new block m* after position j in a
file, the user runs the following:
 Create a new block m*j
 Encrypt the new block
 Compute the new metadata
 Create update request and sends to the server.
 The Metadata sends to TPA for later verification
23 / 3019th October 2015
Cloud security
Cloud Security
 Block deletion:
Suppose the user want to delete a specific data block at position j
from file F’
 Create delete request (BD,j) and sends to the server.
 Send request to TPA to delete corresponding metadata.
Server and TPA deletes the corresponding block from the file.
24 / 3019th October 2015
Cloud security
Cloud Security
 Verification:
To ensure the security of dynamic data operations, the user verifies the
integrity of updated block immediately after updating as follows:
 The user challenges the server immediately for the proof of update
operation
 Upon receiving a request from the user, the server computes a
response for updated block and returns to the user
 After receiving an update response from the server, the user verifies
whether response is matched with metadata of particular block by
running algorithm, if it returns true, server has been updated data
successfully otherwise not.
25 / 3019th October 2015
Cloud security
Cloud Security
Advantages
 It should detect all data corruption if anybody deletes or
modifies the data in cloud storage
 The scheme achieves confidentiality of data
 It is efficient in terms of computation, storage because its key
size is less compared to RSA based solutions.
 This protocol supports public verifiability and dynamic data
operations such as modification, insertion and deletion
26 / 3019th October 2015
Cloud security
Cloud Security
CONCLUSION
The proposed protocol is mainly suitable for thin users who have less
resources and limited computing capability
The method satisfies all security and performance requirements of
cloud data storage
It also supports public verifiability that enables TPA to verify the
integrity of data without retrieving original data from the server
The scheme also supports dynamic data operations
27 / 3019th October 2015
Cloud Security
• Introduction to Cloud Computing , Prof. Yeh-Ching Chung,
http://cs5421.sslab.cs.nthu.edu.tw/home/Materials/Lecture2 -
IntroductiontoCloudComputing.pdf?attredirects=0&d=1
• NIST (National Institute of Standards and Technology). http://csrc.nist.gov/groups/SNS/cloud-computing/
• M. Armbrust et. al., “Above the Clouds: A Berkeley View of Cloud Computing,” Technical Report No.
UCB/EECS-2009-28, University of California at Berkeley, 2009.
• R. Buyya et. al., “Cloud computing and emerging IT platforms: Vision, hype, and reality for delivering computing
as the 5th utility,” Future Generation Computer Systems, 2009.
• Cloud Computing Explained. http://www.andyharjanto.com/2009/11/wanted-cloud-computing-explained-in.html
• From Wikipedia, the free encyclopedia
• “An Efficient and secure protocol for Ensuring Data Storage Security in Cloud Computing” - International
journal of Computer Science Issues ,by Syam kumar P, Subramanian R
BIBLIOGRAPHY
28 / 3019th October 2015
Cloud security
Cloud Security 29 / 3019th October 2015
Cloud security
Cloud Security
Thank you all…
30 / 3019th October 2015

Mais conteúdo relacionado

Mais procurados

Security Issues of Cloud Computing
Security Issues of Cloud ComputingSecurity Issues of Cloud Computing
Security Issues of Cloud ComputingFalgun Rathod
 
Cloud computing security issues and challenges
Cloud computing security issues and challengesCloud computing security issues and challenges
Cloud computing security issues and challengesDheeraj Negi
 
Cloud Security Strategy
Cloud Security StrategyCloud Security Strategy
Cloud Security StrategyCapgemini
 
Data security in cloud computing
Data security in cloud computingData security in cloud computing
Data security in cloud computingPrince Chandu
 
Data security in the cloud
Data security in the cloud Data security in the cloud
Data security in the cloud IBM Security
 
Cloud security and security architecture
Cloud security and security architectureCloud security and security architecture
Cloud security and security architectureVladimir Jirasek
 
Cloud computing and Cloud security fundamentals
Cloud computing and Cloud security fundamentalsCloud computing and Cloud security fundamentals
Cloud computing and Cloud security fundamentalsViresh Suri
 
Cloud deployment models
Cloud deployment modelsCloud deployment models
Cloud deployment modelsAshok Kumar
 
Cloud security Presentation
Cloud security PresentationCloud security Presentation
Cloud security PresentationAjay p
 
Cloud Computing and Security - ISACA Hyderabad Chapter Presentation
Cloud Computing and Security - ISACA Hyderabad Chapter PresentationCloud Computing and Security - ISACA Hyderabad Chapter Presentation
Cloud Computing and Security - ISACA Hyderabad Chapter PresentationVenkateswar Reddy Melachervu
 
Cloud Security Architecture.pptx
Cloud Security Architecture.pptxCloud Security Architecture.pptx
Cloud Security Architecture.pptxMoshe Ferber
 
Cloud Security: A New Perspective
Cloud Security: A New PerspectiveCloud Security: A New Perspective
Cloud Security: A New PerspectiveWen-Pai Lu
 

Mais procurados (20)

Cloud Security
Cloud SecurityCloud Security
Cloud Security
 
Security Issues of Cloud Computing
Security Issues of Cloud ComputingSecurity Issues of Cloud Computing
Security Issues of Cloud Computing
 
Cloud computing security issues and challenges
Cloud computing security issues and challengesCloud computing security issues and challenges
Cloud computing security issues and challenges
 
Cloud Security Strategy
Cloud Security StrategyCloud Security Strategy
Cloud Security Strategy
 
Data security in cloud computing
Data security in cloud computingData security in cloud computing
Data security in cloud computing
 
Data security in the cloud
Data security in the cloud Data security in the cloud
Data security in the cloud
 
Cloud security and security architecture
Cloud security and security architectureCloud security and security architecture
Cloud security and security architecture
 
Cloud computing and Cloud security fundamentals
Cloud computing and Cloud security fundamentalsCloud computing and Cloud security fundamentals
Cloud computing and Cloud security fundamentals
 
Cloud deployment models
Cloud deployment modelsCloud deployment models
Cloud deployment models
 
Cloud security Presentation
Cloud security PresentationCloud security Presentation
Cloud security Presentation
 
FOG COMPUTING
FOG COMPUTINGFOG COMPUTING
FOG COMPUTING
 
Cloud Service Models
Cloud Service ModelsCloud Service Models
Cloud Service Models
 
Introduction to Cloud Security
Introduction to Cloud SecurityIntroduction to Cloud Security
Introduction to Cloud Security
 
cloud computing basics
cloud computing basicscloud computing basics
cloud computing basics
 
Cloud computing
Cloud computingCloud computing
Cloud computing
 
Cloud Security
Cloud SecurityCloud Security
Cloud Security
 
Cloud Computing and Security - ISACA Hyderabad Chapter Presentation
Cloud Computing and Security - ISACA Hyderabad Chapter PresentationCloud Computing and Security - ISACA Hyderabad Chapter Presentation
Cloud Computing and Security - ISACA Hyderabad Chapter Presentation
 
Cloud security
Cloud securityCloud security
Cloud security
 
Cloud Security Architecture.pptx
Cloud Security Architecture.pptxCloud Security Architecture.pptx
Cloud Security Architecture.pptx
 
Cloud Security: A New Perspective
Cloud Security: A New PerspectiveCloud Security: A New Perspective
Cloud Security: A New Perspective
 

Destaque

Standardization Activities on Cloud Computing
Standardization Activities on Cloud ComputingStandardization Activities on Cloud Computing
Standardization Activities on Cloud ComputingSeungyun Lee
 
Staying Secure When Moving to the Cloud - Dave Millier
Staying Secure When Moving to the Cloud - Dave MillierStaying Secure When Moving to the Cloud - Dave Millier
Staying Secure When Moving to the Cloud - Dave MillierTriNimbus
 
AWS Security Best Practices and Design Patterns
AWS Security Best Practices and Design PatternsAWS Security Best Practices and Design Patterns
AWS Security Best Practices and Design PatternsAmazon Web Services
 
Introduction to cloud computing
Introduction to cloud computingIntroduction to cloud computing
Introduction to cloud computingVipin Batra
 
Security and Compliance in the Cloud
Security and Compliance in the Cloud Security and Compliance in the Cloud
Security and Compliance in the Cloud Amazon Web Services
 
Journey Through The Cloud - Security Best Practices
Journey Through The Cloud - Security Best Practices Journey Through The Cloud - Security Best Practices
Journey Through The Cloud - Security Best Practices Amazon Web Services
 
Introduction to AWS Cloud Computing
Introduction to AWS Cloud ComputingIntroduction to AWS Cloud Computing
Introduction to AWS Cloud ComputingAmazon Web Services
 
AWS 101: Cloud Computing Seminar (2012)
AWS 101: Cloud Computing Seminar (2012)AWS 101: Cloud Computing Seminar (2012)
AWS 101: Cloud Computing Seminar (2012)Amazon Web Services
 

Destaque (12)

Standardization Activities on Cloud Computing
Standardization Activities on Cloud ComputingStandardization Activities on Cloud Computing
Standardization Activities on Cloud Computing
 
Staying Secure When Moving to the Cloud - Dave Millier
Staying Secure When Moving to the Cloud - Dave MillierStaying Secure When Moving to the Cloud - Dave Millier
Staying Secure When Moving to the Cloud - Dave Millier
 
Cloud security
Cloud security Cloud security
Cloud security
 
Security & Compliance in AWS
Security & Compliance in AWSSecurity & Compliance in AWS
Security & Compliance in AWS
 
AWS Security Best Practices and Design Patterns
AWS Security Best Practices and Design PatternsAWS Security Best Practices and Design Patterns
AWS Security Best Practices and Design Patterns
 
Introduction to cloud computing
Introduction to cloud computingIntroduction to cloud computing
Introduction to cloud computing
 
Security Best Practices on AWS
Security Best Practices on AWSSecurity Best Practices on AWS
Security Best Practices on AWS
 
Security and Compliance in the Cloud
Security and Compliance in the Cloud Security and Compliance in the Cloud
Security and Compliance in the Cloud
 
Cloud Computing Security Issues
Cloud Computing Security Issues Cloud Computing Security Issues
Cloud Computing Security Issues
 
Journey Through The Cloud - Security Best Practices
Journey Through The Cloud - Security Best Practices Journey Through The Cloud - Security Best Practices
Journey Through The Cloud - Security Best Practices
 
Introduction to AWS Cloud Computing
Introduction to AWS Cloud ComputingIntroduction to AWS Cloud Computing
Introduction to AWS Cloud Computing
 
AWS 101: Cloud Computing Seminar (2012)
AWS 101: Cloud Computing Seminar (2012)AWS 101: Cloud Computing Seminar (2012)
AWS 101: Cloud Computing Seminar (2012)
 

Semelhante a Security in cloud computing

A New Mode to Ensure Security in Cloud Computing Services
A New Mode to Ensure Security in Cloud Computing ServicesA New Mode to Ensure Security in Cloud Computing Services
A New Mode to Ensure Security in Cloud Computing ServicesMahmuda Rahman
 
IRJET-2 Proxy-Oriented Data Uploading in Multi Cloud Storage
IRJET-2 	  Proxy-Oriented Data Uploading in Multi Cloud StorageIRJET-2 	  Proxy-Oriented Data Uploading in Multi Cloud Storage
IRJET-2 Proxy-Oriented Data Uploading in Multi Cloud StorageIRJET Journal
 
PUBLIC AUDITING FOR SECURE CLOUD STORAGE ...
PUBLIC AUDITING 	             FOR SECURE CLOUD STORAGE                       ...PUBLIC AUDITING 	             FOR SECURE CLOUD STORAGE                       ...
PUBLIC AUDITING FOR SECURE CLOUD STORAGE ...Bharath Nair
 
Insuring Security for Outsourced Data Stored in Cloud Environment
Insuring Security for Outsourced Data Stored in Cloud EnvironmentInsuring Security for Outsourced Data Stored in Cloud Environment
Insuring Security for Outsourced Data Stored in Cloud EnvironmentEditor IJCATR
 
Greg Brown - Intel Big Data & Cloud Summit 2013
Greg Brown - Intel Big Data & Cloud Summit 2013Greg Brown - Intel Big Data & Cloud Summit 2013
Greg Brown - Intel Big Data & Cloud Summit 2013IntelAPAC
 
Iaetsd storage privacy protection against data
Iaetsd storage privacy protection against dataIaetsd storage privacy protection against data
Iaetsd storage privacy protection against dataIaetsd Iaetsd
 
IRJET- Secure Skyline Queries over the Encrypted Data
IRJET- Secure Skyline Queries over the Encrypted DataIRJET- Secure Skyline Queries over the Encrypted Data
IRJET- Secure Skyline Queries over the Encrypted DataIRJET Journal
 
Enabling Cloud Storage Auditing With Key-Exposure Resistance
Enabling Cloud Storage Auditing With Key-Exposure ResistanceEnabling Cloud Storage Auditing With Key-Exposure Resistance
Enabling Cloud Storage Auditing With Key-Exposure Resistance1crore projects
 
Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Editor IJARCET
 
Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Editor IJARCET
 
Homomorphic authentication with random masking technique ensuring privacy
Homomorphic authentication with random masking technique ensuring privacyHomomorphic authentication with random masking technique ensuring privacy
Homomorphic authentication with random masking technique ensuring privacyShakas Technologies
 
Enabling cloud storage auditing with verifiable
Enabling cloud storage auditing with verifiableEnabling cloud storage auditing with verifiable
Enabling cloud storage auditing with verifiableKamal Spring
 
IRJET- Improving Data Storage Security and Performance in Cloud Environment
IRJET- Improving Data Storage Security and Performance in Cloud EnvironmentIRJET- Improving Data Storage Security and Performance in Cloud Environment
IRJET- Improving Data Storage Security and Performance in Cloud EnvironmentIRJET Journal
 
Remote data integrity checking with a third party auditor in public cloud usi...
Remote data integrity checking with a third party auditor in public cloud usi...Remote data integrity checking with a third party auditor in public cloud usi...
Remote data integrity checking with a third party auditor in public cloud usi...IJSRED
 
Improving Efficiency of Security in Multi-Cloud
Improving Efficiency of Security in Multi-CloudImproving Efficiency of Security in Multi-Cloud
Improving Efficiency of Security in Multi-CloudIJTET Journal
 
Secure Auditing and Deduplicating Data on Cloud
Secure Auditing and Deduplicating Data on CloudSecure Auditing and Deduplicating Data on Cloud
Secure Auditing and Deduplicating Data on CloudIJMTST Journal
 
Secure Auditing and Deduplicating Data in Cloud
Secure Auditing and Deduplicating Data in CloudSecure Auditing and Deduplicating Data in Cloud
Secure Auditing and Deduplicating Data in Cloud1crore projects
 
Achieving Secure And Scalable Cloud computing
Achieving Secure And Scalable Cloud computingAchieving Secure And Scalable Cloud computing
Achieving Secure And Scalable Cloud computingKiran Girase
 
Enabling cloud storage auditing with key exposure resistance 2
Enabling cloud storage auditing with key exposure resistance 2Enabling cloud storage auditing with key exposure resistance 2
Enabling cloud storage auditing with key exposure resistance 2Ranjeet Bhalshankar
 

Semelhante a Security in cloud computing (20)

A New Mode to Ensure Security in Cloud Computing Services
A New Mode to Ensure Security in Cloud Computing ServicesA New Mode to Ensure Security in Cloud Computing Services
A New Mode to Ensure Security in Cloud Computing Services
 
IRJET-2 Proxy-Oriented Data Uploading in Multi Cloud Storage
IRJET-2 	  Proxy-Oriented Data Uploading in Multi Cloud StorageIRJET-2 	  Proxy-Oriented Data Uploading in Multi Cloud Storage
IRJET-2 Proxy-Oriented Data Uploading in Multi Cloud Storage
 
PUBLIC AUDITING FOR SECURE CLOUD STORAGE ...
PUBLIC AUDITING 	             FOR SECURE CLOUD STORAGE                       ...PUBLIC AUDITING 	             FOR SECURE CLOUD STORAGE                       ...
PUBLIC AUDITING FOR SECURE CLOUD STORAGE ...
 
Insuring Security for Outsourced Data Stored in Cloud Environment
Insuring Security for Outsourced Data Stored in Cloud EnvironmentInsuring Security for Outsourced Data Stored in Cloud Environment
Insuring Security for Outsourced Data Stored in Cloud Environment
 
Greg Brown - Intel Big Data & Cloud Summit 2013
Greg Brown - Intel Big Data & Cloud Summit 2013Greg Brown - Intel Big Data & Cloud Summit 2013
Greg Brown - Intel Big Data & Cloud Summit 2013
 
Iaetsd storage privacy protection against data
Iaetsd storage privacy protection against dataIaetsd storage privacy protection against data
Iaetsd storage privacy protection against data
 
IRJET- Secure Skyline Queries over the Encrypted Data
IRJET- Secure Skyline Queries over the Encrypted DataIRJET- Secure Skyline Queries over the Encrypted Data
IRJET- Secure Skyline Queries over the Encrypted Data
 
Enabling Cloud Storage Auditing With Key-Exposure Resistance
Enabling Cloud Storage Auditing With Key-Exposure ResistanceEnabling Cloud Storage Auditing With Key-Exposure Resistance
Enabling Cloud Storage Auditing With Key-Exposure Resistance
 
Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235
 
Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235Ijarcet vol-2-issue-7-2232-2235
Ijarcet vol-2-issue-7-2232-2235
 
21 muhammad ahmadjan_8
21 muhammad ahmadjan_821 muhammad ahmadjan_8
21 muhammad ahmadjan_8
 
Homomorphic authentication with random masking technique ensuring privacy
Homomorphic authentication with random masking technique ensuring privacyHomomorphic authentication with random masking technique ensuring privacy
Homomorphic authentication with random masking technique ensuring privacy
 
Enabling cloud storage auditing with verifiable
Enabling cloud storage auditing with verifiableEnabling cloud storage auditing with verifiable
Enabling cloud storage auditing with verifiable
 
IRJET- Improving Data Storage Security and Performance in Cloud Environment
IRJET- Improving Data Storage Security and Performance in Cloud EnvironmentIRJET- Improving Data Storage Security and Performance in Cloud Environment
IRJET- Improving Data Storage Security and Performance in Cloud Environment
 
Remote data integrity checking with a third party auditor in public cloud usi...
Remote data integrity checking with a third party auditor in public cloud usi...Remote data integrity checking with a third party auditor in public cloud usi...
Remote data integrity checking with a third party auditor in public cloud usi...
 
Improving Efficiency of Security in Multi-Cloud
Improving Efficiency of Security in Multi-CloudImproving Efficiency of Security in Multi-Cloud
Improving Efficiency of Security in Multi-Cloud
 
Secure Auditing and Deduplicating Data on Cloud
Secure Auditing and Deduplicating Data on CloudSecure Auditing and Deduplicating Data on Cloud
Secure Auditing and Deduplicating Data on Cloud
 
Secure Auditing and Deduplicating Data in Cloud
Secure Auditing and Deduplicating Data in CloudSecure Auditing and Deduplicating Data in Cloud
Secure Auditing and Deduplicating Data in Cloud
 
Achieving Secure And Scalable Cloud computing
Achieving Secure And Scalable Cloud computingAchieving Secure And Scalable Cloud computing
Achieving Secure And Scalable Cloud computing
 
Enabling cloud storage auditing with key exposure resistance 2
Enabling cloud storage auditing with key exposure resistance 2Enabling cloud storage auditing with key exposure resistance 2
Enabling cloud storage auditing with key exposure resistance 2
 

Último

Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirtrahman018755
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.soniya singh
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 

Último (20)

Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya ShirtChallengers I Told Ya Shirt
Challengers I Told Ya ShirtChallengers I Told Ya Shirt
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 

Security in cloud computing

  • 1. VEENA VENUGOPAL M.Sc. CS DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF KERALA KARIAVATTOM CAMPUS
  • 2. What is Cloud Computing ? What are the benefits of cloud computing ?
  • 4. Cloud security 4 / 30Cloud Security19th October 2015 Currently there is an increasing trend in outsourcing data to remote cloud… Cloud service providers Offers huge storage space with low cost Reduce the maintenance and burden of local data storage
  • 5. Cloud security Cloud Security 5 / 3019th October 2015
  • 6. Cloud security Cloud Security 6 / 3019th October 2015
  • 7. Cloud security Cloud Security Threats in cloud data storage The cloud service provider intentionally hide data loss. The malicious cloud service provider might delete some data or obtain all the information and sell it to others. An attacker who intercepts can capture sensitive information such as business secrets, client details etc. 7 / 3019th October 2015
  • 8. Cloud security Cloud Security Existing protocols  Does not support both confidentiality and integrity issues.  Dynamic scalability of data is not possible – modification, insertion and deletion of data blocks.  All the existing protocols are unable to provide strong security assurance to users. 8 / 3019th October 2015
  • 9. Cloud security Cloud Security Proposed protocol An Efficient & Secure Protocol for Data Storage Security in Cloud Computing 9 / 3019th October 2015
  • 10. Cloud security Cloud Security Steps :- User encrypts data to ensure confidentiality. Compute metadata over encrypted data Later the verifier can use remote data integrity checking to verify the integrity 10 / 3019th October 2015
  • 11. Cloud security Cloud Security System model The cloud data storage model considering here consisting of 3 main components : Cloud user : An individual or an organization storing their data in cloud and accessing the data Cloud Service Provider(CSP) : The organization who manages cloud servers and provides a paid storage on its infrastructure to users as service. Third Party Auditor(TPA) : The verifier who has expertise and capabilities to verify the integrity of outsourced data as per the instruction of the user. 11 / 3019th October 2015
  • 12. Cloud security Cloud Security Efficient & Secure Storage Protocol The protocol consists of 3 phases : Dynamic data operation and verification Verification Setup 12 / 3019th October 2015
  • 13. Cloud security Cloud Security  Setup In this phase, the user pre-processes the file before storing in cloud. The Setup phase consists of three stages, those are: KeyGen Encryption MetadataGen. 13 / 3019th October 2015
  • 14. Cloud security Cloud Security  KeyGen: In this phase, the user generates private key and public key pair. The user chooses two large primes p and q of size k .Then compute n=pq and Nn =lcm (p+1, q+1). b is a randomly chosen integer such that gcd(b, n)=1. It outputs public key PK= {b, n, p} and private key PR ={ Nn }. 14 / 3019th October 2015
  • 15. Cloud security Cloud Security  Encryption: To ensure the confidentiality of data, the file F is divided into n equal sized data blocks and encrypt them: F = {m1, m2 ,...mn} = {mi }1 ≤i≤n F’ m i='=mi + fk (s) where s is random of size l. 15 / 3019th October 2015
  • 16. Cloud security Cloud Security  MetadataGen: After encrypting the data, the user computes a metadata over encrypted data to verify the integrity of data, which takes m'i, public key and private key as inputs and produce metadata as output After computation of metadata, the user sends metadata, public key to the TPA for later verification and sends file F' to cloud servers for storage. 16 / 3019th October 2015
  • 17. Cloud security Cloud Security  Verification To verify the integrity of data after storing into cloud, the verifier first creates a challenge and sends to the server. Upon receiving a challenge from the verifier, the server computes a response as integrity proof and return to the verifier. It consists of 3 steps : Challenge ProofGen CheckProof 17 / 3019th October 2015
  • 18. Cloud security Cloud Security  Challenge: The verifier creates a challenge text by taking inputs public key and random values. For each data block challenge text is created, then combined together and send. 18 / 3019th October 2015
  • 19. Cloud security Cloud Security  ProofGen: Upon receiving the challenge from the verifier, the server computes a response as integrity proof using the following steps, it takes encrypted data m'i, challenge chal as inputs and produce response R as output 19 / 3019th October 2015
  • 20. Cloud security Cloud Security  Check proof: After receiving a response from the server, the verifier checks the integrity using the steps, it takes public key pk, challenge query chal, and proof R as inputs and return output. If response is valid, then it returns 1 otherwise 0. 20 / 3019th October 2015
  • 21. Cloud security Cloud Security  Dynamic data operation & Verification The proposed scheme also supports dynamic data operations at block level while maintaining same security assurance, such as Block Modification (BM), Block Insertion (BI) and Block Deletion (BD). These operations are performed by the server based on the user request. The parameter j indicates the particular block to be updated and m*i is the new block. In order to update data in cloud, the user creates a request and sends to the server. Upon receiving an update request from the user, the server performs the particular update operation (modification/insert/delete). 21 / 3019th October 2015
  • 22. Cloud security Cloud Security  Block modification: Data modification is one of the frequently used operations in cloud data storage. Suppose, the user wants to modify the block mj with m'i, then the user runs the steps to do the following:  Create a new block mj  Encrypt the new block  Compute the new metadata  Create update request and sends to the server.  The Metadata sends to TPA for later verification 22 / 3019th October 2015
  • 23. Cloud security Cloud Security  Block insertion: To perform an insertion of a new block m* after position j in a file, the user runs the following:  Create a new block m*j  Encrypt the new block  Compute the new metadata  Create update request and sends to the server.  The Metadata sends to TPA for later verification 23 / 3019th October 2015
  • 24. Cloud security Cloud Security  Block deletion: Suppose the user want to delete a specific data block at position j from file F’  Create delete request (BD,j) and sends to the server.  Send request to TPA to delete corresponding metadata. Server and TPA deletes the corresponding block from the file. 24 / 3019th October 2015
  • 25. Cloud security Cloud Security  Verification: To ensure the security of dynamic data operations, the user verifies the integrity of updated block immediately after updating as follows:  The user challenges the server immediately for the proof of update operation  Upon receiving a request from the user, the server computes a response for updated block and returns to the user  After receiving an update response from the server, the user verifies whether response is matched with metadata of particular block by running algorithm, if it returns true, server has been updated data successfully otherwise not. 25 / 3019th October 2015
  • 26. Cloud security Cloud Security Advantages  It should detect all data corruption if anybody deletes or modifies the data in cloud storage  The scheme achieves confidentiality of data  It is efficient in terms of computation, storage because its key size is less compared to RSA based solutions.  This protocol supports public verifiability and dynamic data operations such as modification, insertion and deletion 26 / 3019th October 2015
  • 27. Cloud security Cloud Security CONCLUSION The proposed protocol is mainly suitable for thin users who have less resources and limited computing capability The method satisfies all security and performance requirements of cloud data storage It also supports public verifiability that enables TPA to verify the integrity of data without retrieving original data from the server The scheme also supports dynamic data operations 27 / 3019th October 2015
  • 28. Cloud Security • Introduction to Cloud Computing , Prof. Yeh-Ching Chung, http://cs5421.sslab.cs.nthu.edu.tw/home/Materials/Lecture2 - IntroductiontoCloudComputing.pdf?attredirects=0&d=1 • NIST (National Institute of Standards and Technology). http://csrc.nist.gov/groups/SNS/cloud-computing/ • M. Armbrust et. al., “Above the Clouds: A Berkeley View of Cloud Computing,” Technical Report No. UCB/EECS-2009-28, University of California at Berkeley, 2009. • R. Buyya et. al., “Cloud computing and emerging IT platforms: Vision, hype, and reality for delivering computing as the 5th utility,” Future Generation Computer Systems, 2009. • Cloud Computing Explained. http://www.andyharjanto.com/2009/11/wanted-cloud-computing-explained-in.html • From Wikipedia, the free encyclopedia • “An Efficient and secure protocol for Ensuring Data Storage Security in Cloud Computing” - International journal of Computer Science Issues ,by Syam kumar P, Subramanian R BIBLIOGRAPHY 28 / 3019th October 2015
  • 29. Cloud security Cloud Security 29 / 3019th October 2015
  • 30. Cloud security Cloud Security Thank you all… 30 / 3019th October 2015