Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed size of memory buffers #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions srp.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ extern "C" {
#define SRP_H

#define SHA1_DIGEST_LENGTH 20
#define SHA224_DIGEST_LENGTH 224
#define SHA256_DIGEST_LENGTH 256
#define SHA384_DIGEST_LENGTH 384
#define SHA512_DIGEST_LENGTH 512
#define SHA224_DIGEST_LENGTH 28
#define SHA256_DIGEST_LENGTH 32
#define SHA384_DIGEST_LENGTH 48
#define SHA512_DIGEST_LENGTH 64
#define BIGNUM mbedtls_mpi
struct SRPVerifier;
struct SRPUser;
Expand Down