Re: Re: SonarLint complaining about "Use a stronger padding scheme"

Manish sharma <[email protected]> Wed, 24 Apr 2024 18:12:01 +0530
Newsgroups gmane.comp.encryption.cryptopp
Message-ID <CABUB1NSTdFJPHBeh9b-fqfjrQBUWVzDzjNdjYUAQpzBb9CQsZw@mail.gmail.com>
--00000000000073144e0616d70191
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

Crypto Betting  <https://www.brsoftech.com/blog/crypto-sports-betting/>

On Wed, Apr 24, 2024 at 6:08=E2=80=AFPM Frank Sapone <franksaponegea@gmail.=
com>
wrote:

> Has anyone figured out how to use PSS and SHA256 *WITH *CryptoPP-PEM?  I
> also tried reporting this to the issuer tracker at
> https://github.com/noloader/cryptopp-pem and nobody has replied.  I can't
> imagine I'm the only person using this library in order to achieve this
> with X509 Certs.
>
> Thanks,
> Frank
>
> On Wednesday, April 17, 2024 at 11:43:54=E2=80=AFAM UTC-4 HELA YAICH wrot=
e:
>
>> Hello,
>> (I'm new user of ns3 and crypto)
>> I have link errors with Crypto++. These errors indicate that the compile=
r
>> cannot find certain functions or classes defined in Crypto++. This can
>> happen if Crypto++ is not correctly linked to my project. However, I tri=
ed
>> to modify my project's CMakeLists.txt file as follows:
>> set(target_prefix scratch_)
>>
>> function(create_scratch source_files)
>>   # Return early if no sources in the subdirectory
>>   list(LENGTH source_files number_sources)
>>   if(number_sources EQUAL 0)
>>     return()
>>   endif()
>>
>>   # If the scratch has more than a source file, we need to find the
>> source with
>>   # the main function
>>   set(scratch_src)
>>   foreach(source_file ${source_files})
>>     file(READ ${source_file} source_file_contents)
>>     string(REGEX MATCHALL "main[(| (]" main_position
>> "${source_file_contents}")
>>     if(CMAKE_MATCH_0)
>>       set(scratch_src ${source_file})
>>     endif()
>>   endforeach()
>>
>>   if(NOT scratch_src)
>>     return()
>>   endif()
>>
>>   # Get parent directory name
>>   get_filename_component(scratch_dirname ${scratch_src} DIRECTORY)
>>   string(REPLACE "${CMAKE_CURRENT_SOURCE_DIR}" "" scratch_dirname
>>                  "${scratch_dirname}"
>>   )
>>   string(REPLACE "/" "_" scratch_dirname "${scratch_dirname}")
>>
>>   # Get source name
>>   get_filename_component(scratch_name ${scratch_src} NAME_WE)
>>
>>   set(target_prefix scratch_)
>>   if(scratch_dirname)
>>     # Join the names together if dirname is not the scratch folder
>>     set(target_prefix scratch${scratch_dirname}_)
>>   endif()
>>
>>   # Get source absolute path and transform into relative path
>>   get_filename_component(scratch_src ${scratch_src} ABSOLUTE)
>>   get_filename_component(scratch_absolute_directory ${scratch_src}
>> DIRECTORY)
>>   string(REPLACE "${PROJECT_SOURCE_DIR}" "${CMAKE_OUTPUT_DIRECTORY}"
>>                  scratch_directory ${scratch_absolute_directory}
>>   )
>>   add_executable(${target_prefix}${scratch_name} "${source_files}")
>>   if(${NS3_STATIC})
>>     target_link_libraries(
>>       ${target_prefix}${scratch_name} ${LIB_AS_NEEDED_PRE_STATIC}
>>       ${lib-ns3-static}
>>     )
>>   else()
>>     target_link_libraries(
>>       ${target_prefix}${scratch_name} "${ns3-libs}" "${ns3-contrib-libs}=
"
>>       "${ns3-external-libs}"
>>     )
>>   endif()
>>   set_runtime_outputdirectory(
>>     ${scratch_name} ${scratch_directory}/ ${target_prefix}
>>   )
>> endfunction()
>>
>> # Scan *.cc files in ns-3-dev/scratch and build a target for each
>> file(GLOB single_source_file_scratches CONFIGURE_DEPENDS
>> ${CMAKE_CURRENT_SOURCE_DIR}/*.cc)
>> foreach(scratch_src ${single_source_file_scratches})
>>   create_scratch(${scratch_src})
>> endforeach()
>>
>> # Scan *.cc files in ns-3-dev/scratch subdirectories and build a target
>> for each
>> # subdirectory
>> file(
>>   GLOB_RECURSE scratch_subdirectories
>>   CONFIGURE_DEPENDS
>>   LIST_DIRECTORIES true
>>   ${CMAKE_CURRENT_SOURCE_DIR}/**
>> )
>> # Filter out files
>> foreach(entry ${scratch_subdirectories})
>>   if(NOT (IS_DIRECTORY ${entry}))
>>     list(REMOVE_ITEM scratch_subdirectories ${entry})
>>   endif()
>> endforeach()
>>
>> foreach(subdir ${scratch_subdirectories})
>>   if(EXISTS ${subdir}/CMakeLists.txt)
>>     # If the subdirectory contains a CMakeLists.txt file
>>     # we let the CMake file manage the source files
>>     #
>>     # Use this if you want to link to external libraries
>>     # without creating a module
>>     add_subdirectory(${subdir})
>>   else()
>>     # Otherwise we pick all the files in the subdirectory
>>     # and create a scratch for them automatically
>>     file(GLOB scratch_sources CONFIGURE_DEPENDS ${subdir}/*.cc)
>>     create_scratch("${scratch_sources}")
>>   endif()
>> endforeach()
>> find_external_library(DEPENDENCY_NAME cryptopp
>>                       HEADER_NAME aes.h
>>                       LIBRARY_NAME cryptopp
>>                       SEARCH_PATHS /usr/include/cryptopp)
>>
>>
>> if(${CRYPTOPP_FOUND}) # Notice that the contents of DEPENDENCY_NAME
>> became a prefix for the _FOUND variable
>>     find_package(cryptopp REQUIRED)
>>     include_directories(${CRYPTOPP_INCLUDE_DIRS})
>>     link_libraries(${CRYPTOPP_LIBRARIES})
>> endif()
>> add_executable(${target_prefix}${scratch_name} "fanetex.cc")
>> target_link_libraries(${target_prefix}${scratch_name} PRIVATE cryptopp)
>>
>> can you help me to solve this problem ? Thank you [image: Capture
>> d=E2=80=99=C3=A9cran 2024-04-17 114345.png]
>>
>> Le mardi 16 avril 2024 =C3=A0 21:53:22 UTC-5, Frank Sapone a =C3=A9crit =
:
>>
>>> I grabbed it but it's not relevant.  I need to have a certificate with
>>> RSA PSS that can be read by CryptoPP with the X509Cert lib.  Is it poss=
ible
>>> to do this?
>>>
>>> On Tuesday, April 16, 2024 at 3:19:47=E2=80=AFPM UTC-4 Jeffrey Walton w=
rote:
>>>
>>>> On Tue, Apr 16, 2024 at 1:44=E2=80=AFPM One Sini <[email protected]> wr=
ote:
>>>>
>>>>> I wasn't entirely satisfied with the security, so I've adjusted the
>>>>> code. I'm not sure if that helps you, depending on what you're doing =
with
>>>>> it.
>>>>>
>>>>> This code uses RSA with OAEP (Optimal Asymmetric Encryption Padding)
>>>>> to avoid security issues like padding oracle attacks. It generates RS=
A keys
>>>>> with a length of 2048 bits, encrypts the message with OAEP padding, a=
nd
>>>>> then decrypts it.
>>>>>
>>>>> Best Regards Satoshi
>>>>>
>>>>
>>>> I deleted the message from the group. The *.pdf and *.pages smells of
>>>> malware.
>>>>
>>>> If you want to provide code, please inline it or provide it as a text
>>>> attachment.
>>>>
>>>> Jeff
>>>>
>>>>> --
> You received this message because you are subscribed to the Google Groups
> "Crypto++ Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/cryptopp-users/db9bad9f-be9e-4a25-a09f-=
d52ce28adec0n%40googlegroups.com
> <https://groups.google.com/d/msgid/cryptopp-users/db9bad9f-be9e-4a25-a09f=
-d52ce28adec0n%40googlegroups.com?utm_medium=3Demail&utm_source=3Dfooter>
> .
>


--=20
Kind Regards,
Manish Kr. Sharma
Digital Marketing Manager

Website: www.brsoftech.com
E-mail: [email protected]

--=20
You received this message because you are subscribed to the Google Groups "=
Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to [email protected].
To view this discussion on the web visit https://groups.google.com/d/msgid/=
cryptopp-users/CABUB1NSTdFJPHBeh9b-fqfjrQBUWVzDzjNdjYUAQpzBb9CQsZw%40mail.g=
mail.com.

--00000000000073144e0616d70191
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><a href=3D"https://www.brsoftech.com/blog/crypto-sports-be=
tting/">Crypto Betting=C2=A0</a></div><br><div class=3D"gmail_quote"><div d=
ir=3D"ltr" class=3D"gmail_attr">On Wed, Apr 24, 2024 at 6:08=E2=80=AFPM Fra=
nk Sapone &lt;<a href=3D"mailto:[email protected]">franksaponegea@gm=
ail.com</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"=
margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-lef=
t:1ex">Has anyone figured out how to use PSS and SHA256 <b><i>WITH</i>=C2=
=A0</b>CryptoPP-PEM?=C2=A0 I also tried reporting this to the issuer tracke=
r at=C2=A0<a href=3D"https://github.com/noloader/cryptopp-pem" target=3D"_b=
lank">https://github.com/noloader/cryptopp-pem</a> and nobody has replied.=
=C2=A0 I can&#39;t imagine I&#39;m the only person using this library in or=
der to achieve this with X509 Certs.<div><br></div><div>Thanks,<br>Frank<br=
><div><br></div></div><div class=3D"gmail_quote"><div dir=3D"auto" class=3D=
"gmail_attr">On Wednesday, April 17, 2024 at 11:43:54=E2=80=AFAM UTC-4 HELA=
 YAICH wrote:<br></div><blockquote class=3D"gmail_quote" style=3D"margin:0p=
x 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">He=
llo,=C2=A0<br>(I&#39;m new user of ns3 and crypto)=C2=A0<br>I have link err=
ors with Crypto++. These errors indicate that the compiler cannot find cert=
ain functions or classes defined in Crypto++. This can happen if Crypto++ i=
s not correctly linked to my project. However, I tried to modify my project=
&#39;s CMakeLists.txt file as follows: <br>set(target_prefix scratch_)<br><=
br>function(create_scratch source_files)<br>=C2=A0 # Return early if no sou=
rces in the subdirectory<br>=C2=A0 list(LENGTH source_files number_sources)=
<br>=C2=A0 if(number_sources EQUAL 0)<br>=C2=A0 =C2=A0 return()<br>=C2=A0 e=
ndif()<br><br>=C2=A0 # If the scratch has more than a source file, we need =
to find the source with<br>=C2=A0 # the main function<br>=C2=A0 set(scratch=
_src)<br>=C2=A0 foreach(source_file ${source_files})<br>=C2=A0 =C2=A0 file(=
READ ${source_file} source_file_contents)<br>=C2=A0 =C2=A0 string(REGEX MAT=
CHALL &quot;main[(| (]&quot; main_position &quot;${source_file_contents}&qu=
ot;)<br>=C2=A0 =C2=A0 if(CMAKE_MATCH_0)<br>=C2=A0 =C2=A0 =C2=A0 set(scratch=
_src ${source_file})<br>=C2=A0 =C2=A0 endif()<br>=C2=A0 endforeach()<br><br=
>=C2=A0 if(NOT scratch_src)<br>=C2=A0 =C2=A0 return()<br>=C2=A0 endif()<br>=
<br>=C2=A0 # Get parent directory name<br>=C2=A0 get_filename_component(scr=
atch_dirname ${scratch_src} DIRECTORY)<br>=C2=A0 string(REPLACE &quot;${CMA=
KE_CURRENT_SOURCE_DIR}&quot; &quot;&quot; scratch_dirname<br>=C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&quot;${scratch_dirname}&qu=
ot;<br>=C2=A0 )<br>=C2=A0 string(REPLACE &quot;/&quot; &quot;_&quot; scratc=
h_dirname &quot;${scratch_dirname}&quot;)<br><br>=C2=A0 # Get source name<b=
r>=C2=A0 get_filename_component(scratch_name ${scratch_src} NAME_WE)<br><br=
>=C2=A0 set(target_prefix scratch_)<br>=C2=A0 if(scratch_dirname)<br>=C2=A0=
 =C2=A0 # Join the names together if dirname is not the scratch folder<br>=
=C2=A0 =C2=A0 set(target_prefix scratch${scratch_dirname}_)<br>=C2=A0 endif=
()<br><br>=C2=A0 # Get source absolute path and transform into relative pat=
h<br>=C2=A0 get_filename_component(scratch_src ${scratch_src} ABSOLUTE)<br>=
=C2=A0 get_filename_component(scratch_absolute_directory ${scratch_src} DIR=
ECTORY)<br>=C2=A0 string(REPLACE &quot;${PROJECT_SOURCE_DIR}&quot; &quot;${=
CMAKE_OUTPUT_DIRECTORY}&quot;<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0scratch_directory ${scratch_absolute_directory}<br>=C2=
=A0 )<br>=C2=A0 add_executable(${target_prefix}${scratch_name} &quot;${sour=
ce_files}&quot;)<br>=C2=A0 if(${NS3_STATIC})<br>=C2=A0 =C2=A0 target_link_l=
ibraries(<br>=C2=A0 =C2=A0 =C2=A0 ${target_prefix}${scratch_name} ${LIB_AS_=
NEEDED_PRE_STATIC}<br>=C2=A0 =C2=A0 =C2=A0 ${lib-ns3-static}<br>=C2=A0 =C2=
=A0 )<br>=C2=A0 else()<br>=C2=A0 =C2=A0 target_link_libraries(<br>=C2=A0 =
=C2=A0 =C2=A0 ${target_prefix}${scratch_name} &quot;${ns3-libs}&quot; &quot=
;${ns3-contrib-libs}&quot;<br>=C2=A0 =C2=A0 =C2=A0 &quot;${ns3-external-lib=
s}&quot;<br>=C2=A0 =C2=A0 )<br>=C2=A0 endif()<br>=C2=A0 set_runtime_outputd=
irectory(<br>=C2=A0 =C2=A0 ${scratch_name} ${scratch_directory}/ ${target_p=
refix}<br>=C2=A0 )<br>endfunction()<br><br># Scan *.cc files in ns-3-dev/sc=
ratch and build a target for each<br>file(GLOB single_source_file_scratches=
 CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/*.cc)<br>foreach(scratch_src=
 ${single_source_file_scratches})<br>=C2=A0 create_scratch(${scratch_src})<=
br>endforeach()<br><br># Scan *.cc files in ns-3-dev/scratch subdirectories=
 and build a target for each<br># subdirectory<br>file(<br>=C2=A0 GLOB_RECU=
RSE scratch_subdirectories<br>=C2=A0 CONFIGURE_DEPENDS<br>=C2=A0 LIST_DIREC=
TORIES true<br>=C2=A0 ${CMAKE_CURRENT_SOURCE_DIR}/**<br>)<br># Filter out f=
iles<br>foreach(entry ${scratch_subdirectories})<br>=C2=A0 if(NOT (IS_DIREC=
TORY ${entry}))<br>=C2=A0 =C2=A0 list(REMOVE_ITEM scratch_subdirectories ${=
entry})<br>=C2=A0 endif()<br>endforeach()<br><br>foreach(subdir ${scratch_s=
ubdirectories})<br>=C2=A0 if(EXISTS ${subdir}/CMakeLists.txt)<br>=C2=A0 =C2=
=A0 # If the subdirectory contains a CMakeLists.txt file<br>=C2=A0 =C2=A0 #=
 we let the CMake file manage the source files<br>=C2=A0 =C2=A0 #<br>=C2=A0=
 =C2=A0 # Use this if you want to link to external libraries<br>=C2=A0 =C2=
=A0 # without creating a module<br>=C2=A0 =C2=A0 add_subdirectory(${subdir}=
)<br>=C2=A0 else()<br>=C2=A0 =C2=A0 # Otherwise we pick all the files in th=
e subdirectory<br>=C2=A0 =C2=A0 # and create a scratch for them automatical=
ly<br>=C2=A0 =C2=A0 file(GLOB scratch_sources CONFIGURE_DEPENDS ${subdir}/*=
.cc)<br>=C2=A0 =C2=A0 create_scratch(&quot;${scratch_sources}&quot;)<br>=C2=
=A0 endif()<br>endforeach()<br>find_external_library(DEPENDENCY_NAME crypto=
pp<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 HEADER_NAME aes.h<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 LIBRARY_NAME cryptopp<br>=C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 SEARCH_PATHS /u=
sr/include/cryptopp)<br><br><br>if(${CRYPTOPP_FOUND}) # Notice that the con=
tents of DEPENDENCY_NAME became a prefix for the _FOUND variable<br>=C2=A0 =
=C2=A0 find_package(cryptopp REQUIRED)<br>=C2=A0 =C2=A0 include_directories=
(${CRYPTOPP_INCLUDE_DIRS})<br>=C2=A0 =C2=A0 link_libraries(${CRYPTOPP_LIBRA=
RIES})<br>endif()<br>add_executable(${target_prefix}${scratch_name} &quot;f=
anetex.cc&quot;)<br>target_link_libraries(${target_prefix}${scratch_name} P=
RIVATE cryptopp)<br><br>can you help me to solve this problem ? Thank you=
=C2=A0<img alt=3D"Capture d=E2=80=99=C3=A9cran 2024-04-17 114345.png" width=
=3D"631px" height=3D"398px" src=3D"https://groups.google.com/group/cryptopp=
-users/attach/1f8b7a2cdb789/Capture%20d%E2%80%99%C3%A9cran%202024-04-17%201=
14345.png?part=3D0.1&amp;view=3D1"><br><br><div class=3D"gmail_quote"><div =
dir=3D"auto" class=3D"gmail_attr">Le mardi 16 avril 2024 =C3=A0 21:53:22 UT=
C-5, Frank Sapone a =C3=A9crit=C2=A0:<br></div><blockquote class=3D"gmail_q=
uote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,2=
04);padding-left:1ex">I grabbed it but it&#39;s not relevant.=C2=A0 I need =
to have a certificate with RSA PSS that can be read by CryptoPP with the X5=
09Cert lib.=C2=A0 Is it possible to do this?<br><br><div class=3D"gmail_quo=
te"><div dir=3D"auto" class=3D"gmail_attr">On Tuesday, April 16, 2024 at 3:=
19:47=E2=80=AFPM UTC-4 Jeffrey Walton wrote:<br></div><blockquote class=3D"=
gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(20=
4,204,204);padding-left:1ex"><div dir=3D"ltr"><div class=3D"gmail_quote"><d=
iv dir=3D"ltr" class=3D"gmail_attr">On Tue, Apr 16, 2024 at 1:44=E2=80=AFPM=
 One Sini &lt;<a rel=3D"nofollow">[email protected]</a>&gt; wrote:<br></div>=
</div></div><div dir=3D"ltr"><div class=3D"gmail_quote"><blockquote class=
=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rg=
b(204,204,204);padding-left:1ex"><div dir=3D"auto"><div><span style=3D"font=
-family:s=C3=B6hne,ui-sans-serif,system-ui,-apple-system,&quot;segoe ui&quo=
t;,roboto,ubuntu,cantarell,&quot;noto sans&quot;,sans-serif,&quot;helvetica=
 neue&quot;,arial,&quot;apple color emoji&quot;,&quot;segoe ui emoji&quot;,=
&quot;segoe ui symbol&quot;,&quot;noto color emoji&quot;;font-size:16px;fon=
t-style:normal;font-weight:400;letter-spacing:normal;text-indent:0px;text-t=
ransform:none;white-space:pre-wrap;word-spacing:0px;text-decoration:none;fl=
oat:none;display:inline;color:rgb(13,13,13)">I wasn&#39;t entirely satisfie=
d with the security, so I&#39;ve adjusted the code. I&#39;m not sure if tha=
t helps you, depending on what you&#39;re doing with it.</span></div><br></=
div></blockquote></div></div><div dir=3D"ltr"><div class=3D"gmail_quote"><b=
lockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-le=
ft:1px solid rgb(204,204,204);padding-left:1ex"><div dir=3D"auto"><div><spa=
n style=3D"font-family:s=C3=B6hne,ui-sans-serif,system-ui,-apple-system,&qu=
ot;segoe ui&quot;,roboto,ubuntu,cantarell,&quot;noto sans&quot;,sans-serif,=
&quot;helvetica neue&quot;,arial,&quot;apple color emoji&quot;,&quot;segoe =
ui emoji&quot;,&quot;segoe ui symbol&quot;,&quot;noto color emoji&quot;;fon=
t-size:16px;font-style:normal;font-weight:400;letter-spacing:normal;text-in=
dent:0px;text-transform:none;white-space:pre-wrap;word-spacing:0px;text-dec=
oration:none;float:none;display:inline;color:rgb(13,13,13)">This code uses =
RSA with OAEP (Optimal Asymmetric Encryption Padding) to avoid security iss=
ues like padding oracle attacks. It generates RSA keys with a length of 204=
8 bits, encrypts the message with OAEP padding, and then decrypts it.</span=
></div><div dir=3D"auto"><span style=3D"font-family:s=C3=B6hne,ui-sans-seri=
f,system-ui,-apple-system,&quot;segoe ui&quot;,roboto,ubuntu,cantarell,&quo=
t;noto sans&quot;,sans-serif,&quot;helvetica neue&quot;,arial,&quot;apple c=
olor emoji&quot;,&quot;segoe ui emoji&quot;,&quot;segoe ui symbol&quot;,&qu=
ot;noto color emoji&quot;;font-size:16px;font-style:normal;font-weight:400;=
letter-spacing:normal;text-indent:0px;text-transform:none;white-space:pre-w=
rap;word-spacing:0px;text-decoration:none;float:none;display:inline;color:r=
gb(13,13,13)"><br></span></div></div></blockquote></div></div><div dir=3D"l=
tr"><div class=3D"gmail_quote"><blockquote class=3D"gmail_quote" style=3D"m=
argin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left=
:1ex"><div dir=3D"auto"><div dir=3D"auto"><span style=3D"font-family:s=C3=
=B6hne,ui-sans-serif,system-ui,-apple-system,&quot;segoe ui&quot;,roboto,ub=
untu,cantarell,&quot;noto sans&quot;,sans-serif,&quot;helvetica neue&quot;,=
arial,&quot;apple color emoji&quot;,&quot;segoe ui emoji&quot;,&quot;segoe =
ui symbol&quot;,&quot;noto color emoji&quot;;font-size:16px;font-style:norm=
al;font-weight:400;letter-spacing:normal;text-indent:0px;text-transform:non=
e;white-space:pre-wrap;word-spacing:0px;text-decoration:none;float:none;dis=
play:inline;color:rgb(13,13,13)">Best Regards Satoshi </span></div></div></=
blockquote><div><br></div><div>I deleted the message from the group. The *.=
pdf and *.pages smells of malware.</div><div><br></div><div>If you want to =
provide code, please inline it or provide it as a text attachment.<br></div=
><div><br></div><div>Jeff</div><blockquote class=3D"gmail_quote" style=3D"m=
argin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left=
:1ex"><div><div class=3D"gmail_quote"><blockquote class=3D"gmail_quote" sty=
le=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);paddi=
ng-left:1ex">
</blockquote></div></div></blockquote></div></div>
</blockquote></div></blockquote></div></blockquote></div>

<p></p>

-- <br>
You received this message because you are subscribed to the Google Groups &=
quot;Crypto++ Users&quot; group.<br>
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:[email protected]" targ=
et=3D"_blank">[email protected]</a>.<br>
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/d/msgid/cryptopp-users/db9bad9f-be9e-4a25-a09f-d52ce28adec0n%40googlegro=
ups.com?utm_medium=3Demail&amp;utm_source=3Dfooter" target=3D"_blank">https=
://groups.google.com/d/msgid/cryptopp-users/db9bad9f-be9e-4a25-a09f-d52ce28=
adec0n%40googlegroups.com</a>.<br>
</blockquote></div><br clear=3D"all"><div><br></div><span class=3D"gmail_si=
gnature_prefix">-- </span><br><div dir=3D"ltr" class=3D"gmail_signature"><d=
iv dir=3D"ltr"><div style=3D"text-align:left"><span style=3D"font-family:ar=
ial,sans-serif"><font color=3D"#9900ff">Kind Regards,=C2=A0</font></span></=
div><div style=3D"text-align:left"><font color=3D"#9900ff">Manish Kr. Sharm=
a=C2=A0</font></div><div style=3D"text-align:left"><font color=3D"#9900ff">=
Digital Marketing Manager<br></font></div><div style=3D"text-align:left"><f=
ont color=3D"#9900ff"><br></font></div><div style=3D"text-align:left"><span=
 style=3D"color:rgb(153,0,255)">Website:=C2=A0</span><a href=3D"http://www.=
brsoftech.com" target=3D"_blank">www.brsoftech.com</a><br></div><div style=
=3D"text-align:left"><font color=3D"#9900ff">E-mail: <a href=3D"mailto:mani=
[email protected]" target=3D"_blank">[email protected]</a><=
/font></div><div style=3D"text-align:left"><img src=3D"https://i.imgur.com/=
ilarMcr.png" width=3D"96" height=3D"96"><br></div><div><br></div><div><br><=
/div></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;Crypto++ Users&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:[email protected]">cryp=
[email protected]</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/d/msgid/cryptopp-users/CABUB1NSTdFJPHBeh9b-fqfjrQBUWVzDzjNdjYUAQpzBb9CQs=
Zw%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">https://groups.=
google.com/d/msgid/cryptopp-users/CABUB1NSTdFJPHBeh9b-fqfjrQBUWVzDzjNdjYUAQ=
pzBb9CQsZw%40mail.gmail.com</a>.<br />

--00000000000073144e0616d70191--