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
d0264b07
Kaydet (Commit)
d0264b07
authored
Tem 17, 2017
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svl: fixup Android build fix
Change-Id: I9f4b09ba48cd14e3cdd9cbd126d81f4b40bdb04b
üst
db386006
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
cryptosign.cxx
svl/source/crypto/cryptosign.cxx
+3
-2
No files found.
svl/source/crypto/cryptosign.cxx
Dosyayı görüntüle @
d0264b07
...
@@ -72,6 +72,7 @@ using namespace com::sun::star;
...
@@ -72,6 +72,7 @@ using namespace com::sun::star;
namespace
{
namespace
{
#if HAVE_FEATURE_NSS
void
appendHex
(
sal_Int8
nInt
,
OStringBuffer
&
rBuffer
)
void
appendHex
(
sal_Int8
nInt
,
OStringBuffer
&
rBuffer
)
{
{
static
const
sal_Char
pHexDigits
[]
=
{
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
static
const
sal_Char
pHexDigits
[]
=
{
'0'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
...
@@ -79,6 +80,7 @@ void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer )
...
@@ -79,6 +80,7 @@ void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer )
rBuffer
.
append
(
pHexDigits
[
(
nInt
>>
4
)
&
15
]
);
rBuffer
.
append
(
pHexDigits
[
(
nInt
>>
4
)
&
15
]
);
rBuffer
.
append
(
pHexDigits
[
nInt
&
15
]
);
rBuffer
.
append
(
pHexDigits
[
nInt
&
15
]
);
}
}
#endif // HAVE_FEATURE_NSS
#if HAVE_FEATURE_NSS && !defined(_WIN32)
#if HAVE_FEATURE_NSS && !defined(_WIN32)
...
@@ -2282,10 +2284,9 @@ bool Signing::Verify(SvStream& rStream,
...
@@ -2282,10 +2284,9 @@ bool Signing::Verify(SvStream& rStream,
// Not implemented.
// Not implemented.
(
void
)
rStream
;
(
void
)
rStream
;
(
void
)
aByteRanges
;
(
void
)
aByteRanges
;
(
void
)
bNonDet
ect
ed
;
(
void
)
bNonDet
ach
ed
;
(
void
)
aSignature
;
(
void
)
aSignature
;
(
void
)
rInformation
;
(
void
)
rInformation
;
static_assert
(
false
,
"WHAT!!!"
);
return
false
;
return
false
;
#endif
#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