SB Context (sb_Context)

An SB context instance maintains state information for the duration of a single cryptographic operation.

For example, in a message digest operation, a large amount of data may be hashed in multiple function calls. A Begin() function is called to create the context. Then, the processing function is called (possibly multiple times), to update the context. When the cryptographic operation is complete, the context should be destroyed by calling the corresponding End() function.

Note: An SB context instance is different from a global context.