Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2016-02-07 07:59:49 +0300
committerAdam Langley <agl@google.com>2016-02-17 02:51:53 +0300
commit985da09340a79cc35b26123e9b44870ab5dcc12f (patch)
tree5a15c785274c1c280a2a76208c8d29bea37e6476 /crypto
parent2f6410ba4e8f610db59e56c5802bfbeb3f57ecf2 (diff)
Remove flags field from EC_KEY.
It doesn't do anything. Change-Id: Ifcc2c824faf6012d2a442208b8204a32e141a650 Reviewed-on: https://boringssl-review.googlesource.com/7073 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/ec/ec_key.c1
-rw-r--r--crypto/ec/internal.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/crypto/ec/ec_key.c b/crypto/ec/ec_key.c
index a1f86192..f01bf6b4 100644
--- a/crypto/ec/ec_key.c
+++ b/crypto/ec/ec_key.c
@@ -208,7 +208,6 @@ EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src) {
/* copy the rest */
dest->enc_flag = src->enc_flag;
dest->conv_form = src->conv_form;
- dest->flags = src->flags;
return dest;
}
diff --git a/crypto/ec/internal.h b/crypto/ec/internal.h
index 0299e1bf..2b788c1c 100644
--- a/crypto/ec/internal.h
+++ b/crypto/ec/internal.h
@@ -262,7 +262,6 @@ struct ec_key_st {
point_conversion_form_t conv_form;
CRYPTO_refcount_t references;
- int flags;
ECDSA_METHOD *ecdsa_meth;