Top "Commoncrypto" questions

Apple's cryptography framework.

Importing CommonCrypto in a Swift framework

How do you import CommonCrypto in a Swift framework for iOS? I understand how to use CommonCrypto in a Swift …

ios swift commoncrypto
AES encryption in swift

I'm trying to implement AES encryption in swift. The encryption decryption for Android and C# is working properly. I need …

ios swift cryptography aes commoncrypto
CommonHMAC in Swift

I'm trying to create a HMAC SHA-1 hash of a string in Swift but can't figure out how to interact …

macos hash swift hmacsha1 commoncrypto
Issue using CCCrypt (CommonCrypt) in Swift

I am porting a working Objective-C Category (NSData+AESCrypt.m) to Swift and I have found an issue working with …

ios objective-c swift cryptography commoncrypto
PBKDF2 using CommonCrypto on iOS

I'm trying to use CommonCrypto to generate keys using PBKDF2 but I can't seem to import CommonCrypto/CommonKeyDerivation.h, I …

objective-c ios pbkdf2 commoncrypto
CCCrypt decrypting in AES CBC works even without IV

I have a confusing problem, where decrypting a file which was encrypted using CCCrypt's AES-CBC mode with a randomized, 16byte …

objective-c cryptography commoncrypto
Signing and Verifying on iOS using RSA

How to sign and verify some data on iOS with an RSA key (preferably using the system own libcommonCrypto)?

ios rsa pkcs#7 commoncrypto
Swift - Cannot convert value of type 'UnsafePointer<Any>' to expected argument type 'UnsafePointer<_>'

I am trying to use CommonCrypto (with the help of https://github.com/sergejp/CommonCrypto) for the first time with …

swift pointers encryption types commoncrypto
Where can I get CommonCrypto / CommonCrypto file from?

I have a problem with importing CommonCrypto/CommonCrypto or CommonCrypto/CommonDigest. I need a SHA256 for my Swift code. I …

ios swift commoncrypto
How to use common crypto and/or calculate sha256 in swift 2 & 3

I am trying to make hash a password value according to sha256. I already search this but there is no …

swift2 sha256 digest commoncrypto