클래스: Mongo::Crypt::AutoEncryptionContext Private
- 다음에 정의됨:
- build/ruby-driver-v2.19/lib/mongo/crypt/auto_encryption_context.rb
개요
이 클래스는 비공개 API의 일부입니다. 이 클래스는 향후 제거되거나 변경될 수 있으므로 가능하면 사용하지 않는 것이 좋습니다.
자동 암호화를 위해 초기화된 컨텍스트 객체
인스턴스 속성 요약
컨텍스트에서 상속된 속성
인스턴스 메서드 요약 접기
-
#initialize(mongocrypt, io, db_name, 명령) ⇒ AutoEncryptionContext
생성자
비공개
새 AutoEncryptionContext 객체를 만듭니다.
컨텍스트에서 상속된 메서드
생성자 세부 정보
#initialize(mongocrypt, io, db_name, 명령) ⇒ AutoEncryptionContext
이 메서드는 비공개 API의 일부입니다. 이 방법은 향후 제거되거나 변경될 수 있으므로 가능하면 사용하지 않는 것이 좋습니다.
새 AutoEncryptionContext 객체 만들기
36 37 38 39 40 41 42 43 44 |
# 파일 'build/ruby-driver-v2.19/lib/mongo/crypt/auto_encryption_context.rb', 줄 36 def 초기화(mongocrypt, io, db_name, 명령) super(mongocrypt, io) @db_name = db_name @command = 명령 # 자동 암호화를 위해 ctx 객체를 초기화합니다. 바인딩.ctx_encrypt_init(self, @db_name, @command) end |