cipher.getAuthTag()
When using an authenticated encryption mode (only GCM
is currently supported), the cipher.getAuthTag()
method returns a Buffer
containing the authentication tag that has been computed from the given data.
The cipher.getAuthTag()
method should only be called after encryption has been completed using the cipher.final()
method.
Please login to continue.