memfrob(3) Library Functions Manual memfrob(3) NOMBRE memfrob - frobnicate (obfuscate) a memory area BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #define _GNU_SOURCE /* Vea feature_test_macros(7) */ #include void *memfrob(void s[.n], size_t n); DESCRIPCION 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 funcion no es una rutina correcta de cifrado puesto que la constante para el XOR esta fijada de antemano, y por tanto esta funcion solo es valida para ocultar cadenas de caracteres temporalmente. VALOR DEVUELTO The memfrob() function returns a pointer to the obfuscated memory area. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +-----------------------------+--------------------+-------------------+ |Interfaz | Atributo | Valor | +-----------------------------+--------------------+-------------------+ |memfrob() | Seguridad del hilo | Multi-hilo seguro | +-----------------------------+--------------------+-------------------+ ESTANDARES GNU. VEASE TAMBIEN bstring(3), strfry(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Gerardo Aburruzaga Garcia Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 memfrob(3)