kind bar dark chocolate ingredients

mobile cloud computing: architectures, algorithms and applications pdf

Playing a game as it's downloading, how do they do it? here's some code: The simplest and fastest way to encrypt short text fragment with preshaired key is use one of cryptohash functions (md5, sha etc). the problem is that the input has to look like those bytes in order for the functions to work, so naturally the output looks like that too. You have to pack and unpack, keeping in mind the order. However, the program, though not perfect, works flawlessly and protects the information. A correction to that answer? It mainly involves using a single key, called a secret key, used for encrypting and decrypting the data. 'there are well vetted protocols that will help you avoid the common pitfalls and you should use those' you mean there is a simpler/more robust way to achieve this? Replacing crank/spider on belt drive bie (stripped pedal hole). Currently the plaintext looks like this: b'x\x85\x92\x9d\xe6\x0bJ\xfe\x9b(\x10G\x8e\x05\xc5\xf4\xcdA9\xc18\xb8_\xf9vbmK\x16\xf8\xa3\xb6', UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 3: character maps to, UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb1 in position 1: invalid start byte. An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming. Does the policy change for AI-generated content affect users who (want to) How to choose an AES encryption mode (CBC ECB CTR OCB CFB)? Use the cryptocode Library to Encrypt a String in Python. You should look at base64 instead. Crypt::encryptString() does not allow the specification of a key (an application key is applied instead), i.e. Here's another implementation. In this section, we will focus on encrypting string data in Python using a combination of AES encryption, PBKDF2 key derivation, and the cryptography library. What were the Minbari plans if they hadn't surrendered at the battle of the line? It looks like pycrypto, but I have pycrypto 2.6.1, and it doesn't support AES.MODE_OCB. I need to store passwords in config encrypted as password. I'd recommend something like the Vigenere cipher. with ready implementations in a wide range of programming languages and it packages AES CBC encryption for you with version information, a timestamp and an HMAC signature to prevent message tampering. Does the policy change for AI-generated content affect users who (want to) Private/Public Encryption in Python with Standard Library. Thanks for contributing an answer to Stack Overflow! Yes, if you are not fussed about security, then base64 is way better than to encrypt. rev2023.6.5.43477. The solutions above suggest using CBC, which is one example. If all you need is a way to make sure that the data can be trusted to be unaltered after having been sent to an untrusted client and received back, then you want to sign the data, you can use the hmac library for this with SHA1 (still considered secure for HMAC signing) or better: Use this to sign data, then attach the signature with the data and send that to the client. you can install it with pip install pycryptodomex as it is the only version that is now independent from the old PyCrypto library. Surprisingly difficult to find a straight answer to this on Google. We will use the fernet module to encrypt the file. You can convert the plaintext (if it is text) to string with .decode(). What's the correct way to think about wood's integrity when driving screws? As has been mentioned the PyCrypto library contains a suite of ciphers. This is likely an issue with the encryption/decryption. Does Python have a built-in, simple way of encoding/decoding strings using a password? What happens if you have an input that is exactly a multiple of BLOCK_SIZE? and Is this method to say The password you entered is wrong secure? See precedence of % operator, unicode input etc. Getting loads of enc_c = chr((ord(clear[i]) + ord(key_c)) % 256) TypeError: ord() expected string of length 1, but int found. If the items you want encode/decode might have trailing nulls, better use one of the other solutions here. 576), What developers with ADHD want you to know, We are graduating the updated button styling for vote arrows, Statement from SO: June 5, 2023 Moderator Action. Once we have generated a key, we need to load the key with load_key () Encrypt a Message the two recommendations here are likely more secure. Simple way to encode a string according to a password? A text that is encrypted using the public key can also be decrypted using a secret key. Otherwise you may as well use ECB mode; repeated plain text messages are otherwise trivial to recognise. Does Python have a built-in, simple way of encoding/decoding strings using a password? Connect and share knowledge within a single location that is structured and easy to search. Ask Question Asked 6 years, 3 months ago Modified 6 months ago Viewed 79k times 32 Surprisingly difficult to find a straight answer to this on Google. I'm wanting to collect a piece of text and a message from a user such as 1PWP7a6xgoYx81VZocrDr5okEEcnqKkyDc hello world. 15 os.urandom is encouraged on the PyCrypto website. Check with bin2hex(Crypt::getKey()) which key is applied and if it is a different one, use this key for decryption. Here is how you install: Working encode/decode functions in python3 (adapted very little from qneill's answer): Thanks for some great answers. This might be a great solution, but it looks unnecessarily complicated. If you previously implemented AES ECB encryption and need to still support this in Python 3, you can do so still with cryptography too. Not the answer you're looking for? rev2023.6.5.43477. The above also illustrates how easy it is to combine basic cryptography building blocks incorrectly; All Vys incorrect handling of the IV value can lead to a data breach or all encrypted messages being unreadable because the IV is lost. Do not generate the IV and store it at the module level, you need to, Very nice @Nick, good progression of pythonisms, and tests too boot. for python 2, you should use keyczar http://www.keyczar.org/, for python 3, until keyczar is available, i have written simple-crypt http://pypi.python.org/pypi/simple-crypt. I think that the unpad function would get a little confused @Kjir, then a sequence of value chr(BS) in length BLOCK_SIZE will be appended to the origin data. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. What is the best way to set up multiple operating systems on a retro PC? It is much harder to break if the strings you are encoding are short, and/or if it is hard to guess the length of the passphrase used. I would advise caution in using AES-CBC with PyCrypto. If we encounter what appears to be an advanced extraterrestrial technological device, would the claim that it was designed be falsifiable? 2 Answers Sorted by: 29 Use AES (from pycrypto ), but pad the plain text prior to encrypting it. Crypt::encryptString() does not allow the specification of a key (an application key is applied instead), i.e. Python string with byte array to byte array. @TessellatingHeckler - yes, CBC actually needs it, and if it's not random and unique (to the key used) CBC becomes susceptible to multitude of attacks. @Ferris - because rolling your own crypto is, usually, a bad idea. hz abbreviation in "7,5 t hz Gesamtmasse". Even if it isn't an exact duplicate, the other question seems to contain useful answers. The XOR "cipher" can be used to do the dirty work if you don't want to do it yourself: The cipher works as follows without having to pad the plaintext: Credit to https://stackoverflow.com/a/2490376/241294 for the base64 encode/decode functions (I'm a python newbie). How could a person make a concoction smooth enough to drink and inject without access to a blender? I have used both Crypto and PyCryptodomex library and it is blazing fast You can use a scheme like PKCS#7 padding. Yes, as I state above, this logic pads with nulls. Often in Python there's no need for list indexes at all. They ask for two functions to call. (Outdated since the latest edits, but kept for future reference): I had problems using Windows + Python 3.6 + all the answers involving pycrypto (not able to pip install pycrypto on Windows) or pycryptodome (the answers here with from Crypto.Cipher import XOR failed because XOR is not supported by this pycrypto fork ; and the solutions using AES failed too with TypeError: Object type cannot be passed to C code). Why are you hashing the key? AES Python encryption. 15 os.urandom is encouraged on the PyCrypto website. This article will discuss the different methods you can utilize to encrypt a string in Python. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. Installation: The cryptography library can be installed using the below command: pip install cryptography Generate Key to encrypt the file In the cryptography library, there is a cryptography algorithm called fernet. How to encrypt text with a password in python? This is simple and insecure, but for certain tasks may be useful. @zwer it is a different key each time but in some instances it is the same piece of text being encrypted, potentially hundreds of times :/. Hopefully my edit has made that point clear. Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide. Asymmetric encryption is relatively new technique to encrypt and decrypt a text. How could a person make a concoction smooth enough to drink and inject without access to a blender? OCB requires a nonce; if you don't supply one a random nonce will be created every time you create a new AES object, and so decryption will fail. Creating a encrypting function to encrypt a string in python. Ask Question Asked 8 years, 5 months ago Modified 5 months ago Viewed 219k times 74 I have been looking for sometime on how to encrypt and decrypt a string. How to encrypt text with a password in python? # Decryption decryption_suite = AES.new (b'1234567812345678', AES.MODE_OCB) plaintext = decryption_suite.decrypt (cipher_text) For the benefit of others, here is my decryption implementation which I got to by combining the answers of @Cyril and @Marcus. rev2023.6.5.43477. Why is my bevel modifier not making changes when I change the values? This is a three step process: 1 - encode the message 2 - initialize the Fernet class 3 - pass the encoded message to encrypt () method encode the message: message = "message I want to encrypt".encode() initialize the Fernet class: f = Fernet(key) encrypt the message: encrypted_message = f.encrypt(message) Full Code Example Remember to write down padding, encoding, and encrypting steps (and vice versa). Is the Fernet cryptography module safe, and can I do AES encryption with that module? It's not frowned upon in enterprise environments, it's frowned upon everywhere you want anything secure. Why is this screw on the wing of DASH-8 Q400 sticking out, is it safe? Does Python have a built-in, simple way of encoding/decoding strings using a password? EDIT: Just to be clear I'm looking for a way to encrypt my users data in a determanistic way not obfuscate the message. Unexpected low characteristic impedance using the JLCPCB impedance calculator. Included are symmetric ciphers (like AES). once you decrypt the cipher you should get back exactly the same. Let me address your question about "modes." in _pad self.bs access is needed and in _unpad doesn't need, I had to modify it to be able to encrypt strings containing non ASCII characters such as . Not for prying eyes.") About the other answers not being one-liners: thats not the point of the question. the error message : 'bytes' object has no attribute 'encode'. How to encrypt text with a password in python? Password encryption and decryption in Python, Encrypt string with password without external modules. def main(): message = str(input('Enter your message: ')) key = int(input('Enter you key [1 - 26]: ')) choice = input('Encrypt or Decrypt? You can get a passphrase out of an arbitrary password by using a cryptographic hash function (NOT Python's builtin hash) like SHA-1 or SHA-256. Here is my implementation, and it works for me with some fixes. Are harmonic coordinates legit coordinates? Use Simple Crypt to Encrypt a String in Python [E/D]: ') if choice.lower ().startswith ('e'): print(encrypt (message, key)) else: print(decrypt (message, key)) So these are the above functions which we require to encrypt and decrypt our string message. Presumably your key is wrong. Convert the string to a byte string, so that it can be encrypted. Encrypting strings with a predetermined key. Once we have generated a key, we need to load the key with load_key () Then, Keep your secret_key safe! The accepted answer uses the freaking Vigenere cipher, broken for centuries and breakable by hand. i.e. It's fairly easy to use in python (. Let's say I send one an encoded string who know the key, what if he enter the key with a typo? Are the Clouds of Matthew 24:30 to be taken literally,or as a figurative Jewish idiom? You're using this as a cryptographic KEY and you should use that terminology to avoid confusion in your questions as well as any docs, comments, specs, test plans, etc. If you encrypt, encrypt properly. For Python 3, that trusted library is cryptography. This is more to explain how it should be constructed, not really to be used in a production environment and especially not for communication as its missing a crucial ingredient - message authentication. but when i check type iv it's said . Don't use a password here, just encode and you are done. Here's a simple and portable example that should be secure enough for basic string encryption needs. There is a way to obfuscate your IV but that exceeds the comment section size and, besides, there is absolutely no reason to do it. I don't use windows, so I can't make a fix. We will understand how to encrypt a given plaintext string and securely generate a key for decryption.. To begin, let's first install the required Python By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. Is it bigamy to marry someone to whom you are already married? i tried string[2: ] but it just removes part of the string itself not the b, Hi @t.m.adam, hope you are doing well. @derrend, you're welcome. 2 Answers Sorted by: 29 Use AES (from pycrypto ), but pad the plain text prior to encrypting it. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. But most of it is in 2.7 and anything that is using 3.2 is not letting me print it or add it to a string. Are there any food safety concerns related to food produced in countries with an ongoing war in it? The secret key is kept secret or exchanged over the internet. You should not use a SHA-family hash function for generating a key from a password see, For future readers, if you're looking to derive a key from a passphrase, look for PBKDF2. : Adapted from https://github.com/bozhu/RC4-Python/blob/master/rc4.py. So don't worry (I say somewhat, as the algorithm created would actually generate more repeated values on the low-end or high-end range of values, for example, in case the most frequent characters were not centered in this distrubution unicode caracrer set (from 0 to 255), which is the case. Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide. Install and import the PyCrypto library to encrypt and decrypt a string. It's quick and easy to implement. I include that information encoded in the opaque return value of. Use Simple Crypt to Encrypt a String in Python How do I decrypt using hashlib in python? How can explorers determine whether strings of alien text is meaningful or just nonsense? Nothing original to add, but here are some progressive rewrites of qneill's answer using some useful Python facilities. How can I encrypt with a RSA private key in python? And as you can imagine it works all the way around: it has a unicode code as an input (integer) and gets the corresponding unicode character (string): Then you can do a simple encription by adding or substracting by some arbitrary integer in this case, the number 2: NOTE: Watch out in not utting very big values or you'll get an error id you reach a negative nber, for example. Is there a simple way to encrypt/decrypt a string with a key? decrypt('1PWP7a6xgoYx81VZocrDr5okEEcnqKkyDc', ). Install and import the PyCrypto library to encrypt and decrypt a string. The plaintext should look the same as the paintext you use as input at the beginning so you should be getting. If every encryption of the same plaintext produces the same ciphertext, it'll be really easy to spot identical plaintexts in your database. You can use it instead the previous functions to pad (when doing encryption) and unpad (when doing decryption). The Galois / Counter mode block cipher produces ciphertext and a tag to serve the same purpose, so can be used to serve the same purposes. Use Simple Crypt to Encrypt a String in Python Encrypting user input in Python with pyCrypto, Sending Encrypted strings using socket in Python, Encrypting with AES-256 and PKCS7 padding, Encrypt with AES/ECB/PKSC5, migrating Java to Python, TypeError: decrypt() cannot be called after encrypt(), AES 256 Encryption -> Changing inititialization vector slightly changes decrypted message without knowing key, How to add a padding to the data to make it acceptable for AES256 encryption algorithm in pycrypto library, PyCrypto AES encryption not working as expected, Decryption issue in python using AES algorithm, Encrypt using AES-256 like OpenSSL with PyCrypto, Padding is incorrect. Why are mountain bike tires rated for so much lower pressure than road bikes? The solution 2) with AES "CFB mode" is ok, but has two drawbacks: the fact that SHA256(password) can be easily bruteforced with a lookup table, and that there is no way to test if a wrong password has been entered. SQLAlchemy: call function and save returned value in table always, Encrypting a message using secret key in python, Proper data encryption with a user-set password in python3, How to create an obfuscated local password. Connect and share knowledge within a single location that is structured and easy to search. Find centralized, trusted content and collaborate around the technologies you use most. This example pads the clear text with null characters (ASCII 0) iv_int = int(binascii.hexlify(iv), 16) doesn't work, replace it with iv_int = int(binascii.hexlify(iv), 16) plus the 'import binascii' and it should work (on Python 3.x), otherwise great work! Another take on this (heavily derived from solutions above) but. NOTE: MAKE SURE THAT YOUR KEY IS 16 bytes. DES is broken, the top AES answer uses ECB mode, and the AES answer after it doesn't demonstrate proper IV handling. Ask Question Asked 8 years, 5 months ago Modified 5 months ago Viewed 219k times 74 I have been looking for sometime on how to encrypt and decrypt a string. WebMethod 2: PyCrypto Cipher. I am sorry the more complex solution I came up with is not feasible. Installation: The cryptography library can be installed using the below command: pip install cryptography Generate Key to encrypt the file In the cryptography library, there is a cryptography algorithm called fernet. Something like: Decode is pretty much the same, except you subtract the key. By clicking Post Your Answer, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct. # Decryption decryption_suite = AES.new (b'1234567812345678', AES.MODE_OCB) plaintext = decryption_suite.decrypt (cipher_text) The essence of that question isn't obfuscation rather than security (even though OP was more interested in obfuscation). Once we have generated a key, we need to load the key with load_key () We will use the fernet module to encrypt the file. Finally, let's go into an in-depth-analysis of the second more complex alternative. The nonce and mac values are not secret and it's safe to store them next to the ciphertext. It enhances the alignment of the key and secret phrase with 32 bytes and IV to 16 bytes: You may need the following two functions: pad- to pad (when doing encryption) and unpad- to unpad (when doing decryption) when the length of input is not a multiple of BLOCK_SIZE. Steps: Import Fernet Then generate an encryption key, that can be used for encryption and decryption. The second one will generate the maximum security. How do I encrypt and decrypt a string in python? Can the logo of TSR help identifying the production time of old Products? [E/D]: ') if choice.lower ().startswith ('e'): print(encrypt (message, key)) else: print(decrypt (message, key)) So these are the above functions which we require to encrypt and decrypt our string message. pyDES is a DES and Triple-DES implementation completely written in python. Why aren't penguins kosher as sea-dwelling creatures? With this one we can say that the encription will be almost indefitable. Please provide not only code but also explain what you are doing and why this is better / what is the difference to existing answers. 576), What developers with ADHD want you to know, We are graduating the updated button styling for vote arrows, Statement from SO: June 5, 2023 Moderator Action. rev2023.6.5.43477. Solution 3: You can use Import RSA library rsa installing : pip install rsa Then encrypt the byte string with the public key. into b'eNrzSM3JyVcozy_KSVEEAB0JBF4='. I edited my question to clarify this. I've set the default algorithm to SHA256, so you'll need a 32-byte key: You may want to look at the itsdangerous library, which packages this all up with serialisation and de-serialisation in various formats. Site design / logo 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA. You need to keep this key in a safe place. When you receive the data back, split data and signature and verify. The program below uses the cryptocode library to encrypt What's the correct way to think about wood's integrity when driving screws? Why is this screw on the wing of DASH-8 Q400 sticking out, is it safe? Heres a simple example using Fernet encryption from their README: Based on this answer, the following AES256-GCM solution is even safer, although it requires a nonce: Here is my solution for anyone who may be interested: To subscribe to this RSS feed, copy and paste this URL into your RSS reader. The term cryptocode is a simple library that lets us encrypt and decrypt strings securely and simply in Python 3 or above. This is the approach that All Vy follows, albeit incorrectly. Site design / logo 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA. How do I encrypt and decrypt a string in python? Then, define a secret key, i.e., a password. So, you must pad. I'm wanting to collect a piece of text and a message from a user such as 1PWP7a6xgoYx81VZocrDr5okEEcnqKkyDc hello world. Then, I chose it because I can pick long or short passwords, which is not so easy with AES. Are the Clouds of Matthew 24:30 to be taken literally,or as a figurative Jewish idiom? Making statements based on opinion; back them up with references or personal experience. pyDES is a DES and Triple-DES implementation completely written in python. I have a key and also iv key with 44 length. By clicking Post Your Answer, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct. Not for prying eyes.") Can a court compel them to reveal the informaton? Randomise the IV and include it with the ciphertext instead. A witness (former gov't agent) knows top secret USA information. I appreciate the time and trouble you went to in order to create this answer but I'm quite sure this would be a terrible and severely insecure solution to my original question, having to store the array of values needed to decipher the text for instance is not realistic and introduces further complications. If you want to convert the ciphertext to string you'll have to base64-encode it first, in order to encode the raw bytes to ASCII characters (just remember to decode before decryption). Btw. A text that is encrypted using the public key can also be decrypted using a secret key. You can use the new django-mirage-field package. Even then, you usually secure the application with a password, then exchange encrypted information using a key, perhaps one attached to the user account. How can explorers determine whether strings of alien text is meaningful or just nonsense? i tried base64 but its ouptut is like so: ZGF0YSB0byBiZSBlbmNvZGVk. How to encrypt data with RSA private key in python? RSA Encrypted data convert from bytes to string and back to bytes? Just put the pyDES module in the same folder as your program and try it out: Sender's computer You need to keep this key in a safe place. Its also referred to as private-key cryptography, as well as secret-key, shared-key, one-key, and private-key encryption. THIS ANSWER IS TERRIBLE FOR SECURITY. The chances of the output of your encryption just happening, by chance, to be a correctly formatted UTF8 string is pretty unlikely. But I appreciate it. Balancing a PhD program with a startup career (Ep. Find centralized, trusted content and collaborate around the technologies you use most. You can use the MD5 hash of the key rather than use it directly. Making statements based on opinion; back them up with references or personal experience. How do I encrypt and decrypt a string in python? Proving that same key and same data still produce different ciphertext each time. Note: all modules are installed under the Cryptodome package e.g, you can read more from official docs here https://www.pycryptodome.org/src/introduction. In this section, we will focus on encrypting string data in Python using a combination of AES encryption, PBKDF2 key derivation, and the cryptography library. My goal is obfuscation, not strong security; nothing mission critical is being encoded. Not the answer you're looking for? Check with bin2hex(Crypt::getKey()) which key is applied and if it is a different one, use this key for decryption. Use the cryptocode Library to Encrypt a String in Python. for those of us with very minimal security/encryption/information-theory background, why the "never use"? I am grateful for the other answers which inspired me, but it didn't work for me. b"my message" is encrypted. I would like to use these encrypted strings as URL parameters. Thanks, fixed the issue. Could algae and biomimicry create a carbon neutral jetpack? def main(): message = str(input('Enter your message: ')) key = int(input('Enter you key [1 - 26]: ')) choice = input('Encrypt or Decrypt? It does some crypto things, but can you elaborate? How do I encrypt and decrypt a string in python 3.7? Something like this: >>> encode ('John Doe', password = 'mypass') 'sjkl28cn2sx0' >>> decode ('sjkl28cn2sx0', password = 'mypass') 'John Doe' So the string "John Doe" gets encrypted as 'sjkl28cn2sx0'. Something like this: >>> encode ('John Doe', password = 'mypass') 'sjkl28cn2sx0' >>> decode ('sjkl28cn2sx0', password = 'mypass') 'John Doe' So the string "John Doe" gets encrypted as 'sjkl28cn2sx0'. I couldn't find anything simple to do that. The encryption process requires a key, which can later be used to decrypt the original message. Note that it is better to use Autehnticated Encryption modes as AES-GCM. AES: how to detect that a bad password has been entered? In Europe, do trains/buses get transported by ferries with the passengers inside? Fernet makes it very easy to encrypt and decrypt messages and keep you secure. What is the first science fiction work to use the determination of sapience as a plot point? Does the Earth experience air resistance? The "encoded_c" mentioned in the @smehmood's Vigenere cipher answer should be "key_c". It takes as input a 32-byte key and a 16-byte string, called the block and outputs a block. If you face some issue like this https://bugs.python.org/issue4329 (TypeError: character mapping must return integer, None or unicode) use str(cipher) while decoding as follows: The library cryptocode provides a simple way to encode and decode strings with a password. The term cryptocode is a simple library that lets us encrypt and decrypt strings securely and simply in Python 3 or above. A password alone can be as safe as a Fernet 32-byte random key, provided you generate a properly random password from a similar size pool. Also, if you want to use them as URL parameters, use base64.urlsafe_b64_encode(), rather than the standard one. If you lose the key, you wont be able to decrypt the data that was encrypted with this key. Install and import the PyCrypto library to encrypt and decrypt a string. In general, if you're not very careful about the padding, there are attacks that completely break encryption! Ask Question Asked 6 years, 3 months ago Modified 6 months ago Viewed 79k times 32 Surprisingly difficult to find a straight answer to this on Google. If you are looking for something cryptographic, PyCrypto is probably your best bet, though previous answers overlook some details: ECB mode in PyCrypto requires your message to be a multiple of 16 characters in length.

Marbles Safety Folder, Provence Lavender Tour From Nice, Virginia Assisted Living Regulations 2022, Newphone Wireless Login, Apartment For Rent In Selangor Below Rm1000lacrosse Rubber Snake Boots, Craftmade Mnd Mondo Ceiling Fan, Huntsmart Trail Camera App, Pin End Reverse Tooth Scroll Saw Blades, Opyum Pumps In Patent Leather With Gold-tone Heel,

mobile cloud computing: architectures, algorithms and applications pdfCOMMENT