...
1
2
3
4
5
6
7
8
9
10 package mongocrypt
11
12 import (
13 "go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
14 )
15
16
17 type Context struct{}
18
19
20 func (c *Context) State() State {
21 panic(cseNotSupportedMsg)
22 }
23
24
25 func (c *Context) NextOperation() (bsoncore.Document, error) {
26 panic(cseNotSupportedMsg)
27 }
28
29
30 func (c *Context) AddOperationResult(bsoncore.Document) error {
31 panic(cseNotSupportedMsg)
32 }
33
34
35 func (c *Context) CompleteOperation() error {
36 panic(cseNotSupportedMsg)
37 }
38
39
40 func (c *Context) NextKmsContext() *KmsContext {
41 panic(cseNotSupportedMsg)
42 }
43
44
45 func (c *Context) FinishKmsContexts() error {
46 panic(cseNotSupportedMsg)
47 }
48
49
50 func (c *Context) Finish() (bsoncore.Document, error) {
51 panic(cseNotSupportedMsg)
52 }
53
54
55 func (c *Context) Close() {
56 panic(cseNotSupportedMsg)
57 }
58
59
60 func (c *Context) ProvideKmsProviders(bsoncore.Document) error {
61 panic(cseNotSupportedMsg)
62 }
63
View as plain text