public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/14118] New: b64_ntop function not in public API
@ 2012-05-16 17:10 dominik at greysector dot net
  2014-06-25 10:58 ` [Bug libc/14118] " fweimer at redhat dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: dominik at greysector dot net @ 2012-05-16 17:10 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=14118

             Bug #: 14118
           Summary: b64_ntop function not in public API
           Product: glibc
           Version: unspecified
               URL: https://fedorahosted.org/fpc/ticket/172
            Status: NEW
          Severity: minor
          Priority: P2
         Component: libc
        AssignedTo: unassigned@sourceware.org
        ReportedBy: dominik@greysector.net
                CC: drepper.fsp@gmail.com
    Classification: Unclassified


b64_ntop function is not in public API. This forces people to reimplement it or
use less convenient libraries like openssl. Officially exposing base64
functions from glibc would benefit all.

I can see it's defined in resolv/base64.c and it looks like it's been imported
from libresolv in 1996:
http://sourceware.org/git/?p=glibc.git;a=commit;f=resolv/base64.c;h=df21c8581af14b07680c17eefc7479eac510c60f

The declaration can be found in include/resolv.h, but only as
libresolv_hidden_proto (__b64_ntop)

Apart from that, there's no mention of this function in the API documentation,
even though it's quite usable by external code.

See https://fedorahosted.org/fpc/ticket/172 for the discussion that prompted
this bug report.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14118] b64_ntop function not in public API
  2012-05-16 17:10 [Bug libc/14118] New: b64_ntop function not in public API dominik at greysector dot net
@ 2014-06-25 10:58 ` fweimer at redhat dot com
  2015-06-25 17:02 ` orion at cora dot nwra.com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: fweimer at redhat dot com @ 2014-06-25 10:58 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14118

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14118] b64_ntop function not in public API
  2012-05-16 17:10 [Bug libc/14118] New: b64_ntop function not in public API dominik at greysector dot net
  2014-06-25 10:58 ` [Bug libc/14118] " fweimer at redhat dot com
@ 2015-06-25 17:02 ` orion at cora dot nwra.com
  2015-06-25 17:10 ` dominik at greysector dot net
  2015-08-23  1:17 ` [Bug network/14118] " jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: orion at cora dot nwra.com @ 2015-06-25 17:02 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14118

Orion Poplawski <orion at cora dot nwra.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |orion at cora dot nwra.com

--- Comment #1 from Orion Poplawski <orion at cora dot nwra.com> ---
Still more implementations -
http://git.libwebsockets.org/cgi-bin/cgit/libwebsockets/tree/lib/base64-decode.c

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libc/14118] b64_ntop function not in public API
  2012-05-16 17:10 [Bug libc/14118] New: b64_ntop function not in public API dominik at greysector dot net
  2014-06-25 10:58 ` [Bug libc/14118] " fweimer at redhat dot com
  2015-06-25 17:02 ` orion at cora dot nwra.com
@ 2015-06-25 17:10 ` dominik at greysector dot net
  2015-08-23  1:17 ` [Bug network/14118] " jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: dominik at greysector dot net @ 2015-06-25 17:10 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14118

--- Comment #2 from Dominik 'Rathann' Mierzejewski <dominik at greysector dot net> ---
Ping?

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug network/14118] b64_ntop function not in public API
  2012-05-16 17:10 [Bug libc/14118] New: b64_ntop function not in public API dominik at greysector dot net
                   ` (2 preceding siblings ...)
  2015-06-25 17:10 ` dominik at greysector dot net
@ 2015-08-23  1:17 ` jsm28 at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2015-08-23  1:17 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=14118

Joseph Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|libc                        |network

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-23  1:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-16 17:10 [Bug libc/14118] New: b64_ntop function not in public API dominik at greysector dot net
2014-06-25 10:58 ` [Bug libc/14118] " fweimer at redhat dot com
2015-06-25 17:02 ` orion at cora dot nwra.com
2015-06-25 17:10 ` dominik at greysector dot net
2015-08-23  1:17 ` [Bug network/14118] " jsm28 at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).