summaryrefslogtreecommitdiff
path: root/src/crypto/evp/evp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/evp/evp.c')
-rw-r--r--src/crypto/evp/evp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/crypto/evp/evp.c b/src/crypto/evp/evp.c
index 117e774f..ad5f85bf 100644
--- a/src/crypto/evp/evp.c
+++ b/src/crypto/evp/evp.c
@@ -127,7 +127,7 @@ int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) {
if (a->ameth) {
int ret;
- /* Compare parameters if the algorithm has them */
+ // Compare parameters if the algorithm has them
if (a->ameth->param_cmp) {
ret = a->ameth->param_cmp(a, b);
if (ret <= 0) {
@@ -187,9 +187,9 @@ int EVP_PKEY_id(const EVP_PKEY *pkey) {
return pkey->type;
}
-/* evp_pkey_asn1_find returns the ASN.1 method table for the given |nid|, which
- * should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
- * unknown. */
+// evp_pkey_asn1_find returns the ASN.1 method table for the given |nid|, which
+// should be one of the |EVP_PKEY_*| values. It returns NULL if |nid| is
+// unknown.
static const EVP_PKEY_ASN1_METHOD *evp_pkey_asn1_find(int nid) {
switch (nid) {
case EVP_PKEY_RSA: