Home
last modified time | relevance | path

Searched refs:decryptedString (Results 1 – 8 of 8) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Extensions/Handlers/
H A DScriptResourceHandler.cs275 string decryptedString = null; in ProcessRequest()
293decryptedString = Page.DecryptString(encryptedData, Purpose.ScriptResourceHandler_ScriptResourceUr… in ProcessRequest()
316 ProcessRequestInternal(response, decryptedString, fileReader); in ProcessRequest()
320 logAction(decryptedString, e); in ProcessRequest()
331 string decryptedString, in ProcessRequestInternal() argument
334 if (String.IsNullOrEmpty(decryptedString)) { in ProcessRequestInternal()
340 switch (decryptedString[0]) { in ProcessRequestInternal()
362 OutputEmptyPage(response, decryptedString.Substring(1)); in ProcessRequestInternal()
369 decryptedString = decryptedString.Substring(1); in ProcessRequestInternal()
370 if (String.IsNullOrEmpty(decryptedString)) { in ProcessRequestInternal()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DNetworkCredential.cs212 … string decryptedString = UnsafeNclNativeMethods.SecureStringHelper.CreateString(m_password); in InternalGetPassword()
215 return decryptedString; in InternalGetPassword()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Security/Test/System.Security.Cryptography/
H A DProtectedDataTest.cs87 string decryptedString = Encoding.UTF8.GetString(decryptedBytes); in ProtectCurrentUserMultiThread()
88 Assert.AreEqual (data, decryptedString, "#2"); in ProtectCurrentUserMultiThread()
/dports/graphics/poppler/poppler-21.12.0/poppler/
H A DParser.cc70 static std::unique_ptr<GooString> decryptedString(const GooString *s, const unsigned char *fileKey,… in decryptedString() function
158 …std::unique_ptr<GooString> s = decryptedString(contentsObj.getString(), fileKey, encAlgorithm, key… in getObj()
198 …std::unique_ptr<GooString> s2 = decryptedString(buf1.getString(), fileKey, encAlgorithm, keyLength… in getObj()
/dports/graphics/poppler-qt5/poppler-21.12.0/poppler/
H A DParser.cc70 static std::unique_ptr<GooString> decryptedString(const GooString *s, const unsigned char *fileKey,… in decryptedString() function
158 …std::unique_ptr<GooString> s = decryptedString(contentsObj.getString(), fileKey, encAlgorithm, key… in getObj()
198 …std::unique_ptr<GooString> s2 = decryptedString(buf1.getString(), fileKey, encAlgorithm, keyLength… in getObj()
/dports/graphics/poppler-glib/poppler-21.12.0/poppler/
H A DParser.cc70 static std::unique_ptr<GooString> decryptedString(const GooString *s, const unsigned char *fileKey,… in decryptedString() function
158 …std::unique_ptr<GooString> s = decryptedString(contentsObj.getString(), fileKey, encAlgorithm, key… in getObj()
198 …std::unique_ptr<GooString> s2 = decryptedString(buf1.getString(), fileKey, encAlgorithm, keyLength… in getObj()
/dports/graphics/poppler-utils/poppler-21.12.0/poppler/
H A DParser.cc70 static std::unique_ptr<GooString> decryptedString(const GooString *s, const unsigned char *fileKey,… in decryptedString() function
158 …std::unique_ptr<GooString> s = decryptedString(contentsObj.getString(), fileKey, encAlgorithm, key… in getObj()
198 …std::unique_ptr<GooString> s2 = decryptedString(buf1.getString(), fileKey, encAlgorithm, keyLength… in getObj()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/src/System/Security/Cryptography/Xml/
H A DEncryptedXml.cs746 string decryptedString = _encoding.GetString(decryptedData); in ReplaceData()
747 using (StringReader sr = new StringReader(decryptedString)) in ReplaceData()