logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

audit_encode_value - encode input string to ASCII code string

Author

Steve Grubb Red Hat May 2021 AUDIT_ENCODE_VALUE(3)

Description

audit_encode_value() encodes a string given by buf to a ASCII code string. final is the hexadecimal string encoded to ASCII code. size is the length of the string given by buf. e.g.: "foo bar" is encoded as "666F6F20626172". "\1\2\3\4" is encoded as "01020304".

Name

audit_encode_value - encode input string to ASCII code string

Return Value

Returns a encoded string same as final or, NULL on error.

See Also

audit_encode_nv_string(3), audit_value_needs_encoding(3).

Synopsis

#include<libaudit.h>char*audit_encode_value(char*final,constchar*buf,unsignedintsize);

See Also