diff options
author | Bodo Möller <bodo@openssl.org> | 2002-03-20 17:04:04 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2002-03-20 17:04:04 +0100 |
commit | 82652aaf17819c6c1ecfc50602b4b54a19c566fb (patch) | |
tree | 4c63ffb8374283894e63dfe0615e2ceb709cb4c7 /crypto/dh/dh_err.c | |
parent | New function EC_GROUP_check_discriminant(). (diff) | |
download | openssl-82652aaf17819c6c1ecfc50602b4b54a19c566fb.tar.xz openssl-82652aaf17819c6c1ecfc50602b4b54a19c566fb.zip |
fix DH_generate_parameters for general 'generator'
Diffstat (limited to 'crypto/dh/dh_err.c')
-rw-r--r-- | crypto/dh/dh_err.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/dh/dh_err.c b/crypto/dh/dh_err.c index 225779336c..d837950aec 100644 --- a/crypto/dh/dh_err.c +++ b/crypto/dh/dh_err.c @@ -1,6 +1,6 @@ /* crypto/dh/dh_err.c */ /* ==================================================================== - * Copyright (c) 1999 The OpenSSL Project. All rights reserved. + * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -77,6 +77,7 @@ static ERR_STRING_DATA DH_str_functs[]= static ERR_STRING_DATA DH_str_reasons[]= { +{DH_R_BAD_GENERATOR ,"bad generator"}, {DH_R_NO_PRIVATE_VALUE ,"no private value"}, {0,NULL} }; |