'\" t .\" Copyright, the authors of the Linux man-pages project .\" .\" SPDX-License-Identifier: Linux-man-pages-copyleft .\" .TH memfrob 3 (date) "Linux man-pages (unreleased)" .SH NAME memfrob \- frobnicate (obfuscate) a memory area .SH LIBRARY Standard C library .RI ( libc ,\~ \-lc ) .SH SYNOPSIS .nf .BR "#define _GNU_SOURCE" " /* See feature_test_macros(7) */" .B #include .P .BR "void *memfrob(" "size_t n;" .BI " void " s [ n "], size_t " n ); .fi .SH DESCRIPTION The .BR memfrob () function obfuscates the first .I n bytes of the memory area .I s by exclusive-ORing each character with the number 42. The effect can be reversed by using .BR memfrob () on the obfuscated memory area. .P Note that this function is not a proper encryption routine as the XOR constant is fixed, and is suitable only for hiding strings. .SH RETURN VALUE The .BR memfrob () function returns a pointer to the obfuscated memory area. .SH ATTRIBUTES For an explanation of the terms used in this section, see .BR attributes (7). .TS allbox; lbx lb lb l l l. Interface Attribute Value T{ .na .nh .BR memfrob () T} Thread safety MT-Safe .TE .SH STANDARDS GNU. .SH SEE ALSO .BR bstring (3), .BR strfry (3)