Codereview 6696012 CKM_AES_CCM missing from default kcf.conf
Vladimir Kotal
Vladimir.Kotal at Sun.COM
Wed Apr 30 05:27:57 PDT 2008
Darren J Moffat wrote:
> I'd like to get this into snv_90
>
> http://cr.opensolaris.org/~darrenm/6696012/webrev/
>
Could you use only CKM_AES_CCM addition ? (to avoid using the
{old,new}_aesmechs lists)
Something like this:
# Fix missing CKM_AES_CCM
egrep "^aes.*CKM_AES_CCM" $dest > /dev/null 2>&1
if [ $? != 0 ]; then
echo "Upgrading software aes provider list"
sed '/^aes/s/$/,CKM_AES_CCM/' $dest > $dest.$$
mv -f $dest.$$ $dest
fi
v.
More information about the crypto-discuss
mailing list