forked from nss-dev/nss
-
Notifications
You must be signed in to change notification settings - Fork 0
SECKEYPublicKey
Endi S. Dewata edited this page Jul 11, 2022
·
2 revisions
struct SECKEYPublicKeyStr { PLArenaPool *arena; KeyType keyType; PK11SlotInfo *pkcs11Slot; CK_OBJECT_HANDLE pkcs11ID; union { SECKEYRSAPublicKey rsa; SECKEYDSAPublicKey dsa; SECKEYDHPublicKey dh; SECKEYKEAPublicKey kea; SECKEYFortezzaPublicKey fortezza; SECKEYECPublicKey ec; } u; }; typedef struct SECKEYPublicKeyStr SECKEYPublicKey;
-
SECItem* PK11_MakeIDFromPubKey(SECItem *pubKeyData)
-
SECKEYPublicKey* SECKEY_ConvertToPublicKey(SECKEYPrivateKey *privateKey)
-
SECKEYPublicKey* CERT_ExtractPublicKey(CERTCertificate *cert)
-
SECKEYPublicKeyList* PK11_ListPublicKeysInSlot(PK11SlotInfo *slot, char *nickname)
-
void SECKEY_DestroyPublicKey(SECKEYPublicKey *publicKey)
-
SECKEY_DestroyPublicKeyList