Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
823a328a
Kaydet (Commit)
823a328a
authored
Agu 27, 2018
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix build in the !(USE_TLS_OPENSSL + USE_TLS_NSS > 0) case
Change-Id: I746f0f322082e81cc47322989634322a0659aa73
üst
57ba4567
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
CryptTools.cxx
oox/source/crypto/CryptTools.cxx
+4
-2
No files found.
oox/source/crypto/CryptTools.cxx
Dosyayı görüntüle @
823a328a
...
...
@@ -456,14 +456,16 @@ bool CryptoHash::update(std::vector<sal_uInt8>& rInput, sal_uInt32 nInputLength)
#if USE_TLS_OPENSSL + USE_TLS_NSS > 0
sal_uInt32
nActualInputLength
=
(
nInputLength
==
0
||
nInputLength
>
rInput
.
size
())
?
rInput
.
size
()
:
nInputLength
;
#else
(
void
)
i
nput
;
(
void
)
i
nputLength
;
(
void
)
rI
nput
;
(
void
)
nI
nputLength
;
#endif
#if USE_TLS_OPENSSL
return
HMAC_Update
(
mpImpl
->
mpHmacContext
.
get
(),
rInput
.
data
(),
nActualInputLength
)
!=
0
;
#elif USE_TLS_NSS
return
PK11_DigestOp
(
mpImpl
->
mContext
,
rInput
.
data
(),
nActualInputLength
)
==
SECSuccess
;
#else
return
false
;
// ???
#endif
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment