opencryptoki-tech Mailing List for openCryptoki (Page 39)
Brought to you by:
ebarretto
You can subscribe to this list here.
2005 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
(8) |
Aug
(11) |
Sep
(8) |
Oct
(2) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(2) |
Feb
(7) |
Mar
|
Apr
(11) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
(4) |
Jun
(2) |
Jul
(6) |
Aug
(1) |
Sep
(9) |
Oct
(5) |
Nov
(24) |
Dec
(33) |
2009 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
|
Jul
(11) |
Aug
(3) |
Sep
(42) |
Oct
(6) |
Nov
(1) |
Dec
(1) |
2010 |
Jan
(10) |
Feb
(10) |
Mar
|
Apr
(1) |
May
(19) |
Jun
(60) |
Jul
(43) |
Aug
(103) |
Sep
(28) |
Oct
(5) |
Nov
(25) |
Dec
(36) |
2011 |
Jan
(105) |
Feb
|
Mar
(3) |
Apr
(57) |
May
(31) |
Jun
(9) |
Jul
(5) |
Aug
(3) |
Sep
|
Oct
|
Nov
(3) |
Dec
|
2012 |
Jan
|
Feb
(5) |
Mar
(4) |
Apr
(5) |
May
(2) |
Jun
(3) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(2) |
Mar
(6) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(2) |
Aug
(3) |
Sep
(2) |
Oct
|
Nov
|
Dec
(3) |
2014 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(14) |
Aug
(9) |
Sep
(4) |
Oct
|
Nov
(1) |
Dec
(2) |
2015 |
Jan
|
Feb
(3) |
Mar
(2) |
Apr
(6) |
May
(7) |
Jun
(8) |
Jul
(17) |
Aug
(9) |
Sep
(19) |
Oct
(2) |
Nov
(3) |
Dec
(10) |
2016 |
Jan
(9) |
Feb
(8) |
Mar
(5) |
Apr
(4) |
May
(1) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(1) |
2017 |
Jan
(11) |
Feb
(7) |
Mar
(15) |
Apr
(11) |
May
(4) |
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Kent Y. <shp...@gm...> - 2005-06-22 15:49:51
|
Hi Qiyan, As long as you compile the project with the -DPKCS64 option, both on 32bit and 64bit platforms, the libraries and daemons should remain interoperable. We've tested this on ppc64 and s390x. Both in 64 and 32bit environments, pkcsslotd will run as a 32bit executable.=20 Originally the -DPKCS64 flag was added to allow us to port to s390x, but since then, all the platforms we support have a 64bit version, so we've decided to get rid of the flag. We have this as an open bug at the moment, #1106286. Our x86_64 "support" was thrown in as an afterthought. If you check out CVS and build and install as normal, you should get everything installed as it should be, with the exception of the 64bit libs. Just apply this patch after the install, run sh bootstrap.sh, reconfigure and rebuild and you should get the 64bit libs in the right place. --- configure.in.orig 2005-06-20 13:38:27.000000000 -0500 +++ configure.in 2005-06-22 10:47:57.813068681 -0500 @@ -76,11 +76,11 @@ AC_SUBST(LIB_ROOT_PATH, $prefix/lib) AM_CONDITIONAL(S390, true) ;; *x86_64*) - AM_CONDITIONAL(BUILD_UTILS, true) - AC_SUBST(LIB_PATH, $prefix/lib/opencryptoki) - AC_SUBST(LIB_ROOT_PATH, $prefix/lib) - CFLAGS=3D"$CFLAGS -m32" - AM_CONDITIONAL(S390, false) ;; + AM_CONDITIONAL(BUILD_UTILS, false) + AM_CONDITIONAL(S390, false) + AC_SUBST(LIB_PATH, $prefix/lib64/opencryptoki) + AC_SUBST(LIB_ROOT_PATH, $prefix/lib64) + AC_MSG_RESULT([*** 64bit platform detected. Not building utilities. ***]) ;; *) AM_CONDITIONAL(BUILD_UTILS, true) AC_SUBST(LIB_PATH, $prefix/lib/opencryptoki) Kent On 6/20/05, Qiyan Sun <Qiy...@su...> wrote: > Hi, >=20 > I am trying to make both PKCS11_API.so (-m32) and PKCS11_API.so64 (-m64) > work with pkcsslotd (32 bit) in order to support both 32 bit and 64 bit > apps. There is no problem for PKCS11_API.so to work with the 32 bit > pkcsslotd. However, PKCS11_API.so64 does not work with the 32 bit > pkcsslotd due to alignment problems on AMD opteron system. For example, > the size of CK_INFO_64 is 88 bytes when compiled in 64 bit mode, but 80 > bytes when compiled in 32 bit mode. One way to fix the alignment problem > is to change the following four data types from >=20 > typedef unsigned long long pid_t_64; > typedef unsigned long long time_t_64; > typedef unsigned long long CK_SLOT_ID_64; > typedef unsigned long long CK_FLAGS_64; >=20 > to >=20 > typedef uint32 pid_t_64; > typedef uint32 time_t_64; > typedef uint32 CK_SLOT_ID_64; > typedef uint32 CK_FLAGS_64; >=20 > A 32 bit value should be ok for these types. I wonder if someone can > make a similar fix in openCryptoki. >=20 > Thanks, > Qiyan >=20 >=20 >=20 > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dclic= k > _______________________________________________ > opencryptoki-users mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/opencryptoki-users > |
From: Kent Y. <shp...@gm...> - 2005-02-11 16:31:21
|
A new list, ope...@li... has been added to the opencryptoki project. The list should get all traffic related to the PKCS#11 API and application development. opencryptoki-tech will remain the place for discussion on the internals of the opencryptoki PKCS#11 implementation itself. Thanks, Kent |