diff options
Diffstat (limited to 'src/libstrongswan/credentials/certificates/ac.h')
-rw-r--r-- | src/libstrongswan/credentials/certificates/ac.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstrongswan/credentials/certificates/ac.h b/src/libstrongswan/credentials/certificates/ac.h index e617d56b0..50fd78878 100644 --- a/src/libstrongswan/credentials/certificates/ac.h +++ b/src/libstrongswan/credentials/certificates/ac.h @@ -41,35 +41,35 @@ struct ac_t { * Implements the certificate_t interface */ certificate_t certificate; - + /** * Get the attribute certificate's serial number. * * @return chunk pointing to serialNumber */ chunk_t (*get_serial)(ac_t *this); - + /** * Get the serial number of the holder certificate. * * @return chunk pointing to serialNumber */ chunk_t (*get_holderSerial)(ac_t *this); - + /** * Get the issuer of the holder certificate. * * @return holderIssuer as identification_t* */ identification_t* (*get_holderIssuer)(ac_t *this); - + /** * Get the thauthorityKeyIdentifier. * * @return authKeyIdentifier as chunk_t, to internal data */ chunk_t (*get_authKeyIdentifier)(ac_t *this); - + /** * @brief Checks if two attribute certificates belong to the same holder * |