ホーム › Security.Authentication.Identity › ImportSecurityContextW
ImportSecurityContextW
関数エクスポートされたセキュリティコンテキストをインポートする(Unicode版)。
シグネチャ
// SECUR32.dll (Unicode / -W)
#include <windows.h>
HRESULT ImportSecurityContextW(
LPWSTR pszPackage,
SecBuffer* pPackedContext,
void* Token,
SecHandle* phContext
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| pszPackage | LPWSTR | in | コンテキストをインポートするセキュリティパッケージ名を示すワイド文字列。 |
| pPackedContext | SecBuffer* | in | ExportSecurityContextで得たシリアライズ済みコンテキストデータを保持するSecBufferへのポインタ。 |
| Token | void* | in | コンテキストに関連付けるトークンハンドルへのポインタ。 |
| phContext | SecHandle* | out | 出力。インポートされたセキュリティコンテキストハンドルを受け取るポインタ。 |
戻り値の型: HRESULT
各言語での呼び出し定義
// SECUR32.dll (Unicode / -W)
#include <windows.h>
HRESULT ImportSecurityContextW(
LPWSTR pszPackage,
SecBuffer* pPackedContext,
void* Token,
SecHandle* phContext
);[DllImport("SECUR32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern int ImportSecurityContextW(
[MarshalAs(UnmanagedType.LPWStr)] string pszPackage, // LPWSTR
IntPtr pPackedContext, // SecBuffer*
IntPtr Token, // void*
IntPtr phContext // SecHandle* out
);<DllImport("SECUR32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function ImportSecurityContextW(
<MarshalAs(UnmanagedType.LPWStr)> pszPackage As String, ' LPWSTR
pPackedContext As IntPtr, ' SecBuffer*
Token As IntPtr, ' void*
phContext As IntPtr ' SecHandle* out
) As Integer
End Function' pszPackage : LPWSTR
' pPackedContext : SecBuffer*
' Token : void*
' phContext : SecHandle* out
Declare PtrSafe Function ImportSecurityContextW Lib "secur32" ( _
ByVal pszPackage As LongPtr, _
ByVal pPackedContext As LongPtr, _
ByVal Token As LongPtr, _
ByVal phContext As LongPtr) As Long
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
ImportSecurityContextW = ctypes.windll.secur32.ImportSecurityContextW
ImportSecurityContextW.restype = ctypes.c_int
ImportSecurityContextW.argtypes = [
wintypes.LPCWSTR, # pszPackage : LPWSTR
ctypes.c_void_p, # pPackedContext : SecBuffer*
ctypes.POINTER(None), # Token : void*
ctypes.c_void_p, # phContext : SecHandle* out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('SECUR32.dll')
ImportSecurityContextW = Fiddle::Function.new(
lib['ImportSecurityContextW'],
[
Fiddle::TYPE_VOIDP, # pszPackage : LPWSTR
Fiddle::TYPE_VOIDP, # pPackedContext : SecBuffer*
Fiddle::TYPE_VOIDP, # Token : void*
Fiddle::TYPE_VOIDP, # phContext : SecHandle* out
],
Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "secur32")]
extern "system" {
fn ImportSecurityContextW(
pszPackage: *mut u16, // LPWSTR
pPackedContext: *mut SecBuffer, // SecBuffer*
Token: *mut (), // void*
phContext: *mut SecHandle // SecHandle* out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("SECUR32.dll", CharSet = CharSet.Unicode)]
public static extern int ImportSecurityContextW([MarshalAs(UnmanagedType.LPWStr)] string pszPackage, IntPtr pPackedContext, IntPtr Token, IntPtr phContext);
"@
$api = Add-Type -MemberDefinition $sig -Name 'SECUR32_ImportSecurityContextW' -Namespace Win32 -PassThru
# $api::ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext)#uselib "SECUR32.dll"
#func global ImportSecurityContextW "ImportSecurityContextW" wptr, wptr, wptr, wptr
; ImportSecurityContextW pszPackage, varptr(pPackedContext), Token, varptr(phContext) ; 戻り値は stat
; pszPackage : LPWSTR -> "wptr"
; pPackedContext : SecBuffer* -> "wptr"
; Token : void* -> "wptr"
; phContext : SecHandle* out -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "SECUR32.dll" #cfunc global ImportSecurityContextW "ImportSecurityContextW" wstr, var, sptr, var ; res = ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext) ; pszPackage : LPWSTR -> "wstr" ; pPackedContext : SecBuffer* -> "var" ; Token : void* -> "sptr" ; phContext : SecHandle* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "SECUR32.dll" #cfunc global ImportSecurityContextW "ImportSecurityContextW" wstr, sptr, sptr, sptr ; res = ImportSecurityContextW(pszPackage, varptr(pPackedContext), Token, varptr(phContext)) ; pszPackage : LPWSTR -> "wstr" ; pPackedContext : SecBuffer* -> "sptr" ; Token : void* -> "sptr" ; phContext : SecHandle* out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; HRESULT ImportSecurityContextW(LPWSTR pszPackage, SecBuffer* pPackedContext, void* Token, SecHandle* phContext) #uselib "SECUR32.dll" #cfunc global ImportSecurityContextW "ImportSecurityContextW" wstr, var, intptr, var ; res = ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext) ; pszPackage : LPWSTR -> "wstr" ; pPackedContext : SecBuffer* -> "var" ; Token : void* -> "intptr" ; phContext : SecHandle* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; HRESULT ImportSecurityContextW(LPWSTR pszPackage, SecBuffer* pPackedContext, void* Token, SecHandle* phContext) #uselib "SECUR32.dll" #cfunc global ImportSecurityContextW "ImportSecurityContextW" wstr, intptr, intptr, intptr ; res = ImportSecurityContextW(pszPackage, varptr(pPackedContext), Token, varptr(phContext)) ; pszPackage : LPWSTR -> "wstr" ; pPackedContext : SecBuffer* -> "intptr" ; Token : void* -> "intptr" ; phContext : SecHandle* out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
secur32 = windows.NewLazySystemDLL("SECUR32.dll")
procImportSecurityContextW = secur32.NewProc("ImportSecurityContextW")
)
// pszPackage (LPWSTR), pPackedContext (SecBuffer*), Token (void*), phContext (SecHandle* out)
r1, _, err := procImportSecurityContextW.Call(
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(pszPackage))),
uintptr(pPackedContext),
uintptr(Token),
uintptr(phContext),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // HRESULTfunction ImportSecurityContextW(
pszPackage: PWideChar; // LPWSTR
pPackedContext: Pointer; // SecBuffer*
Token: Pointer; // void*
phContext: Pointer // SecHandle* out
): Integer; stdcall;
external 'SECUR32.dll' name 'ImportSecurityContextW';result := DllCall("SECUR32\ImportSecurityContextW"
, "WStr", pszPackage ; LPWSTR
, "Ptr", pPackedContext ; SecBuffer*
, "Ptr", Token ; void*
, "Ptr", phContext ; SecHandle* out
, "Int") ; return: HRESULT●ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext) = DLL("SECUR32.dll", "int ImportSecurityContextW(char*, void*, void*, void*)")
# 呼び出し: ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext)
# pszPackage : LPWSTR -> "char*"
# pPackedContext : SecBuffer* -> "void*"
# Token : void* -> "void*"
# phContext : SecHandle* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。const std = @import("std");
extern "secur32" fn ImportSecurityContextW(
pszPackage: [*c]const u16, // LPWSTR
pPackedContext: [*c]SecBuffer, // SecBuffer*
Token: ?*anyopaque, // void*
phContext: [*c]SecHandle // SecHandle* out
) callconv(std.os.windows.WINAPI) i32;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。proc ImportSecurityContextW(
pszPackage: WideCString, # LPWSTR
pPackedContext: ptr SecBuffer, # SecBuffer*
Token: pointer, # void*
phContext: ptr SecHandle # SecHandle* out
): int32 {.importc: "ImportSecurityContextW", stdcall, dynlib: "SECUR32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。pragma(lib, "secur32");
extern(Windows)
int ImportSecurityContextW(
const(wchar)* pszPackage, // LPWSTR
SecBuffer* pPackedContext, // SecBuffer*
void* Token, // void*
SecHandle* phContext // SecHandle* out
);ccall((:ImportSecurityContextW, "SECUR32.dll"), stdcall, Int32,
(Cwstring, Ptr{SecBuffer}, Ptr{Cvoid}, Ptr{SecHandle}),
pszPackage, pPackedContext, Token, phContext)
# pszPackage : LPWSTR -> Cwstring
# pPackedContext : SecBuffer* -> Ptr{SecBuffer}
# Token : void* -> Ptr{Cvoid}
# phContext : SecHandle* out -> Ptr{SecHandle}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。local ffi = require("ffi")
ffi.cdef[[
int32_t ImportSecurityContextW(
const uint16_t* pszPackage,
void* pPackedContext,
void* Token,
void* phContext);
]]
local secur32 = ffi.load("secur32")
-- secur32.ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext)
-- pszPackage : LPWSTR
-- pPackedContext : SecBuffer*
-- Token : void*
-- phContext : SecHandle* out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
-- Unicode(-W): uint16_t* には UTF-16LE のバッファ(ffi.new("uint16_t[?]", ...))を渡す。const koffi = require('koffi');
const lib = koffi.load('SECUR32.dll');
const ImportSecurityContextW = lib.func('__stdcall', 'ImportSecurityContextW', 'int32_t', ['str16', 'void *', 'void *', 'void *']);
// ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext)
// pszPackage : LPWSTR -> 'str16'
// pPackedContext : SecBuffer* -> 'void *'
// Token : void* -> 'void *'
// phContext : SecHandle* out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("SECUR32.dll", {
ImportSecurityContextW: { parameters: ["buffer", "pointer", "pointer", "pointer"], result: "i32" },
});
// lib.symbols.ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext)
// pszPackage : LPWSTR -> "buffer"
// pPackedContext : SecBuffer* -> "pointer"
// Token : void* -> "pointer"
// phContext : SecHandle* out -> "pointer"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t ImportSecurityContextW(
const uint16_t* pszPackage,
void* pPackedContext,
void* Token,
void* phContext);
C, "SECUR32.dll");
// $ffi->ImportSecurityContextW(pszPackage, pPackedContext, Token, phContext);
// pszPackage : LPWSTR
// pPackedContext : SecBuffer*
// Token : void*
// phContext : SecHandle* out
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface Secur32 extends StdCallLibrary {
Secur32 INSTANCE = Native.load("secur32", Secur32.class, W32APIOptions.UNICODE_OPTIONS);
int ImportSecurityContextW(
WString pszPackage, // LPWSTR
Pointer pPackedContext, // SecBuffer*
Pointer Token, // void*
Pointer phContext // SecHandle* out
);
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。@[Link("secur32")]
lib LibSECUR32
fun ImportSecurityContextW = ImportSecurityContextW(
pszPackage : UInt16*, # LPWSTR
pPackedContext : SecBuffer*, # SecBuffer*
Token : Void*, # void*
phContext : SecHandle* # SecHandle* out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef ImportSecurityContextWNative = Int32 Function(Pointer<Utf16>, Pointer<Void>, Pointer<Void>, Pointer<Void>);
typedef ImportSecurityContextWDart = int Function(Pointer<Utf16>, Pointer<Void>, Pointer<Void>, Pointer<Void>);
final ImportSecurityContextW = DynamicLibrary.open('SECUR32.dll')
.lookupFunction<ImportSecurityContextWNative, ImportSecurityContextWDart>('ImportSecurityContextW');
// pszPackage : LPWSTR -> Pointer<Utf16>
// pPackedContext : SecBuffer* -> Pointer<Void>
// Token : void* -> Pointer<Void>
// phContext : SecHandle* out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function ImportSecurityContextW(
pszPackage: PWideChar; // LPWSTR
pPackedContext: Pointer; // SecBuffer*
Token: Pointer; // void*
phContext: Pointer // SecHandle* out
): Integer; stdcall;
external 'SECUR32.dll' name 'ImportSecurityContextW';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "ImportSecurityContextW"
c_ImportSecurityContextW :: CWString -> Ptr () -> Ptr () -> Ptr () -> IO Int32
-- pszPackage : LPWSTR -> CWString
-- pPackedContext : SecBuffer* -> Ptr ()
-- Token : void* -> Ptr ()
-- phContext : SecHandle* out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let importsecuritycontextw =
foreign "ImportSecurityContextW"
((ptr uint16_t) @-> (ptr void) @-> (ptr void) @-> (ptr void) @-> returning int32_t)
(* pszPackage : LPWSTR -> (ptr uint16_t) *)
(* pPackedContext : SecBuffer* -> (ptr void) *)
(* Token : void* -> (ptr void) *)
(* phContext : SecHandle* out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library secur32 (t "SECUR32.dll"))
(cffi:use-foreign-library secur32)
(cffi:defcfun ("ImportSecurityContextW" import-security-context-w :convention :stdcall) :int32
(psz-package (:string :encoding :utf-16le)) ; LPWSTR
(p-packed-context :pointer) ; SecBuffer*
(token :pointer) ; void*
(ph-context :pointer)) ; SecHandle* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $ImportSecurityContextW = Win32::API::More->new('SECUR32',
'int ImportSecurityContextW(LPCWSTR pszPackage, LPVOID pPackedContext, LPVOID Token, LPVOID phContext)');
# my $ret = $ImportSecurityContextW->Call($pszPackage, $pPackedContext, $Token, $phContext);
# pszPackage : LPWSTR -> LPCWSTR
# pPackedContext : SecBuffer* -> LPVOID
# Token : void* -> LPVOID
# phContext : SecHandle* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。関連項目
文字セット違い
- f ImportSecurityContextA (ANSI版) — エクスポートされたセキュリティコンテキストをインポートする(ANSI版)。