fix(core): fix compilation warning in NSData+Crypto

pull/296/head
Francis Lachapelle 2021-03-12 17:30:17 -05:00
parent dd90a0977a
commit 386429e46e
1 changed files with 2 additions and 0 deletions

View File

@ -60,7 +60,9 @@
- (NSData *) asBlowfishCryptUsingSalt: (NSData *) theSalt;
#ifdef HAVE_SODIUM
- (NSData *) asArgon2iUsingSalt: (NSData *) theSalt;
# ifdef crypto_pwhash_ALG_ARGON2ID13
- (NSData *) asArgon2idUsingSalt: (NSData *) theSalt;
#endif /* crypto_pwhash_ALG_ARGON2ID13 */
#endif /* HAVE_SODIUM */
- (NSData *) extractSalt: (NSString *) theScheme;