upipe-modules/uref_aes_flow.h header reference

Header inclusion  

Members  

Functions  

Members detail  

#define _UPIPE_MODULES_UREF_AES_FLOW_H_  

This macro is declared in upipe-modules/uref_aes_flow.h source file, line 24.

int uref_aes_cmp_method(struct uref *uref1, struct uref *uref2)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function compares the aes method attribute in two urefs.

Parameter list:

  • uref1: pointer to the first uref
  • uref2: pointer to the second uref

The return value is 0 if both attributes are absent or identical

int uref_aes_copy(struct uref *uref, struct uref *uref_src)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 48.

int uref_aes_copy_iv(struct uref *uref, struct uref *uref_src)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 64 in upipe-modules/uref_aes_flow.h source file, line 34.

This function copies the aes initialization vector attribute from an uref to another.

Parameter list:

  • uref: pointer to the uref
  • uref_src: pointer to the source uref

The return value is an error code

int uref_aes_copy_key(struct uref *uref, struct uref *uref_src)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 64 in upipe-modules/uref_aes_flow.h source file, line 33.

This function copies the aes key attribute from an uref to another.

Parameter list:

  • uref: pointer to the uref
  • uref_src: pointer to the source uref

The return value is an error code

int uref_aes_copy_method(struct uref *uref, struct uref *uref_src)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function copies the aes method attribute from an uref to another.

Parameter list:

  • uref: pointer to the uref
  • uref_src: pointer to the source uref

The return value is an error code

int uref_aes_delete(struct uref *uref)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 37.

int uref_aes_delete_iv(struct uref *uref)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 53 in upipe-modules/uref_aes_flow.h source file, line 34.

This function deletes the aes initialization vector attribute of a uref.

Parameter list:

  • uref: pointer to the uref

The return value is an error code

int uref_aes_delete_key(struct uref *uref)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 53 in upipe-modules/uref_aes_flow.h source file, line 33.

This function deletes the aes key attribute of a uref.

Parameter list:

  • uref: pointer to the uref

The return value is an error code

int uref_aes_delete_method(struct uref *uref)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function deletes the aes method attribute of a uref.

Parameter list:

  • uref: pointer to the uref

The return value is an error code

int uref_aes_get_iv(struct uref *uref, const uint8_t **p, size_t *size_p)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 12 in upipe-modules/uref_aes_flow.h source file, line 34.

This function returns the aes initialization vector attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • p: pointer to the retrieved value (modified during execution)
  • size_p: filled in with the size of the value

The return value is an error code

int uref_aes_get_key(struct uref *uref, const uint8_t **p, size_t *size_p)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 12 in upipe-modules/uref_aes_flow.h source file, line 33.

This function returns the aes key attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • p: pointer to the retrieved value (modified during execution)
  • size_p: filled in with the size of the value

The return value is an error code

int uref_aes_get_method(struct uref *uref, const char **p)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function returns the aes method attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • p: pointer to the retrieved value (modified during execution)

The return value is an error code

int uref_aes_match_method(struct uref *uref, const char *prefix)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function compares the aes method attribute to a given prefix.

Parameter list:

  • uref: pointer to the uref
  • prefix: prefix to match

The return value is an error code

int uref_aes_set_iv(struct uref *uref, const uint8_t *v, size_t size)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 30 in upipe-modules/uref_aes_flow.h source file, line 34.

This function sets the aes initialization vector attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • v: value to set
  • size: size of the value

The return value is an error code

int uref_aes_set_iv_from_hex(struct uref *uref, const char *v)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 44 in upipe-modules/uref_aes_flow.h source file, line 34.

This function sets the aes initialization vector attribute of a uref, from an hexadecimal string.

Parameter list:

  • uref: pointer to the uref
  • v: value to set

The return value is an error code

int uref_aes_set_key(struct uref *uref, const uint8_t *v, size_t size)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 30 in upipe-modules/uref_aes_flow.h source file, line 33.

This function sets the aes key attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • v: value to set
  • size: size of the value

The return value is an error code

int uref_aes_set_key_from_hex(struct uref *uref, const char *v)  

This function is declared in UREF_ATTR_OPAQUE function like macro expansion, line 44 in upipe-modules/uref_aes_flow.h source file, line 33.

This function sets the aes key attribute of a uref, from an hexadecimal string.

Parameter list:

  • uref: pointer to the uref
  • v: value to set

The return value is an error code

int uref_aes_set_method(struct uref *uref, const char *v)  

This function is declared in upipe-modules/uref_aes_flow.h source file, line 32.

This function sets the aes method attribute of a uref.

Parameter list:

  • uref: pointer to the uref
  • v: value to set

The return value is an error code

Valid XHTML 1.0 StrictGenerated by cmassiot on Fri Feb 2 23:57:18 2018 using MkDoc