我正在尝试通过 Safari 浏览器阅读 iPhone UDID,下面的地址是如何使它变得更清晰的手册。
我想我应该使用某种 PHP,但是他们描述的语言不是 PHP。
这是代码之一。
world.mount_proc("/enroll") { |req, res|
HTTPAuth.basic_auth(req, res, "realm") {|user, password|
user == 'apple' && password == 'apple'
}
res['Content-Type'] = "application/x-apple-aspen-config"
configuration = profile_service_payload(req, "signed-auth-token")
signed_profile = OpenSSL::PKCS7.sign(@@ssl_cert, @@ssl_key,
configuration, [], OpenSSL::PKCS7::BINARY)
res.body = signed_profile.to_der
}
这是什么语言?