blob: 177c3043bc616fd0d4040679e6958b704e3778ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef TWEETPWHASH_H
#define TWEETPWHASH_H
#define crypto_pwhash_PRIMITIVE "pbkdf2hmacsha512"
#define crypto_pwhash crypto_pwhash_pbkdf2hmacsha512
#define crypto_pwhash_SALTBYTES crypto_pwhash_pbkdf2hmacsha512_SALTBYTES
#define crypto_pwhash_IMPLEMENTATION crypto_pwhash_pbkdf2hmacsha512_IMPLEMENTATION
#define crypto_pwhash_VERSION crypto_pwhash_pbkdf2hmacsha512_VERSION
#define crypto_pwhash_pbkdf2hmacsha512_tweet_SALTBYTES 32
extern int crypto_pwhash_pbkdf2hmacsha512_tweet(unsigned char *,unsigned long long,const unsigned char *,unsigned long long,const unsigned char *,unsigned long long);
#define crypto_pwhash_pbkdf2hmacsha512_tweet_VERSION "-"
#define crypto_pwhash_pbkdf2hmacsha512 crypto_pwhash_pbkdf2hmacsha512_tweet
#define crypto_pwhash_pbkdf2hmacsha512_SALTBYTES crypto_pwhash_pbkdf2hmacsha512_tweet_SALTBYTES
#define crypto_pwhash_pbkdf2hmacsha512_VERSION crypto_pwhash_pbkdf2hmacsha512_tweet_VERSION
#define crypto_pwhash_pbkdf2hmacsha512_IMPLEMENTATION "crypto_pwhash/pbkdf2hmacsha512/tweet"
#endif
|