Provided by: manpages-es-dev_4.21.0-2_all bug

NOMBRE

       memfrob - frobnicate (obfuscate) a memory area

BIBLIOTECA

       Biblioteca Estándar C (libc, -lc)

SINOPSIS

       #define _GNU_SOURCE             /* Vea feature_test_macros(7) */
       #include <string.h>

       void *memfrob(void s[.n], size_t n);

DESCRIPCIÓN

       The  memfrob()   function  obfuscates  the  first  n  bytes  of the memory area s by exclusive-ORing each
       character with the number 42.  The effect can be reversed by using memfrob()  on  the  obfuscated  memory
       area.

       Observe  que  esta  función no es una rutina correcta de cifrado puesto que la constante para el XOR está
       fijada de antemano, y por  tanto  esta  función  sólo  es  válida  para  ocultar  cadenas  de  caracteres
       temporalmente.

VALOR DEVUELTO

       The memfrob()  function returns a pointer to the obfuscated memory area.

ATRIBUTOS

       Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
       ┌──────────────────────────────────────────────────────────────┬────────────────────┬───────────────────┐
       │ InterfazAtributoValor             │
       ├──────────────────────────────────────────────────────────────┼────────────────────┼───────────────────┤
       │ memfrob()                                                    │ Seguridad del hilo │ Multi-hilo seguro │
       └──────────────────────────────────────────────────────────────┴────────────────────┴───────────────────┘

ESTÁNDARES

       The memfrob()  function is unique to the GNU C Library.

VÉASE TAMBIÉN

       bstring(3), strfry(3)

TRADUCCIÓN

       La  traducción  al  español  de  esta  página  del  manual  fue  creada  por  Gerardo  Aburruzaga  García
       <gerardo.aburruzaga@uca.es>

       Esta traducción es documentación libre;  lea  la  GNU General Public License Version 3  o  posterior  con
       respecto a las condiciones de copyright.  No existe NINGUNA RESPONSABILIDAD.

       Si  encuentra  algún  error  en  la  traducción  de esta página del manual, envíe un correo electrónico a
       debian-l10n-spanish@lists.debian.org.

Páginas de manual de Linux 6.03                 15 Diciembre 2022                                     memfrob(3)