Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
354 views
in Technique[技术] by (71.8m points)

iphone - how to use DES algorithm to encrypt or decrypt some data in object-c?

Now I want to encrypt or decrypt some data in object-c use DES algorithm ,can somebody give me some suggestion?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

First point. AES has replaced DES as the de-facto encrpytion standard, at least for the banking industry.

Second Point: Irrespective of what algo you decide on, this is what you have to do.

  1. Add the Security.framework to your project.
  2. Import the "CommonCrypto/CommonCryptor.h" file. This contains all the interfaces for symmetric encryption.
  3. Using the methods in this class, you can define your encryption algo (AES, DES, etc.), the key size, padding that you want to use, etc.
  4. You have to option of a one-shot API for encryption/decryption (CCCrypt()) or more advanced options if needed.

Hope this helps. Let me know if you need any particular information.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...