1 write to _safeKeyHandle
mscorlib (1)
system\security\cryptography\cryptoapitransform.cs (1)
89
_safeKeyHandle
= safeKeyHandle;
15 references to _safeKeyHandle
mscorlib (15)
system\security\cryptography\cryptoapitransform.cs (15)
96
Utils.SetKeyParamRgb(
_safeKeyHandle
, _rgArgIds[i], rgbValue, rgbValue.Length);
103
Utils.SetKeyParamDw(
_safeKeyHandle
, _rgArgIds[i], dwValue);
147
if (
_safeKeyHandle
!= null && !
_safeKeyHandle
.IsClosed) {
148
_safeKeyHandle
.Dispose();
163
get { return
_safeKeyHandle
.DangerousGetHandle(); }
193
Utils._EncryptData(
_safeKeyHandle
, EmptyArray<Byte>.Value, 0, 0, ref temp, 0, PaddingValue, true);
212
return Utils._EncryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputCount, ref outputBuffer, outputOffset, PaddingValue, false);
218
return Utils._DecryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputCount, ref outputBuffer, outputOffset, PaddingValue, false);
227
return Utils._DecryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputToProcess, ref outputBuffer, outputOffset, PaddingValue, false);
230
int r = Utils._DecryptData(
_safeKeyHandle
, _depadBuffer, 0, _depadBuffer.Length, ref outputBuffer, outputOffset, PaddingValue, false);
234
r = Utils._DecryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputToProcess, ref outputBuffer, outputOffset, PaddingValue, false);
252
Utils._EncryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputCount, ref transformedBytes, 0, PaddingValue, true);
261
Utils._DecryptData(
_safeKeyHandle
, inputBuffer, inputOffset, inputCount, ref transformedBytes, 0, PaddingValue, true);
269
Utils._DecryptData(
_safeKeyHandle
, temp, 0, temp.Length, ref transformedBytes, 0, PaddingValue, true);