summaryrefslogtreecommitdiff
path: root/nettle-meta.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2018-03-17 17:25:03 +0100
committerNiels Möller <nisse@lysator.liu.se>2018-03-17 17:25:03 +0100
commit8bf4747d9cca7fd2cdd6ca8e14bce7cb334b2a7a (patch)
tree033f2fa114c78e37c591c1c2e29a2151d08bb127 /nettle-meta.h
parent8c210b4e53b8566faea7ff0a175ad323236dd5d2 (diff)
downloadnettle-8bf4747d9cca7fd2cdd6ca8e14bce7cb334b2a7a.tar.gz
Add leading underscore to data symbols.rename-data-symbols
Diffstat (limited to 'nettle-meta.h')
-rw-r--r--nettle-meta.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/nettle-meta.h b/nettle-meta.h
index 0d16a2b8..3c13e9b2 100644
--- a/nettle-meta.h
+++ b/nettle-meta.h
@@ -60,11 +60,8 @@ struct nettle_cipher
nettle_cipher_func *decrypt;
};
-/* FIXME: Rename with leading underscore, but keep current name (and
- size!) for now, for ABI compatibility with nettle-3.1, soname
- libnettle.so.6. */
/* null-terminated list of ciphers implemented by this version of nettle */
-extern const struct nettle_cipher * const nettle_ciphers[];
+extern const struct nettle_cipher * const _nettle_ciphers[];
const struct nettle_cipher * const *
#ifdef __GNUC__
@@ -125,11 +122,8 @@ struct nettle_hash
(nettle_hash_digest_func *) name##_digest \
}
-/* FIXME: Rename with leading underscore, but keep current name (and
- size!) for now, for ABI compatibility with nettle-3.1, soname
- libnettle.so.6. */
/* null-terminated list of digests implemented by this version of nettle */
-extern const struct nettle_hash * const nettle_hashes[];
+extern const struct nettle_hash * const _nettle_hashes[];
const struct nettle_hash * const *
#ifdef __GNUC__
@@ -180,12 +174,9 @@ struct nettle_aead
nettle_hash_digest_func *digest;
};
-/* FIXME: Rename with leading underscore, but keep current name (and
- size!) for now, for ABI compatibility with nettle-3.1, soname
- libnettle.so.6. */
/* null-terminated list of aead constructions implemented by this
version of nettle */
-extern const struct nettle_aead * const nettle_aeads[];
+extern const struct nettle_aead * const _nettle_aeads[];
const struct nettle_aead * const *
#ifdef __GNUC__
@@ -252,11 +243,8 @@ struct nettle_armor
(nettle_armor_decode_final_func *) name##_decode_final, \
}
-/* FIXME: Rename with leading underscore, but keep current name (and
- size!) for now, for ABI compatibility with nettle-3.1, soname
- libnettle.so.6. */
/* null-terminated list of armor schemes implemented by this version of nettle */
-extern const struct nettle_armor * const nettle_armors[];
+extern const struct nettle_armor * const _nettle_armors[];
const struct nettle_armor * const *
#ifdef __GNUC__