diff options
author | mcpowers <none@none> | 2007-12-14 20:19:45 -0800 |
---|---|---|
committer | mcpowers <none@none> | 2007-12-14 20:19:45 -0800 |
commit | f9fbec18f5b458b560ecf45d3db8e8bd56bf6942 (patch) | |
tree | f9e626dd6ba74277192956e941fca51c2cb44a5b /usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h | |
parent | cd37da7426f0c49c14ad9a8a07638ca971477566 (diff) | |
download | illumos-gate-f9fbec18f5b458b560ecf45d3db8e8bd56bf6942.tar.gz |
PSARC 2007/446 Elliptic-Curve Cryptography for Solaris
5066901 Offer the PKCS#11 Elliptic Curve based mechanisms in Solaris
6562402 kernel software provider for Elliptic Curve mechanisms
Diffstat (limited to 'usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h')
-rw-r--r-- | usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h b/usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h index b780a88805..5cd118cb94 100644 --- a/usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h +++ b/usr/src/lib/pkcs11/pkcs11_softtoken/common/softObject.h @@ -474,10 +474,6 @@ typedef enum { */ #define KEY_PUB_EC(k) \ &((k)->key_type_u.ec_pub_key) -#define OBJ_PUB_EC_PARAM(o) \ - &((o)->object_class_u.public_key->key_type_u.ec_pub_key.param) -#define KEY_PUB_EC_PARAM(k) \ - &((k)->key_type_u.ec_pub_key.param) #define OBJ_PUB_EC_POINT(o) \ &((o)->object_class_u.public_key->key_type_u.ec_pub_key.point) #define KEY_PUB_EC_POINT(k) \ @@ -596,10 +592,6 @@ typedef enum { #define KEY_PRI_EC(k) \ &((k)->key_type_u.ec_pri_key) -#define OBJ_PRI_EC_PARAM(o) \ - &((o)->object_class_u.private_key->key_type_u.ec_pri_key.param) -#define KEY_PRI_EC_PARAM(k) \ - &((k)->key_type_u.ec_pri_key.param) #define OBJ_PRI_EC_VALUE(o) \ &((o)->object_class_u.private_key->key_type_u.ec_pri_key.value) #define KEY_PRI_EC_VALUE(k) \ |