android.mk apk版本号,Android 5.x OTA Update官方文档(十、版本签名)

在Android中,一般来说有两个地方使用加密签名。

1.每个.apk文件必须进行签名。Android的程序包管理器通过两种方式使用签名:

当一个应用程序被替换时,只有相同签名的应用才能操作旧版本的数据。

两个应用如果签名一致,那么这两个应用可以共享User ID和用户数据。

2.OTA更新包必须进行签名否则更新程序无法进行安装。(注!我们制作更新包的时候如果不指定key,系统会指定默认的key进行签名,如testkey。)

证书和秘钥

每个秘钥需要两个文件:扩展名为.x509.pem的证书(公钥)和扩展名为.pk8私钥。私钥是用来对包进行签名的,不可公开,而且有必要使用一定策略的密码进行保护,仅仅是让最终发布版本的人知道密码即可。而证书(公钥)相对来说要求并没有那么严格,它通常被用来验证一个包是否进行过密钥签名。

标准的Android通常使用下面4个秘钥,它们位于build/target/product/security目录下:

testkey

默认生成的更新包秘钥,如果我们在制作更新包时没有指定响应的秘钥,系统会默认使用testkey进行签名。

platform

平台使用的测试秘钥

shared

联系人等共享测试秘钥

media

部分多媒体、下载系统等程序包所使用的测试秘钥

我们可以在我们的.mk文件中通过设置LOCAL_CERTIFICATE来为我们的安装包指定秘钥(如果没有指定有效的key,系统会默认使用testkey)。

Device/yoyodyne/apps/SpecialApp/Android.mk

[...]

LOCAL_CERTIFICATE := device/yoyodyne/security/special

通过上面的配置,编译系统就会使用device/yoyodyne/security/special.{.509.pem,pk8}来为我们的应用进行签名。编译系统只能是用没有密码保护的私钥。

生成秘钥

我们可以使用openssl工具来生成我们的秘钥(公钥和私钥),openssl工具下载地址:

# generate RSA key

% openssl genrsa -3 -out temp.pem 2048

Generating RSA private key, 2048 bit long modulus

....+++

.....................+++

e is 3 (0x3)

# create a certificate with the public part of the key

% openssl req -new -x509 -key temp.pem -out releasekey.x509.pem \

-days 10000 \

-subj '/C=US/ST=California/L=San Narciso/O=Yoyodyne, Inc./OU=Yoyodyne Mobility/CN=Yoyodyne/emailAddress=yoyodyne@example.com'

# create a PKCS#8-formatted version of the private key

% openssl pkcs8 -in temp.pem -topk8 -outform DER -out releasekey.pk8 -nocrypt

# securely delete the temp.pem file

% shred --remove temp.pem

Openssl的pkcs8命令会生成一个没有密码保护的.pk8文件,这种方式适用于编译系统。如果想生成一个带有密码保护的.pk8文件,我们可以使用-passout stdin参数代替nocrypt参数即可。具体可参考docs/apps/openssl.html#PASS_PHRASE_ARGUMENTS。

签名APP

我们可以使用sign_target_files_apks脚本来对.apk文件进行签名。当我们运行该脚本时,我们需要在命令行中使用”-k src_key=dest_key来指定相应的key。我们也可以使用-d dir来制定一个目录用来替换编译系统所使用的build/target/product/security目录,这就相当于下面这种用法:

build/target/product/security/testkey  = dir/releasekey

build/target/product/security/platform = dir/platform

build/target/product/security/shared   = dir/shared

build/target/product/security/media    = dir/media

例如在tardis项目中,使用了5个具有密码保护的秘钥:4个用来替换build/target/product/security,一个用来替换上面提到的keydevice/yoyodyne/security/special,如下:

vendor/yoyodyne/security/tardis/releasekey.x509.pem

vendor/yoyodyne/security/tardis/releasekey.pk8

vendor/yoyodyne/security/tardis/platform.x509.pem

vendor/yoyodyne/security/tardis/platform.pk8

vendor/yoyodyne/security/tardis/shared.x509.pem

vendor/yoyodyne/security/tardis/shared.pk8

vendor/yoyodyne/security/tardis/media.x509.pem

vendor/yoyodyne/security/tardis/media.pk8

vendor/yoyodyne/security/special.x509.pem

vendor/yoyodyne/security/special.pk8           # NOT password protected

vendor/yoyodyne/security/special-release.x509.pem

vendor/yoyodyne/security/special-release.pk8   # password protected

然后我们可以像下面的例子中描述的一样对所有的应用进行签名:

% ./build/tools/releasetools/sign_target_files_apks \

-d vendor/yoyodyne/security/tardis \

-k vendor/yoyodyne/special=vendor/yoyodyne/special-release \

-o \    # explained in the next section

tardis-target_files.zip signed-tardis-target_files.zip

Enter password for vendor/yoyodyne/security/special-release key>

Enter password for vendor/yoyodyne/security/tardis/media key>

Enter password for vendor/yoyodyne/security/tardis/platform key>

Enter password for vendor/yoyodyne/security/tardis/releasekey key>

Enter password for vendor/yoyodyne/security/tardis/shared key>

signing: Phone.apk (vendor/yoyodyne/security/tardis/platform)

signing: Camera.apk (vendor/yoyodyne/security/tardis/media)

signing: Special.apk (vendor/yoyodyne/security/special-release)

signing: Email.apk (vendor/yoyodyne/security/tardis/releasekey)

[...]

signing: ContactsProvider.apk (vendor/yoyodyne/security/tardis/shared)

signing: Launcher.apk (vendor/yoyodyne/security/tardis/shared)

rewriting SYSTEM/build.prop:

replace:  ro.build.description=tardis-user Eclair ERC91 15449 test-keys

with:  ro.build.description=tardis-user Eclair ERC91 15449 release-keys

replace: ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/test-keys

with: ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/release-keys

signing: framework-res.apk (vendor/yoyodyne/security/tardis/platform)

rewriting RECOVERY/RAMDISK/default.prop:

replace:  ro.build.description=tardis-user Eclair ERC91 15449 test-keys

with:  ro.build.description=tardis-user Eclair ERC91 15449 release-keys

replace: ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/test-keys

with: ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/release-keys

using:

vendor/yoyodyne/security/tardis/releasekey.x509.pem

for OTA package verification

done.

签名OTA包

签名OTA包的流程主要有下面这些:

1.准备好build时所要使用的签名文件

2.对准备创建的ota包进行签名

具体命令如下:

% ./build/tools/releasetools/ota_from_target_files \

-k vendor/yoyodyne/security/tardis/releasekey \

signed-tardis-target_files.zip \

signed-ota_update.zip

unzipping target target-files...

(using device-specific extensions from target_files)

Enter password for vendor/yoyodyne/security/tardis/releasekey key>

done.

签名与侧面安装机制

侧面安装机制并不能绕开安装包签名机制而进行。在安装更新前,recovery会对更新包的签名进行验证,它会验证OTA包签名的私钥是否和recovery分区存放的公钥相符。

对更新包签名的验证通常会有两次,一次是android系统使用Android API中的RecoverySystem.verifyPackage()方法进行验证,一种是recovery系统的验证。RecoverySystem API会检查存储在Android系统中的公钥是否与/system/etc/security/otacerts.zip(默认情况下)。而recovery系统会验证存储在recovery分区中的/res/keys中存储的公钥。

一般情况下,两个地方存储的公钥是相同的。在侧面安装机制中我们可以指定额外的key进行校验,通过下面的配置。

vendor/yoyodyne/tardis/products/tardis.mk

[...]

PRODUCT_EXTRA_RECOVERY_KEYS := vendor/yoyodyne/security/tardis/sideload

原文如下:

Android uses cryptographic signatures in two places:

Each .apk file must be signed. Android's Package Manager uses an .apk signature in two ways:

When an application is replaced, it must be signed by the same key as the old application in order to get access to the old application's data.

If two or more applications want to share a user ID (so they can share data, etc.), they must be signed with the same key.

OTA update packages must be signed with one of the keys expected by the system or the installation process will reject them.

Certificates and keys

Each key comes in two files: the certificate, which has the extension .x509.pem, and the private key, which has the extension .pk8. The private key should be kept secret and is needed to sign a package. The key may itself be protected by a password—a reasonable strategy is to store your keys in source control along with the code—but keep them protected by a password known only to the people who make final releases. The certificate, in contrast, contains only the public half of the key, so it can be distributed widely. It is used to verify a package has been signed by the corresponding private key.

The standard Android build uses four keys, all of which reside in build/target/product/security:

testkey

Generic default key for packages that do not otherwise specify a key.

platform

Test key for packages that are part of the core platform.

shared

Test key for things that are shared in the home/contacts process.

media

Test key for packages that are part of the media/download system.

Individual packages specify one of these keys by setting LOCAL_CERTIFICATE in their Android.mk file. (testkey is used if this variable is not set.) You can also specify an entirely different key by pathname, e.g.:

device/yoyodyne/apps/SpecialApp/Android.mk

[...]LOCAL_CERTIFICATE:=device/yoyodyne/security/special

Now the build uses the device/yoyodyne/security/special.{x509.pem,pk8} key to sign SpecialApp.apk. The build can use only private keys that are notpassword protected.

Generating keys

Android uses 2048-bit RSA keys with public exponent 3. You can generate certificate/private key pairs using the openssl tool from :

# generate RSA key%openssl genrsa-3-outtemp.pem2048GeneratingRSAprivatekey,2048bitlongmodulus....+++.....................+++eis3(0x3)# create a certificate with the public part of the key%openssl req-new-x509-key temp.pem-outreleasekey.x509.pem\-days10000\-subj'/C=US/ST=California/L=San Narciso/O=Yoyodyne, Inc./OU=Yoyodyne Mobility/CN=Yoyodyne/emailAddress=yoyodyne@example.com'# create a PKCS#8-formatted version of the private key%openssl pkcs8-intemp.pem-topk8-outform DER-outreleasekey.pk8-nocrypt# securely delete the temp.pem file%shred--remove temp.pem

The openssl pkcs8 command given above creates a .pk8 file with no password, suitable for use with the build system. To create a .pk8 secured with a password (which you should do for all actual release keys), replace the -nocrypt argument with -passout stdin; then openssl will encrypt the private key with a password read from standard input. No prompt is printed, so if stdin is the terminal the program will appear to hang when it's really just waiting for you to enter a password. Other values can be used for the-passout argument to read the password from other locations; for details, see the openssl documentation.

The temp.pem intermediate file contains the private key without any kind of password protection, so dispose of it thoughtfully when generating release keys. In particular, the GNUshred utility may not be effective on network or journaled filesystems. You can use a working directory located in a RAM disk (such as a tmpfs partition) when generating keys to ensure the intermediates are not inadvertently exposed.

Signing apps for release

The first step in preparing a build for release is to sign all the .apk files in it, replacing the test keys used by the build system. This is done with the sign_target_files_apks script. It takes a target-files .zip as input and produces a new target-files .zip in which all the .apks have been signed with new keys.

When you run this script, you must specify on the command line a replacement key for each key used in the build. The -k src_key=dest_key flag specifies key replacements one at a time. The flag -d dir lets you specify a directory with four keys to replace all those in build/target/product/security; it is equivalent to using -k four times to specify the mappings:

build/target/product/security/testkey=dir/releasekey

build/target/product/security/platform=dir/platform

build/target/product/security/shared=dir/shared

build/target/product/security/media=dir/media

For the hypothetical tardis product, you need five password-protected keys: four to replace the four inbuild/target/product/security, and one to replace the additional keydevice/yoyodyne/security/specialrequired by SpecialApp in the example above. If the keys were in the following files:

vendor/yoyodyne/security/tardis/releasekey.x509.pem

vendor/yoyodyne/security/tardis/releasekey.pk8

vendor/yoyodyne/security/tardis/platform.x509.pem

vendor/yoyodyne/security/tardis/platform.pk8

vendor/yoyodyne/security/tardis/shared.x509.pem

vendor/yoyodyne/security/tardis/shared.pk8

vendor/yoyodyne/security/tardis/media.x509.pem

vendor/yoyodyne/security/tardis/media.pk8

vendor/yoyodyne/security/special.x509.pem

vendor/yoyodyne/security/special.pk8# NOT password protectedvendor/yoyodyne/security/special-release.x509.pem

vendor/yoyodyne/security/special-release.pk8# password protected

Then you would sign all the apps like this:

%./build/tools/releasetools/sign_target_files_apks\-d vendor/yoyodyne/security/tardis\-k vendor/yoyodyne/special=vendor/yoyodyne/special-release\-o\# explained in the next sectiontardis-target_files.zipsigned-tardis-target_files.zipEnterpasswordforvendor/yoyodyne/security/special-release key>Enterpasswordforvendor/yoyodyne/security/tardis/media key>Enterpasswordforvendor/yoyodyne/security/tardis/platform key>Enterpasswordforvendor/yoyodyne/security/tardis/releasekey key>Enterpasswordforvendor/yoyodyne/security/tardis/shared key>signing:Phone.apk(vendor/yoyodyne/security/tardis/platform)signing:Camera.apk(vendor/yoyodyne/security/tardis/media)signing:Special.apk(vendor/yoyodyne/security/special-release)signing:Email.apk(vendor/yoyodyne/security/tardis/releasekey)[...]signing:ContactsProvider.apk(vendor/yoyodyne/security/tardis/shared)signing:Launcher.apk(vendor/yoyodyne/security/tardis/shared)rewriting SYSTEM/build.prop:replace:ro.build.description=tardis-userEclairERC9115449test-keyswith:ro.build.description=tardis-userEclairERC9115449release-keys

replace:ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/test-keyswith:ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/release-keys

signing:framework-res.apk(vendor/yoyodyne/security/tardis/platform)rewriting RECOVERY/RAMDISK/default.prop:replace:ro.build.description=tardis-userEclairERC9115449test-keyswith:ro.build.description=tardis-userEclairERC9115449release-keys

replace:ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/test-keyswith:ro.build.fingerprint=generic/tardis/tardis/tardis:Eclair/ERC91/15449:user/release-keysusing:vendor/yoyodyne/security/tardis/releasekey.x509.pemforOTApackageverificationdone.

After prompting the user for passwords for all password-protected keys, the script re-signs all the .apk files in the input target .zip with the release keys. Before running the command, you can also set the ANDROID_PW_FILE environment variable to a temporary filename; the script then invokes your editor to allow you to enter passwords for all keys (this may be a more convenient way to enter passwords).

sign_target_files_apks also rewrites the build description and fingerprint in the build properties files to reflect the fact that this is a signed build. The -t flag can control what edits are made to the fingerprint. Run the script with -h to see documentation on all flags.

Signing OTA packages

You need the following components to sign OTA packages:

Certificates of the keys you want this build to accept.

Sign the newly-created package with the private key (must correspond to the certificate embedded in the current build of any device to which you want to send this package).

To achieve these components:

The target-files .zip produced by the build sets the OTA certificate to the certificate of the test key. Passing the-o flag to sign_target_files_apks replaces this key with the release key from your build.

To sign the OTA update package, use the -k option when generating it to specify the key. You should giveota_from_target_files the signed version of the target-files .zip as well:

%./build/tools/releasetools/ota_from_target_files\-k vendor/yoyodyne/security/tardis/releasekey\signed-tardis-target_files.zip\signed-ota_update.zipunzipping target target-files...(usingdevice-specific extensionsfromtarget_files)Enterpasswordforvendor/yoyodyne/security/tardis/releasekey key>done.

Signatures and sideloading

Sideloading does not bypass recovery's normal package signature verification mechanism—before installing a package, recovery will verify that it is signed with one of the private keys matching the public keys stored in the recovery partition, just as it would for a package delivered over-the-air.

Update packages received from the main system are typically verified twice: once by the main system, using theRecoverySystem. verifyPackage() method in the android API, and then again by recovery. The RecoverySystem API checks the signature against public keys stored in the main system, in the file/system/etc/security/otacerts.zip (by default). Recovery checks the signature against public keys stored in the recovery partition RAM disk, in the file /res/keys.

Normally these two locations store the same set of keys. By adding a key to just the recovery set of keys, it's possible to sign packages that can be installed only via sideloading (assuming the main system's update download mechanism is correctly doing verification against otacerts.zip). You can specify extra keys to be included only in recovery by setting the PRODUCT_EXTRA_RECOVERY_KEYS variable in your product definition:

vendor/yoyodyne/tardis/products/tardis.mk

[...]PRODUCT_EXTRA_RECOVERY_KEYS:=vendor/yoyodyne/security/tardis/sideload

This includes the public key vendor/yoyodyne/security/tardis/sideload. x509.pem in the recovery keys file so it can install packages signed with it. The extra key is not included in otacerts.zip though, so systems that correctly verify downloaded packages do not invoke recovery for packages signed with this key.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
蛋白质是生物体中普遍存在的一类重要生物大分子,由天然氨基酸通过肽键连接而成。它具有复杂的分子结构和特定的生物功能,是表达生物遗传性状的一类主要物质。 蛋白质的结构可分为四级:一级结构是组成蛋白质多肽链的线性氨基酸序列;二级结构是依靠不同氨基酸之间的C=O和N-H基团间的氢键形成的稳定结构,主要为α螺旋和β折叠;三级结构是通过多个二级结构元素在三维空间的排列所形成的一个蛋白质分子的三维结构;四级结构用于描述由不同多肽链(亚基)间相互作用形成具有功能的蛋白质复合物分子。 蛋白质在生物体内具有多种功能,包括提供能量、维持电解质平衡、信息交流、构成人的身体以及免疫等。例如,蛋白质分解可以为人体提供能量,每克蛋白质能产生4千卡的热能;血液里的蛋白质能帮助维持体内的酸碱平衡和血液的渗透压;蛋白质是组成人体器官组织的重要物质,可以修复受损的器官功能,以及维持细胞的生长和更新;蛋白质也是构成多种生理活性的物质,如免疫球蛋白,具有维持机体正常免疫功能的作用。 蛋白质的合成是指生物按照从脱氧核糖核酸(DNA)转录得到的信使核糖核酸(mRNA)上的遗传信息合成蛋白质的过程。这个过程包括氨基酸的活化、多肽链合成的起始、肽链的延长、肽链的终止和释放以及蛋白质合成后的加工修饰等步骤。 蛋白质降解是指食物中的蛋白质经过蛋白质降解酶的作用降解为多肽和氨基酸然后被人体吸收的过程。这个过程在细胞的生理活动中发挥着极其重要的作用,例如将蛋白质降解后成为小分子的氨基酸,并被循环利用;处理错误折叠的蛋白质以及多余组分,使之降解,以防机体产生错误应答。 总的来说,蛋白质是生物体内不可或缺的一类重要物质,对于维持生物体的正常生理功能具有至关重要的作用。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值